bwboundaries - 在MATLAB中 - 预处理

时间:2011-01-16 16:35:22

标签: matlab

我只想跟踪灰色图像中的边界。通过两次获得区域边界我遇到了问题。如何只获得一个边界和边缘像素的中心。 在下面的例子中,我得到了两个区域4,30。但我只需要(4)。为了达到这个目的,需要进行哪种图像预处理。

例如: 请看区域4,30

BW = imread('blobs.png');

[B,L,N,A] = bwboundaries(BW);

figure, imshow(BW); hold on;

colors=['b' 'g' 'r' 'c' 'm' 'y'];


for k=1:length(B)

    boundary = B{k};
    cidx = mod(k,length(colors))+1;

    plot(boundary(:,2), boundary(:,1),...

         colors(cidx),'LineWidth',2);

    %randomize text position for better visibility

    rndRow = ceil(length(boundary)/(mod(rand*k,7)+1));

    col = boundary(rndRow,2); row = boundary(rndRow,1);

    h = text(col+1, row-1, num2str(L(row,col)));

    set(h,'Color',colors(cidx),...

        'FontSize',14,'FontWeight','bold');
end

figure; spy(A);

1 个答案:

答案 0 :(得分:1)

使用bwboundaries - 选项致电noholes。这将删除对象的内部边界。

换句话说:

[B,L,N,A] = bwboundaries(BW,8,'noholes'); %# 8 is for 8-connected pixels