Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to find the volume of a region in a segmented image?

조회 수: 1 (최근 30일)
ma_thal
ma_thal 2021년 5월 15일
마감: Matt J 2021년 5월 15일
Hi, I segmented an MR image and have 3 regions, backgound with pixel value of 0, gray matter with pixel value of 1 and white matter of pixel value of 2. How can I get the volume of each of those regions?

답변 (1개)

Matt J
Matt J 2021년 5월 15일
stats = regionprops3(segmentationMap,'Volume')
  댓글 수: 3
Image Analyst
Image Analyst 2021년 5월 15일
Why not? Why prevent yourself from using a built-in function? Your post is not labeled as homework, which is usually the reason, so why not use it?
I was going to assume that you had 3 binary images, one for each segmentation that you want to do (background, gray matter, white matter) and that you could simply use nnz() on each binary image, but unfortunately you probably won't let yourself use nnz() either.
To find out what you can use, read this:
ma_thal
ma_thal 2021년 5월 15일
Yes! it is homework, I'm new here so I didn't know I had to put that, I'm sorry..
Thank you for you idea. And I will check that link!

Community Treasure Hunt

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

Start Hunting!

Translated by