How do I find the area of a binary image?

2 次查看(过去 30 天)
Hi, I need to find the area of this image (around the outer edge). Anyone got an idea? Thanks!!!!!

采纳的回答

Image Analyst
Image Analyst 2015-7-2
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by