图像处理之对比度拉伸

#include "cv.h"
#include "highgui.h"

using namespace cv;

#define PI 3.1415926
#define RADIAN(angle) ((angle)*PI/180.0)

//对比度扩展
void ContrastStretch(Mat& mat,float stretchRatio,int firstPoint,int secondPoint)
{
	int M=mat.rows;
	int N=mat.cols;

	//计算第一段和第三段的斜率
	float a=(float)((255.0-stretchRatio*(secondPoint-firstPoint))/(255.0-(secondPoint-firstPoint)));

	float g1=a*firstPoint;
	float g2=stretchRatio*(secondPoint-firstPoint)+g1;

	uchar table[256]={0};

	for(int i=0;i<256;i++)
	{
		float g;
		if(i<firstPoint)
			g=(float)(a*i);
		else if(i<secondPoint)
			g=g1+stretchRatio*(i-firstPoint);
		else
			g=g2+a*(i-secondPoint);

		table[i]=(uchar)g;
	}

	for(int i=0;i<M;i++)
		for(int j=0;j<N;j++)
			mat.at<uchar>(i,j)=table[mat.at<uchar>(i,j)];
}


int main()
{
	//读取图像
	Mat image;
	image=imread("test.jpg",CV_LOAD_IMAGE_GRAYSCALE);

	int M=image.rows;
	int N=image.cols;

	ContrastStretch(image,0.5,100,200);
	
	cvNamedWindow("test",CV_WINDOW_AUTOSIZE);
	imshow("test",image);

	waitKey(0);
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值