基于matlab的图像分割,基于MATLAB的图像分割技术.doc

基于MATLAB的图像分割技术

利用阀值法对图像进行分割:

>> f=imread('peppers.png');

>> f=rgb2gray(f);

>> f=im2double(f);

>> t=0.5*(min(f(:))+max(f(:)));

>> done=false;

>> while ~done

g=f>=t;

tn=0.5*(mean(f(g))+mean(f(~g)));

done=abs(t-tn)<0.1;

t=tn;

end;

>> display('Threshold(t)-Iterative');

Threshold(t)-Iterative

>> t

t =

0.4691

>> r=im2bw(f,t);

>> subplot(2,2,1);imshow(f);

>> subplot(2,2,2);imshow(r);

>> xlabel('迭代法全局阀值分割');

>> th=graythresh(f);

>> th

th =

0.3961

>> s=im2bw(f,th);

>> subplot(2,2,3);imshow(s);

>> xlabel('全局阀值Otsu分割');

>> se=strel('disk',10);

>> ft=imtophat(f,se);

>> thr=graythresh(ft);

>> thr

thr =

0.1098

>> lt=im2bw(ft,thr);

>> subplot(2,2,4);imshow(lt);

>> xlabel('局部阀值分割');

用迭代法对图像进行分割:

>> i=imread('eight.tif');

>> zmax=max(max(i));

>> zmin=min(min(i));

>> tk=(zmax+zmin)/2;

>> bcal=1;

>> isize=size(i);

>> while (bcal)

ifg=0;

ibg=0;

fg=0;

bg=0;

for j=1:isize(1)

for k=1:isize(2)

tmp=i(j,k);

if(tmp>=tk)

ifg=ifg+1;

fg=fg+double(tmp);

else

ibg=ibg+1;

bg=bg+double(tmp);

end;

end;

end;

zo=fg/ifg;

zb=bg/ibg;

tktmp=uint8((zo+zb)/2);

if(tktmp==tk)

bcal=0;

else

tk=tktmp;

end;

end;

>> disp(strcat('迭代后阀值',num2str(tk)));

迭代后阀值165

>> newi=im2bw(i,double(tk)/255);

>> subplot(1,2,1);imshow(i);

>> subplot(1,2,2);imshow(newi);

>> xlabel('迭代法');

用Otsu法进行阀值选择:

>> i=imread('coins.png');

>> subplot(1,2,1);imshow(i);

>> bw=im2bw(i,graythresh(getimage));

>> subplot(1,2,2);imshow(bw);

使用分水岭算法对图像进行分割:

>> c1=-10;

>> c2=-c1;

>> dist=sqrt(2*(2*c1)^2);

>> rad=dist/2*1.4;

>> li=[floor(c1-1.2*rad) ceil(c2+1.2*rad)];

>> [x,y]=meshgrid(li(1):li(2));

>> bw1=sqrt((x-c1).^2+(y-c1).^2)<=rad;

>> bw2=sqrt((x-c2).^2+(y-c2).^2)<=rad;

>> bw=bw1|bw2;

>> subplot(1,3,1);imshow(bw);

>> d=bwdist(~bw);

>> subplot(1,3,2);imshow(d,[]);

>> d=-d;

>> d(~bw)=-In

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值