bwarea & area, white/black ratio

3 views (last 30 days)
dan kin
dan kin on 3 Oct 2012
Commented: Image Analyst on 22 Dec 2017
Hi,
Can someone please explain me what is the difference of bwarea & area.
I have an image which is black and white (after segmentation and fill) & I wish to calculate the area of an object (as I understand done by bwarea) relative to the image area (imageArea = regionprops(image_name, 'Area')), more or less calculating the white/black ratio.
Any other ideas is welcome.
Thanks.

Accepted Answer

Image Analyst
Image Analyst on 3 Oct 2012
Edited: Image Analyst on 3 Oct 2012
They use different algorithms. regionprops gives the number of pixels while bwarea gives some kind of weighted area that depends on the shape of the boundary. This is described in the documentation for bwarea
The white to black ratio is
totalPixels = numel(binaryImages);
numWhitePixels = sum(binaryImage(:));
numBlackPixels = totalPixels - numWhitePixels;
ratio = numWhitePixels / numBlackPixels;

More Answers (1)

dan kin
dan kin on 3 Oct 2012
Hi,
Therefore, bwarea/area is not like white/black ratio. Am I correct?
If this is the case how do I solve it, built in function?
Thx
  3 Comments
shivam sahil
shivam sahil on 21 Dec 2017
Hey! I want to implement the same code for RGB to get pixel count of particular rgb index, please guide me with the code for the same.
Image Analyst
Image Analyst on 22 Dec 2017
See attached demo. Also see the function colorcloud().

Sign in to comment.

Categories

Find more on Visual Exploration 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!