Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
Meena
Meena el 15 de Mayo de 2012
I have to find the blank area in the image...ie its value is 0..how to find the area..help me out...

Respuestas (3)

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

Iniciar sesión para comentar.


Walter Roberson
Walter Roberson el 15 de Mayo de 2012
sum(YourImage(:) == 0)
  2 comentarios
Meena
Meena el 15 de Mayo de 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 el 15 de Mayo de 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.

Iniciar sesión para comentar.


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

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by