Layer Area in the image

1 回表示 (過去 30 日間)
mustafa alnasser
mustafa alnasser 2014 年 3 月 1 日
コメント済み: Image Analyst 2014 年 3 月 3 日
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 ?

回答 (1 件)

Image Analyst
Image Analyst 2014 年 3 月 1 日
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 件のコメント
mustafa alnasser
mustafa alnasser 2014 年 3 月 3 日
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 2014 年 3 月 3 日
Use the function label2rgb().

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by