matlab进阶摸索篇——彩色图直方图均衡化

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

               

首先转为灰度图,然后均衡化,详见代码

sourcePic=imread('D:\Images\pic_loc\1870358810205041517.jpg');[m,n,o]=size(sourcePic);grayPic=rgb2gray(sourcePic);figure,imshow(sourcePic);figure,imshow(grayPic);gp=zeros(1,256); %计算各灰度出现的概率for i=1:256 gp(i)=length(find(grayPic==(i-1)))/(m*n);endfigure,bar(0:255,gp);title('原图像直方图');xlabel('灰度值');ylabel('出现概率');newGp=zeros(1,256); %计算新的各灰度出现的概率S1=zeros(1,256);S2=zeros(1,256);tmp=0;for i=1:256 tmp=tmp+gp(i); S1(i)=tmp; S2(i)=round(S1(i)*256);endfor i=1:256 newGp(i)=sum(gp(find(S2==i)));endfigure,bar(0:255,newGp);title('均衡化后的直方图');xlabel('灰度值');ylabel('出现概率');newGrayPic=grayPic; %填充各像素点新的灰度值for i=1:256 newGrayPic(find(grayPic==(i-1)))=S2(i);endfigure,imshow(newGrayPic);


当然,有时候我们不禁想得到一幅图的灰度直方图均衡化结果,而是希望得到彩色图均衡化结果,那么就需要先将彩色图分为RGB分量,代码如下:


sourcePic=imread('D:\Images\pic_loc\1870358810205041517.jpg');[m,n,o]=size(sourcePic);figure,imshow(sourcePic,[]);%grayPic=rgb2gray(sourcePic);grayPic=sourcePic(:,:,1);gp=zeros(1,256); %计算各灰度出现的概率for i=1:256 gp(i)=length(find(grayPic==(i-1)))/(m*n);endnewGp=zeros(1,256); %计算新的各灰度出现的概率S1=zeros(1,256);S2=zeros(1,256);tmp=0;for i=1:256 tmp=tmp+gp(i); S1(i)=tmp; S2(i)=round(S1(i)*256);endfor i=1:256 newGp(i)=sum(gp(find(S2==i)));endnewGrayPic=grayPic; %填充各像素点新的灰度值for i=1:256 newGrayPic(find(grayPic==(i-1)))=S2(i);endnr=newGrayPic;grayPic=sourcePic(:,:,2);gp=zeros(1,256); %计算各灰度出现的概率for i=1:256 gp(i)=length(find(grayPic==(i-1)))/(m*n);endnewGp=zeros(1,256); %计算新的各灰度出现的概率S1=zeros(1,256);S2=zeros(1,256);tmp=0;for i=1:256 tmp=tmp+gp(i); S1(i)=tmp; S2(i)=round(S1(i)*256);endfor i=1:256 newGp(i)=sum(gp(find(S2==i)));endnewGrayPic=grayPic; %填充各像素点新的灰度值for i=1:256 newGrayPic(find(grayPic==(i-1)))=S2(i);endng=newGrayPic;grayPic=sourcePic(:,:,3);gp=zeros(1,256); %计算各灰度出现的概率for i=1:256 gp(i)=length(find(grayPic==(i-1)))/(m*n);endnewGp=zeros(1,256); %计算新的各灰度出现的概率S1=zeros(1,256);S2=zeros(1,256);tmp=0;for i=1:256 tmp=tmp+gp(i); S1(i)=tmp; S2(i)=round(S1(i)*256);endfor i=1:256 newGp(i)=sum(gp(find(S2==i)));endnewGrayPic=grayPic; %填充各像素点新的灰度值for i=1:256 newGrayPic(find(grayPic==(i-1)))=S2(i);endnb=newGrayPic;res=cat(3,nr,ng,nb);figure,imshow(res,[]);


 
 
            

给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow
这里写图片描述
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值