Clear Filters
Clear Filters

how to find the area of black region in image....?

2 views (last 30 days)
Meena
Meena on 15 May 2012
I have to find the blank area in the image...ie its value is 0..how to find the area..help me out...

Answers (3)

Andrei Bobrov
Andrei Bobrov on 15 May 2012
s = regionprops(YourImage == 0,'Area','PixelIdxList')
add
I = imread('44298455.png');
i0 = im2bw(I,graythresh(I));
s = regionprops(i0 == 0,'Area','PixelIdxList')
  4 Comments
Meena
Meena on 15 May 2012
http://imageshack.us/photo/my-images/528/44298455.png/
this is image
Walter Roberson
Walter Roberson on 15 May 2012
Is it the portion outside of the oval whose area you are trying to find?

Sign in to comment.


Walter Roberson
Walter Roberson on 15 May 2012
sum(YourImage(:) == 0)
  2 Comments
Meena
Meena on 15 May 2012
not for whole image sir..I have to find the blank region first i.e segment the parts alone and then the area sir
Walter Roberson
Walter Roberson on 15 May 2012
Are there parts of the image which contain blank areas that you do _not_ wish to have included? The code I gave does not give the area of the whole image, only of the blank area.

Sign in to comment.


Image Analyst
Image Analyst on 15 May 2012
Try this:
binaryImage = grayScaleImage == 0;
measurements = regionprops(binaryImage, 'Area');
allAreas = [measurements.Area]
allAreas will be an array of areas. Each physically separated, isolated, black region will have its own area in the array.
  4 Comments
Meena
Meena on 16 May 2012
but not getting the exact area values
Meena
Meena on 16 May 2012
pls tell me is there any otherway to find the no of blank or the area of blank spaces

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!