Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
Meena
Meena il 15 Mag 2012
I have to find the blank area in the image...ie its value is 0..how to find the area..help me out...

Risposte (3)

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

Accedi per commentare.


Walter Roberson
Walter Roberson il 15 Mag 2012
sum(YourImage(:) == 0)
  2 Commenti
Meena
Meena il 15 Mag 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 il 15 Mag 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.

Accedi per commentare.


Image Analyst
Image Analyst il 15 Mag 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 Commenti
Meena
Meena il 16 Mag 2012
but not getting the exact area values
Meena
Meena il 16 Mag 2012
pls tell me is there any otherway to find the no of blank or the area of blank spaces

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by