__________ a=histeq(I,256) ____ %直方图均衡化,灰度级为256
subplot(2,2,2),imshow(a) %输出均衡化后图像 title('均衡化后图像') %在均衡化后图像中加标题
__________ subplot(2,2,4),imhist(a) ____ %输出均衡化后直方图
title('均衡化后图像直方图') %在均衡化后直方图上加标题
分别对图像‘pout.tif’和‘tire.tif’进行直方图均衡化处理,比较处理前后图像及直方图分布的变化。
I=imread('pout.tif'); imshow(I)
figure,imhist(I) J=histeq(I); figure,imhist(J) figure,imshow(J)
I=imread('tire.tif'); imshow(I)
figure,imhist(I) J=histeq(I);
figure,imshow(J) figure,imhist(J)