Filter löschen
Filter löschen

watershed followed by regionprops

1 Ansicht (letzte 30 Tage)
Zohra Megnounif
Zohra Megnounif am 25 Mär. 2022
Kommentiert: Zohra Megnounif am 29 Mär. 2022
hello, I have an image with circular objects and other ellipticals, knowing that the circulars touch the ellipticals, so I used the watershed to separate the objects so I have several gray levels, and now I want to use the regionprops to keep only the circular form. how can i do it please? I don't want to go through the multithreshold.
Thank you

Akzeptierte Antwort

Image Analyst
Image Analyst am 25 Mär. 2022
Something like
props = regionprops(labeledImage, 'Circularity');
% Keep only blobs with circularity > 0.6
keepers = find([props.Circularity] > 0.6);
% Get the new binary image.
binaryImage = ismember(labeledImage, keepers);
labeledImage comes from watershed().

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by