我们常常需要对图像中的像素做出取舍与决策,直接剔除一些低于或者高于一定值的像素(例如只想要图中红色的东西,这就派上用场了)
d s t ( x , y ) = { m a x v a l , i f s r c ( x , y ) > t h r e s h 0 , o t h e r w i s e s dst(x,y)=\begin{cases} maxval, & if \ src(x,y)>thresh \\ 0, & otherwises \end{cases} dst(x,y)={maxval,0,if src(x,y)>threshotherwises
d s t ( x , y ) = { t h r e s h o l d , i f s r c ( x , y ) > t h r e s h s r c ( x , y ) , o t h e r w i s e s dst(x,y)=\begin{cases} threshold, & if \ src(x,y)>thresh \\ src(x,y), & otherwises \\ \end{cases} dst(x,y)={threshold,src(x,y),if src(x,y)>threshotherwises
这个模型中颜色的参数分别是:色调(H),饱和度(S),明度(V)。
其中H:(360度)
从红色开始按逆时针方向计算,红色为0°,绿色为120°,蓝色为240°。它们的补色是:黄色为60°,青色为180°,品红为300°;
#include
#include
#include
#include
#include
using namespace std;
using namespace cv;
int main(int argc, char *argv[])
{
//加载图像
Mat srcImage=imread("/home/liuxin/桌面/opencv/buff.png");
imshow("原始图",srcImage);
//变换成hsv通道
Mat hsvImage;
cvtColor(srcImage,hsvImage,COLOR_BGR2HSV);
//分割split 与合并merge
vector<Mat> hsvsplit;//hsv的分离通道
split(hsvImage,hsvsplit);
imshow("明度",hsvsplit[0]);// v 明度
imshow("饱和度",hsvsplit[1]);// s 饱和度
imshow("色调",hsvsplit[2]);// h 色调
while(1)
{
int key=cvWaitKey(10);
if (key==27)
{
break;
}
}
return(0);
}
#include
#include
#include
#include
#include
using namespace std;
using namespace cv;
int main(int argc, char *argv[])
{
//加载图像
Mat srcImage=imread("/home/liuxin/桌面/opencv/buff.png");
imshow("原始图",srcImage);
//变换成hsv通道
Mat hsvImage;
cvtColor(srcImage,hsvImage,COLOR_BGR2HSV);
imshow("未增强色调的hsv图片",hsvImage);
//分割split 与合并merge
vector<Mat> hsvsplit;//hsv的分离通道
split(hsvImage,hsvsplit);
equalizeHist(hsvsplit[2],hsvsplit[2]);//直方图均衡化,增强对比度,hsvsplit[2]为返回的h
merge(hsvsplit,hsvImage);//在色调调节后,重新合并
imshow("增强色调对比度后的hsv图片",hsvImage);
Mat thresHold;
threshold(hsvsplit[2],thresHold,240,245,THRESH_BINARY);
imshow("二值化后图片",thresHold);
while(1)
{
int key=cvWaitKey(10);
if (key==27)
{
break;
}
}
return(0);
}