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

OpenCV改变像素颜色

时间:2014-05-03 16:23:11      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:des   blog   class   code   tar   ext   


Mat src=imread("image/color.jpg");
	imshow("a",src);
	int i,j;
	int cPointR,cPointG,cPointB,cPoint;//currentPoint;
	for(i=1;i<src.rows;i++)
		for(j=1;j<src.cols;j++)
		{
			cPointB=src.at<Vec3b>(i,j)[0];
			cPointG=src.at<Vec3b>(i,j)[1];
			cPointR=src.at<Vec3b>(i,j)[2];
			if(cPointB>100&cPointR<100&cPointG<100)
				{
					src.at<Vec3b>(i,j)[0]=0;
					src.at<Vec3b>(i,j)[1]=0;
					src.at<Vec3b>(i,j)[2]=0;
			}
			
		}
	imshow("da",src);


bubuko.com,布布扣

OpenCV改变像素颜色,布布扣,bubuko.com

OpenCV改变像素颜色

标签:des   blog   class   code   tar   ext   

原文地址:http://blog.csdn.net/superdont/article/details/24907711

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