bwborder - Border detection for binary images
Extracts contours from binary images, by detecting which pixel valued 1 has at least one neighbor valued 0. The second argument is 4 or 8 depending if the detection is to be made in 4- or 8-neighborhood. The final border will be 8-connected if 4-neighbors are used, and 4-connected if 8-neighbors are used.
initial_dir = PWD;
chdir (SIPDIR + 'images');
Img = imread('bin2.pbm')
xbasc()
imshow(Img,2);
B = bwborder(Img)
imshow(B,2);
chdir(initial_dir);
http://siptoolbox.sourceforge.net