calculating the area inside boundary
5 views (last 30 days)
Show older comments
Hi,
I am trying to find the number of pixels inside the boundary where I have the boundary points coordinates only.
actually I want to calculate the area inside the boundary. I need some help.
2 Comments
David Barry
on 22 Dec 2016
Please remove the code formatting from your question and upload some example data/code.
Accepted Answer
More Answers (1)
Image Analyst
on 22 Dec 2016
If you have a binary image of the perimeter/boundary, you can fill it and call bwarea() or sum()
binaryImage = imfill(boundaryImage, 'holes');
area1 = sum(binaryImage(:))
area2 = bwarea(binaryImage)
0 Comments
See Also
Categories
Find more on Elementary Polygons in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!