how to calculate the area of certain portion of an image ?
1 view (last 30 days)
Show older comments
how to calculate the area of certain portion of an image ?
0 Comments
Accepted Answer
Image Analyst
on 2 Jan 2014
Edited: Image Analyst
on 2 Jan 2014
Call regionprops(). See my Image Segmentation Tutorial. It goes over all of that:
For example with a simple thresholding:
binaryImage = grayImage > 90;
measurements = regionprops(binaryImage, 'Area');
allAreas = [measurements.Area];
2 Comments
Image Analyst
on 4 Jan 2014
Then just get it. For example to get the area of blob #42, do this
blob42area = allAreas(42);
blob42area = measurements(42).Area; % Same thing as above.
More Answers (0)
See Also
Categories
Find more on Image Segmentation and Analysis 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!