opencv设置图片对比度和亮度

#include
#include

using namespace cv;
using namespace std;

int main(int argc, char** argv) {
	//读入打开图像
	Mat src,dst;
	src = imread("d:/01.jpg");
	if (src.empty()) {
		cout << "加载图像失败" << endl;
	}
	namedWindow("input", WINDOW_AUTOSIZE);
	imshow("input", src);
	//控制对比度和亮度
	double alpha;//亮度
	double beta;   //对比度
	src.convertTo(dst, src.type(), 1, 60);

	imshow("output", dst);
	waitKey(0);
	return 0;
}

你可能感兴趣的:(图像处理入门)