如何使用opencv c ++增加图像的对比度?

时间:2016-06-06 06:09:38

标签: c++ opencv image-processing

我想用contrast增加下面图片的opencv c++

enter image description here

我使用histogram处理技术,例如直方图均衡(HE),直方图规范等等。但是我没有达到良好的结果,例如吼叫图像:

enter image description here

您建议如何solve这项任务的想法?或者internet上的哪些资源可以找到帮助?

3 个答案:

答案 0 :(得分:4)

我在OpenCV找到了一个有用的主题来改变图像对比度:

#include <cv.h>
#include <highgui.h>
#include <iostream>

using namespace cv;

double alpha; /**< Simple contrast control */
int beta;  /**< Simple brightness control */

int main( int argc, char** argv )
{
 /// Read image given by user
 Mat image = imread( argv[1] );
 Mat new_image = Mat::zeros( image.size(), image.type() );

 /// Initialize values
 std::cout<<" Basic Linear Transforms "<<std::endl;
 std::cout<<"-------------------------"<<std::endl;
 std::cout<<"* Enter the alpha value [1.0-3.0]: ";std::cin>>alpha;
 std::cout<<"* Enter the beta value [0-100]: "; std::cin>>beta;

 /// Do the operation new_image(i,j) = alpha*image(i,j) + beta
 for( int y = 0; y < image.rows; y++ )
    { for( int x = 0; x < image.cols; x++ )
         { for( int c = 0; c < 3; c++ )
              {
      new_image.at<Vec3b>(y,x)[c] =
         saturate_cast<uchar>( alpha*( image.at<Vec3b>(y,x)[c] ) + beta );
             }
    }
    }

 /// Create Windows
 namedWindow("Original Image", 1);
 namedWindow("New Image", 1);

 /// Show stuff
 imshow("Original Image", image);
 imshow("New Image", new_image);

 /// Wait until user press some key
 waitKey();
 return 0;
}

请参阅:Changing the contrast and brightness of an image!

答案 1 :(得分:2)

我不是专家,但你可以尝试通过将灰色合并为深灰色和浅灰色变成白色来减少颜色数量。

例如:

  • 在&lt; 0.0,0.5)范围内找到最不常见的颜色,将其合并为黑色。
  • 在&lt; 0.5,1.0&gt;中找到最不常见的颜色。范围,将其合并为白色。

这会减少颜色的数量,并有助于在更深的颜色之间创造差距也许

答案 2 :(得分:2)

这可能会迟到,但您可以在openCV中尝试createCLAHE()函数。对我来说很好。