Info
此问题已关闭。 请重新打开它进行编辑或回答。
Boundary finding for human object
1 次查看(过去 30 天)
显示 更早的评论
I want to get perfect boundary of human object, I wrote code as:
m=imread('E:\ProjectCode\35.jpg'); H=1-fspecial('gaussian',[3 3],1); sh=imfilter(m,H); figure,imshow(sh); cr = imcrop(sh,[320,100,550,750]); figure,imshow(cr);
shg=rgb2gray(cr); mask = zeros(size(shg)); mask(25:end-25,25:end-25) = 1;
figure, imshow(mask); title('Initial Contour Location'); bw = activecontour(shg,mask,300);
figure, imshow(bw); title('Segmented Image')
I am getting error:?? Undefined function or method 'activecontour' for input arguments of type 'uint8'.
Error in ==> mskbdry at 14 bw = activecontour(shg,mask,300);
0 个评论
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!