I want to get chain code but it is showing error. Please help me.
3 次查看(过去 30 天)
显示 更早的评论
I=imread('C:\Users\abcd\Desktop\mini.jpg');
bw=im2bw(I)
bw=~bw;
BW2 = bwperim(bw,8);
image=BW2;
[x y]=find(image==1);
b=[x y];
[cc]=chaincode(b)
This is showing eror: ??? Undefined function or method 'chaincode' for input arguments of type. Please tell me where I am making mistake. 'double'.
0 个评论
回答(1 个)
Image Analyst
2015-2-6
Why do you think there is a function called chaincode()? I think you want bwboundaries() instead.
10 个评论
Image Analyst
2015-2-8
If you tell it to not find holes, it will find only the outer boundaries, not the boundaries of the holes.