码迷,mamicode.com
首页 > 其他好文 > 详细

opencv二值图反色处理

时间:2014-05-15 20:02:48      阅读:980      评论:0      收藏:0      [点我收藏+]

标签:blog   class   code   c   tar   int   

反色处理指的是:如果原先图像的背景是白色,而目标是黑色的话;经过反色处理后,背景变为白色,目标变为黑色。

在opencv中,对于二值图的反色处理有两种方法:

之前处理好的二值图的定义为:Mat  binaryImg;

1、直接使用opencv中的函数:

//! inverts each bit of array (dst = ~src)
CV_EXPORTS_W void bitwise_not(InputArray src, OutputArray dst,
                              InputArray mask=noArray());

2、自己编写代码:

计算原理是  255-bin(x,y),代码如下:

		Mat newBImg(binaryImg.rows, binaryImg.cols, binaryImg.type());
		uchar* newBImgData = newBImg.data;
		uchar* binaryData = binaryImg.data;
		int step = binaryImg.step/sizeof(uchar);
		for (int i=0; i<binaryImg.rows; i++)
		{
			for (int j=0;j<binaryImg.cols; j++)
			{
				newBImgData[i*step+j] = 255- binaryData[i*step+j];
			}
		}
		binaryImg = newBImg.clone();


opencv二值图反色处理,布布扣,bubuko.com

opencv二值图反色处理

标签:blog   class   code   c   tar   int   

原文地址:http://blog.csdn.net/wsbeibei/article/details/25895101

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!