首页 > 其他 > 详细

matlab直方图均衡

时间:2016-04-13 11:21:20      阅读:445      评论:0      收藏:0      [点我收藏+]

 

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

 

技术分享

 

matlab直方图均衡

原文:http://www.cnblogs.com/zhaopengcheng/p/5386005.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!