OpenCV-将JPG图像的第二个通道和第三个通道的值设置为最大值

1:代码如下:

#include "stdafx.h"
#include "highgui.h"
#include "cv.h"
#include "iostream"
using namespace std;
void saturate_sv(IplImage* img)
{
    for(int y=0;yheight;y++)
    {
        uchar* ptr=(uchar*)(img->imageData+y*img->widthStep);//指针ptr指向y行的起始位置。uchar为字节类型。
        for(int x=0;xwidth;x++)
        {
            ptr[3*x+1]=255;
            ptr[3*x+2]=255;
        }
    }
}
int main()
{
    IplImage* img=cvLoadImage("C:\\horse.jpg");
    saturate_sv(img);
    cvNamedWindow("Example1",CV_WINDOW_AUTOSIZE);
    cvShowImage("Example1",img);
    cvWaitKey(0);
    cvReleaseImage(&img);
    cvDestroyWindow("Example1");
    return 0;
}
运行结果:

OpenCV-将JPG图像的第二个通道和第三个通道的值设置为最大值_第1张图片

你可能感兴趣的:(OpenCV1.0)