Borrar filtros
Borrar filtros

how to calculate the area of certain portion of an image ?

4 visualizaciones (últimos 30 días)
how to calculate the area of certain portion of an image ?

Respuesta aceptada

Image Analyst
Image Analyst el 2 de En. de 2014
Editada: Image Analyst el 2 de En. de 2014
Call regionprops(). See my Image Segmentation Tutorial. It goes over all of that:
For example with a simple thresholding:
binaryImage = grayImage > 90;
measurements = regionprops(binaryImage, 'Area');
allAreas = [measurements.Area];
  2 comentarios
ajay
ajay el 4 de En. de 2014
its ok but i want the area of particular area
Image Analyst
Image Analyst el 4 de En. de 2014
Then just get it. For example to get the area of blob #42, do this
blob42area = allAreas(42);
blob42area = measurements(42).Area; % Same thing as above.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Geometric Transformation and Image Registration en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by