2013/1/7

完成的任务量

1.深入理解计算机系统

判断补码相加是否溢出:分为两种情况,正溢出和负溢出

int tadd_ok(int x ,int y){
    int sum = x + y;
    int negOverFlow = x<0 && y<0 && sum>0;
    int posOverFlow = x>0&& y>0 && sum<0;
    return !negOverFlow&&!posOverFlow;                
}

2.旋转补偿角度,选取中心点后,将图像划分为4个区域,分别补偿。

明天任务量

1.深入理解计算机系统第二章浮点数部分和部分习题

2.完成稳像程序的图像部分,为视频处理做准备。

}

 

 

明天的任务量

posted @ 2013-01-07 21:08  dutlei  阅读(212)  评论(0编辑  收藏  举报