Layer Area in the image

1 vue (au cours des 30 derniers jours)
mustafa alnasser
mustafa alnasser le 1 Mar 2014
Commenté : Image Analyst le 3 Mar 2014
Dear All;
I have an image of three layer, I need to calculate the area of each of them , I use the regionprop to do that but I got only numbers but I need to know that for Layer 1 has x area and layer 2 has y area , so, how can I know that ?

Réponses (1)

Image Analyst
Image Analyst le 1 Mar 2014
I'm not sure what you're asking. You said you used regionprops to get the areas. You just need to do this one layer (image) at a time and sum up the areas
thisLayersMeasurements = regionprops(labeledImage, 'Area');
allAreas = [thisLayersMeasurements.Area] % There might be multiple regions.
sumOfAllAreas = sum(allAreas);
repeat the above for each layer image.
  2 commentaires
mustafa alnasser
mustafa alnasser le 3 Mar 2014
Thank you man for your answer My question is not to find the area of each region but to give label to each one , either by text or color . For example, I have three layers on top of each other and i want to give blue color to the top one ,red for the middle and green for the bottom one , how can i do that
Image Analyst
Image Analyst le 3 Mar 2014
Use the function label2rgb().

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by