|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
SE=strel('square',2);<BR>%bw4=imerode(bw3,SE);<BR>bw5=imerode(bwycbcr,SE);<BR>figure,<BR>%subplot(2,2,1),imshow(bw4);<BR>subplot(2,2,2),imshow(bw5);<BR>I3=bwfill(bw5,'holes',8);<BR>%imshow(I3);<BR>I2=bwlabel(bw5,8);<BR>eul=bweuler(I3);%计算目标数目<BR>sum=1;<BR>I2=double(I2);<BR>bw5=double(bw5);<BR>bw6=zeros(m,n,eul);<BR>while sum<(eul+1)<BR> for i=1:m<BR> for j=1:n<BR> <FONT color=#f70909> </FONT><STRONG><EM><U><FONT color=#f70909>if I2(i,j)=sum</FONT><BR></U></EM></STRONG> bw6(i,j,sum)=1;<BR> else bw6(i,j,sum)=0;<BR> end<BR> end<BR> end<BR> sum=sum+1;<BR>end<BR>%区域的分离<BR>figure;<BR>for sum=1:eul<BR>subplot(4,4,sum),imshow(bw6(:,:,sum))<BR>end<BR><BR><FONT color=#a0a0a0><FONT color=#f76809>??? Error: File: G:\MATLAB6p1\work\fushi.m Line: 20 Column: 16<BR>Assignment statements cannot produce a result</FONT>.<BR><BR></FONT><BR>求助 那里出错了 出错的用红色标出来了 不知道为什么错了 |
|