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('均衡过后直方图');