Info

This question is closed. Reopen it to edit or answer.

Boundary finding for human object

1 view (last 30 days)
pratibha rane
pratibha rane on 11 May 2013
Closed: MATLAB Answer Bot on 20 Aug 2021
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);

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!