码迷,mamicode.com
首页 > 其他好文 > 详细

直方图均衡化

时间:2015-04-28 18:33:01      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:matlab

%直方图均衡化 MATLAB 程序实现如下:
I=imread('e:\role0\003i.bmp'); 
I=rgb2gray(I);
figure; 
subplot(2,2,1); 
imshow(I); 
subplot(2,2,2);
imhist(I); 
I1=histeq(I); 
figure; 
subplot(2,2,1); 
imshow(I1);
subplot(2,2,2); 
imhist(I1);

直方图均衡化

标签:matlab

原文地址:http://blog.csdn.net/whk100312/article/details/45338409

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!