图像分割matlab阈值自动计算,图像分割的阈值算法matlab实现.doc

41528d3028836879cd698677c3999917.gif图像分割的阈值算法matlab实现.doc

图像分割的阈值算法matlab实现【OTSU,1DEntropy,2DEntropy】今天看了几篇论文,实现了一下,没有验证各算法的有效性也没有进行定量比较OTSU%OTSU%2006/9/4clc;clear;%I=imread( E:\test\chinalake.bmp , bmp );I=imread( E:\test\lena.png , png );I=double(I);I=Medianfilter(I);%medianfilterh_Tmean=mean(mean(I));[height,width]=size(I);Size=height*width;%thesizeoftheimageh_T=sum(sum(I));%thetotalgrayvalueoftheimageG_min=min(min(I));%themingrayvalueoftheimageG_max=max(max(I));%themaxgrayvalueoftheiamgeI_seg=zeros(height,width);%thearraytostorethesegmentedimagethresh=0;%thethresholdnum1=0;num2=0;%countthenumofthepixelfromthediffrientclassP1=0;P2=0;%theprobabilityofthedifferentclassh_T1=0;h_T2=0;%thetotalgrayvalueofdifferentclassh_T1mean=0;h_T2mean=0;%themeanvalueoftheclassmax=0;forthresh=G_min:G_max%findthebestthresholdh_T1=0;h_T2=0;num1=0;forh=1:heightforw=1:widthifI(h,w)maxmax=D1;T_best=thresh;%Trecordthebestthreshendend%%%%%%%Segtheimage%%%%%%%%%fori=1:heightforj=1:widthifI(i,j)>T_bestI_seg(i,j)=255;endendendT_bestfigure;imshow(uint8(I_seg));figure;imhist(uint8(I));***************************************************一维直方图熵阈值算法%1Dentropythresholding%Pun提出,Kapur对其阈值和熵进行改进%两类:object和background%P1=sum(pi)i:1~T%P2=sum(pi)i:T+1~255%HO=ln(P1)+H1/P1;%HB=ln(P2)+H2/P2;%H1=-sum(pi*ln(pi));i:1~T%H2=-sum(pi*ln(pi));i:T+1~255%H=HO+HB;%T_best=argmax(H);clc;clear;%I=imread( E:\test\chinalake.bmp , bmp );I=imread( E:\test\lena.png , png );I=double(I);I=Medianfilter(I);%medianfilter[height,width]=size(I);Size=height*width;%thesizeoftheimageh_T=sum(sum(I));%thetotalgrayvalueoftheimageG_min=min(min(I));%themingrayvalueoftheimageG_max=max(max(I));%themaxgrayvalueoftheiamgeI_seg=zeros(height,width);%thearraytostorethesegmentedimageI_hist=zeros(1,256);%thearraytostorethehistoftheimagethresh=0;%thethresholdnum1=0;num2=0;%countthenumofthepixelfromthediffrientclassP1=0;P2=0;%theprobabilityofthedifferentclassh_T1=0;h_T2=0;%thetotalgrayvalueofdifferentclassmax=0;H1=0;H2=0;%themiddlevarH_object=0;H_background=0;H_total=0;%thetotalentropyT_best=0;%thebestthresh%%%%%计算直方图%%%%%%fori=1:height%calculatethehistoftheimageforj=1:widthI_hist(I(i,j)+1)=I_hist(I(i,j)+1)+1;endendforthresh=G_min:G_max%findthebestthresholdH1=0;h_T1=0;H2=0;forh=1:heightforw=1:widthifI(h,w)maxmax=H_total;T_best=thresh;endend%%%%%%%Segtheimage%%%%%%%%%fori=1:heightforj=1:widthifI(i,j)>T_bestI_seg(i,j)=255;endendendT_bestfigure;imshow(uint8(I_seg));figure;imhist(uint8(I));**********************************************************2维直方图熵阈值算法%二维直方图熵阈值法%参考基于2D熵阈值的铁谱磨粒图像分割方法,傅建平%廖振强,张培林,汪传忠,(南京理工大学机械学院,南京),%(军械工程学院,石家庄)%pixelgray%^%|%|==>2Dhistgram%|%|%|__________________________>localgrayclc;clear;%I=imread( E:\test\chinalake.bmp , bmp );I=imread( E:\test\lena.png , png );I=double(I);[height,width]=size(I);Size=height*width;%thesizeoftheimageG_min=min(min(I));%themingrayvalueoftheimageG_max=max(max(I));%themaxgrayvalueoftheiamgeI_2Dhist=zeros(G_max+1,G_max+1);%thearraytostorethe2DhistoftheimageI_mean=zeros(height,width);%themeanvalueofthelocal

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值