彩色图像直方图均衡化:
%彩色图像直方图均衡化matlab clear I=imread('12.bmp');%读取图像 R=I(:,:,1); G=I(:,:,2); B=I(:,:,3); J(:,:,1)=histeq(R); J(:,:,2)=histeq(G); J(:,:,3)=histeq(B); figure;%显示原图像和均衡化后的图像 subplot(1,2,1),imshow(I);title('原图像'); subplot(1,2,2),imshow(J);title('均衡化之后图像'); figure;%显示原图像和均衡化后图像的直方图 subplot(2,3,1),imhist(R,64);ylabel('原图像R通道直方图'); subplot(2,3,2),imhist(G,64);ylabel('原图像G通道直方图'); subplot(2,3,3),imhist(B,64);ylabel('原图像B通道直方图'); subplot(2,3,4),imhist(J(:,:,1),64);ylabel('均衡化之后图像R通道直方图'); subplot(2,3,5),imhist(J(:,:,2),64);ylabel('均衡化之后图像G通道直方图'); subplot(2,3,6),imhist(J(:,:,3),64);ylabel('均衡化之后图像B通道直方图');
灰度图像直方图均衡化:
%灰度图直方图均衡化matlab clear I=imread('31.bmp');%读取灰度图像 J=histeq(I);%直方图均衡化 figure;%显示原图像和均衡化后的图像 subplot(1,2,1),imshow(I);title('原图像'); subplot(1,2,2),imshow(J);title('均衡化之后图像'); figure;%显示原图像和均衡化后图像的直方图 subplot(2,1,1),imhist(I,64);title('原图像直方图'); subplot(2,1,2),imhist(J,64);title('均衡化之后图像直方图');
彩色图像直方图均衡化效果图:
灰度图像直方图均衡化效果图: