How do I find the area of a binary image?

Hi, I need to find the area of this image (around the outer edge). Anyone got an idea? Thanks!!!!!

 Respuesta aceptada

Image Analyst
Image Analyst el 2 de Jul. de 2015
To find the actual boundary, invert, fill, and sum
binaryImage = imfill(~binaryImage, 'holes');
numPixels = sum(binaryImage(:));
If you want a smooth boundary, you need to use activecontour(), like in my attached demo.

Más respuestas (0)

Preguntada:

el 2 de Jul. de 2015

Respondida:

el 2 de Jul. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by