文件名称:MATLAB灰度图像拉伸
文件大小:21KB
文件格式:DOC
更新时间:2013-06-19 17:08:55
图像拉伸
I=imread('chez.jpg'); J=rgb2gray(I); %输入图像转化为灰度图像 %如果输入的图像已经是灰度图像,则不需要此步骤 subplot(2,2,1),imshow(J) title('原始灰度图') subplot(2,2,2),imhist(J) title('原始灰度直方图') K=imadjust(J); %灰度拉伸,使用函数imadjust %K=imadjust(I,[low_in high_in],[low_out high_out]) subplot(2,2,3),imshow(K) title('灰度拉伸效果图') subplot(2,2,4),imhist(K) title('灰度拉伸后图像直方图')