matlab直方图均衡
1 clear all; 2 i=imread('cameraman.tif'); 3 figure; 4 subplot(2,2,1); 5 imshow(i); 6 title('原始图像'); 7 subplot(2,2,2); 8 imhist(i); 9 title('直方图'); 10 11 hi =histeq(i); 12 subplot(2,2,3); 13 imshow(hi); 14 title('均衡过后图像'); 15 subplot(2,2,4); 16 imhist(hi); 17 title('均衡过后直方图');
学习过程中,难免出错。如果您在阅读过程中遇到不太明白,或者有疑问。欢迎指正...联系邮箱crazyCodeLove@163.com
如果觉得有用,想赞助一下请移步赞助页面:赞助一下