필터 지우기
필터 지우기

Label connected components in binary image using non-standard pixel connectivity

조회 수: 1 (최근 30일)
Assume I have the following binary image
BW = [ 1 0 0 0;
0 0 0 0;
0 1 1 0;
0 0 0 0;
0 0 0 0
0 1 1 0 ];
I would like to find all connected components in this binary image, where 2 points are connected if they are at most 2 rows and at most 1 column away from each other and both have the value 1. The function bwlabeln seems to be useful for this task, but it does not provide me the flexibility of specifying the desired pixel connectivity. My problem statement seems to translate to a 5-by-3 pixel connectivity of all ones. Is there any function that can help me here?
The desired labeling of connected components is
L = [ 1 0 0 0;
0 0 0 0;
0 1 1 0;
0 0 0 0;
0 0 0 0
0 2 2 0 ];
and the number of connected components is 2.

채택된 답변

Sean de Wolski
Sean de Wolski 2020년 3월 23일
편집: Sean de Wolski 2020년 3월 23일
Call imdilate with a custom structuring element of your size. This will then expand the regions so they overlap and bwlabel can then do its thing.
After, do a logical index to remove the added values from imdilate.
Id = imdilate(I, custom_element)
L = bwlabel(Id);
L(~I) = 0;
  댓글 수: 2
Jori Selen
Jori Selen 2020년 3월 23일
편집: Jori Selen 2020년 3월 23일
Thanks! I cannot seem to get this to work for the MWE I provided above. It is not clear to me what custom_element should be so that I get the 5-by-3 pixel connectivity.
Sean de Wolski
Sean de Wolski 2020년 3월 23일
Hi,
This should work but I may be off by 1 (i.e. test it under other conditions!). More on structuring elements here https://www.mathworks.com/help/images/structuring-elements.html:
BW = [ 1 0 0 0;
0 0 0 0;
0 1 1 0;
0 0 0 0;
0 0 0 0
0 1 1 0 ];
Id = imdilate(BW, ones(2,1));
L = bwlabel(Id);
L(~BW) = 0

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by