clear all;
i=imread('cameraman.tif');
figure;
subplot(2,2,1);
imshow(i);
title('原始图像');
subplot(2,2,2);
imhist(i);
title('直方图'); hi =histeq(i);
subplot(2,2,3);
imshow(hi);
title('均衡过后图像');
subplot(2,2,4);
imhist(hi);
title('均衡过后直方图');

matlab直方图均衡-LMLPHP

05-08 14:57