How to calculate the area of an input image?
Show older comments
I want to calculate the area of the FULL binary image the user inputs is it as simple as heightXwidth if so what function does it
Accepted Answer
More Answers (2)
Image Analyst
on 14 Aug 2017
If you want the number of rows and columns of the binary image, you can do this:
[rows, columns] = size(binaryImage);
If you want the number of pixels (sum total, no matter whether black or white), you can do this:
numPixels = row * columns;
or you can use numel():
numPixels = numel(binaryImage);
If you want the area of just the white/1/true pixels, then you can do
foregroundArea = sum(binaryImage(:)); % Result is in pixels.
backgroundArea = numel(binaryImage) - foregroundArea;
Hopefully one of those examples will give you what you want, because we're not 100% sure what you want.
2 Comments
Warid Islam
on 15 Aug 2019
Hi Image Analyst,
I want to find the area of an RGB image. I was wondering if i need to convert it to grayscale image and then find the area or I can find the area of the RGB image directly? Thank you.
Image Analyst
on 15 Aug 2019
No, you can find the area directly. See my attached spatial calibration demo.
Categories
Find more on Images 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!