Effacer les filtres
Effacer les filtres

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

4 vues (au cours des 30 derniers jours)
ajay
ajay le 2 Jan 2014
Commenté : Image Analyst le 4 Jan 2014
how to calculate the area of certain portion of an image ?

Réponse acceptée

Image Analyst
Image Analyst le 2 Jan 2014
Modifié(e) : Image Analyst le 2 Jan 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 commentaires
ajay
ajay le 4 Jan 2014
its ok but i want the area of particular area
Image Analyst
Image Analyst le 4 Jan 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.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Geometric Transformation and Image Registration dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by