Extract objects from binary image
Mostrar comentarios más antiguos
Hey,
I am looking for a way to extrac objects from an binary image.
For example, Given the following image, I am looking for a way to get the matrix of the area of each of those 3 big objects.

Thank you in advance.
Respuestas (1)
Something like this perhaps,
BW=bwareafilt(~yourBinarizedImage,3);
regions=regionprops(BW,'Image');
3 comentarios
Walter Roberson
el 18 de Abr. de 2021
In particular, regionprops and ask for 'Area'
Walter Roberson
el 18 de Abr. de 2021
I would interpret it as a single matrix containing all three areas.
Areas = [regions.Area];
Categorías
Más información sobre Image Arithmetic en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!