Find contour of 2D object in image in matlab
问题 I have this problem: I have this 2D binary image and I want to extract the contour of the object in this image. This is the image: I want to have the same matrix image but with ones only in the contour of the object and zeros elsewhere. Is there a solution? If so, is there any implementation to do the same thing also for a 3D object? Thank you very much 回答1: If you have the Image Processing Toolbox you can use bwperim BW = imread('http://i.stack.imgur.com/05T06.png'); BW = BW(:,:,1) == 255;