How to find out single object in binary image?. & how to calculate area of that single object?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello,sir/madam i trying to find out the area of single object in binary image and such object is my target to calculate area. so please reply me. thank you
0 comentarios
Respuestas (1)
David Sanchez
el 13 de Dic. de 2013
Use regionprops :
cc = your binary image;
my_area = regionprops(cc, 'Area'); % this will return the areas of the objects within your image
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!