필터 지우기
필터 지우기

How can I determine the number of closed regions in an edge image?

조회 수: 8 (최근 30일)
coolguynp
coolguynp 2015년 4월 19일
댓글: Image Analyst 2015년 4월 20일
Given an edge image as shown in the figure, how can I find the number of closed regions (4 in the figure) in it?

채택된 답변

Image Analyst
Image Analyst 2015년 4월 19일
Trivial - just 3, or even 2, lines of code. Just try this:
% Invert the image to form black curves on a white background
binaryImage = ~binaryImage;
% Get rid of huge background that touches the border
binaryImage = imclearborder(binaryImage);
% Count the objects remaining
[~, numberOfClosedRegions] = bwlabel(binaryImage);
  댓글 수: 4
coolguynp
coolguynp 2015년 4월 20일
Thank you for the detailed answer. The small blob at the bottom was missing because of small opening. bwmorph with 'bridge' after obtaining the binary image solved that as well.
binaryImage = bwmorph(binaryImage, 'bridge');
Image Analyst
Image Analyst 2015년 4월 20일
The small blob at the bottom was SUPPOSED to be eliminated because it is not a closed curve.

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by