Find area from binary image.
Mostrar comentarios más antiguos
Hello,
I have this binary image:

I want to encircle it with ellipse or any kind of boundary like below:

After this, I have to fill the area inside the boundary and want to found out the area of this boundary. How to do so?
Thanks.
Respuesta aceptada
Más respuestas (1)
Naga Sai Anupoju
el 24 de Abr. de 2019
1 voto
binaryImage = bwconvhull(binaryImage, 'union');
area = bwarea(binaryImage);
% or for a simple sum of pixels:
area = sum(binaryImage(:));
2 comentarios
Image Analyst
el 27 de Abr. de 2019
??? This answer is identical to the one I posted a year and a half ago.
darova
el 27 de Abr. de 2019
Use special button for code inserting please

Categorías
Más información sobre Convert Image Type en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!