opencv-2图像扫描

http://www.opencv.org.cn/opencvdoc/2.3.2/html/doc/tutorials/core/how_to_scan_images/how_to_scan_images.html#howtoscanimagesopencv

cv::LUT(I, lookUpTable, J);

I 是输入参数, J是输出的结果,返回 Mat 类型
使用方法

Mat lookUpTable(1, 256, CV_8U);
uchar* p = lookUpTable.data;
for( int i = 0; i < 256; ++i)
    p[i] = table[i];

t = (double)getTickCount();

for (int i = 0; i < times; ++i)
    LUT(I, lookUpTable, J);// I is input,  J is output

namedWindow("LUT", WINDOW_AUTOSIZE );
imshow("LUT", J);

Mat::begin(); Mat::end();

MatIterator_<Vec3b> it, end;// a pointer it ,end, it changed the I Object
for( it = I.begin<Vec3b>(), end = I.end<Vec3b>(); it != end; ++it)
{
    (*it)[0] = table[(*it)[0]];
    (*it)[1] = table[(*it)[1]];
    (*it)[2] = table[(*it)[2]];
}

p = I.ptr(i);

ptr函数也是模板函数,我们将会用到的ptr函数声明。此函数返回指定的数据行的首地址。

int i,j;
 uchar* p;
 for( i = 0; i < nRows; ++i)
 {
     p = I.ptr<uchar>(i);//ptr函数也是模板函数,我们将会用到的ptr函数声明如代码段5所示。此函数返回指定的数据行的首地址
     for ( j = 0; j < nCols; ++j)
     {
         p[j] = table[p[j]];
     }
 }
 return I;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值