Displaying objects found with bwconncomp

6 ビュー (過去 30 日間)
Ivan Aguilar
Ivan Aguilar 2021 年 10 月 11 日
回答済み: DGM 2021 年 10 月 11 日
I have found the amount of objects in my binary image, but I am not sure how to display those objects.
  2 件のコメント
Walter Roberson
Walter Roberson 2021 年 10 月 11 日
If you have (for example) 73 connected components, do you want 73 figures, each of which shows the full-sized image but with everything black except for the connected component which is in its proper relative position ?
Ivan Aguilar
Ivan Aguilar 2021 年 10 月 11 日
Not all components, just two, the two that have the maximum and minimum areas.

サインインしてコメントする。

回答 (1 件)

DGM
DGM 2021 年 10 月 11 日
I never really use bwconncomp, but I guess you could do something like this.
% create test image
A = imread('coins.png') > 80;
A = bwareaopen(A,100);
imshow(A)
% find min/max blob areas
C = bwconncomp(A);
area = cell2mat(cellfun(@numel,C.PixelIdxList,'uniform',false));
[~,mnidx] = min(area);
[~,mxidx] = max(area);
% construct the two images
smallblob = false(size(A));
smallblob(C.PixelIdxList{mnidx}) = true;
largeblob = false(size(A));
largeblob(C.PixelIdxList{mxidx}) = true;
clf; imshow(smallblob)
clf; imshow(largeblob)
If you want a close-cropped image of the blob itself, you can use the "image" property from regionprops()

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by