连接断开的轮廓边缘

时间:2011-07-10 15:33:24

标签: matlab graphics image-processing computer-vision

我有一个未连接的轮廓边缘,我需要一种方法使其连接,以便我可以顺时针排序它的像素...任何有关如何这样做的帮助。 这是断开边框的图像,但边缘的切口不明显,需要放大才能看到它们。

Silhouette Image

1 个答案:

答案 0 :(得分:14)

尝试以下方法:

I = double(imread('http://i.stack.imgur.com/2MYgL.png'));
BW = im2bw(I,0.5);                   %# binarize image
BW = imdilate(BW,strel('square',3)); %# dilation
BW = imfill(BW,'holes');             %# fill inside silhouette
BW = imerode(BW,strel('square',3));  %# erode
BW = bwperim(BW,8);                  %# get perimeter
imshow(BW)

enter image description here