一个在opencv中增强图像对比度的小程序

在matlab中,有函数imagesc可以增强double类型的图像的对比度,用于显示

本函数功能类似于imagesc

可以将32F或64F类型的单通道图像映射为0-255的灰度图象

参数src为一个32F或64F单通道图像的指针,参数dst为一个类型为8u单通道图像的指针

 

void imageAdjust(IplImage* src,IplImage* dst){

     double minValue;

double maxValue;

cvMinMaxLoc(src,&minValue,&maxValue);

if(maxValue-minValue<1e-10){

   printf("Adjustment can not be done because all the values of the image are almost the same./n");

cvZero(dst);

return;

}

cvConvertScale(src,dst,255.0/(maxValue-minValue),-255.0*minValue/(maxValue-minValue));

}

你可能感兴趣的:(image,matlab,DST)