Find area from binary image.
Show older comments
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.
Accepted Answer
More Answers (1)
Naga Sai Anupoju
on 24 Apr 2019
1 vote
binaryImage = bwconvhull(binaryImage, 'union');
area = bwarea(binaryImage);
% or for a simple sum of pixels:
area = sum(binaryImage(:));
2 Comments
Image Analyst
on 27 Apr 2019
??? This answer is identical to the one I posted a year and a half ago.
darova
on 27 Apr 2019
Use special button for code inserting please

Categories
Find more on Convert Image Type in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!