标签:style blog http ar color 使用 sp for on
数字图像处理作业的输入图像全部都是灰度图像,所以汇总一下自己遇到的问题答案。
附上官方教程推荐的高效遍历方法uchar指针代码
1 Mat& ScanImageAndReduceC(Mat& I, const uchar* const table) 2 { 3 // accept only char type matrices 4 CV_Assert(I.depth() != sizeof(uchar)); 5 6 int channels = I.channels(); 7 8 int nRows = I.rows * channels; 9 int nCols = I.cols; 10 11 if (I.isContinuous()) 12 { 13 nCols *= nRows; 14 nRows = 1; 15 } 16 17 int i,j; 18 uchar* p; 19 for( i = 0; i < nRows; ++i) 20 { 21 p = I.ptr<uchar>(i); 22 for ( j = 0; j < nCols; ++j) 23 { 24 p[j] = table[p[j]]; 25 } 26 } 27 return I; 28 }
下面放几个觉得对学习OCV基础很好的博客,其实上面的要点都是从这些来的,感谢他们的分享!
http://blog.csdn.net/xiaowei_cqu/article/details/7771760
http://www.cnblogs.com/ronny/p/opencv_road_2.html
标签:style blog http ar color 使用 sp for on
原文地址:http://www.cnblogs.com/muluo0107/p/4129594.html