필터 지우기
필터 지우기

How to calculate the area of brain using MATLAB

조회 수: 1 (최근 30일)
Suba Suba
Suba Suba 2016년 11월 6일
댓글: Suba Suba 2016년 11월 6일
I have attached my .JPEG file below, I need to calculate the area of that brain alone,not the area that contain letters.How can I achieve it. I don't want to binarize the image and find its area.Is there any other way to find the area of brain?
  댓글 수: 3
Suba Suba
Suba Suba 2016년 11월 6일
Thank you

댓글을 달려면 로그인하십시오.

답변 (1개)

Matt J
Matt J 2016년 11월 6일
편집: Matt J 2016년 11월 6일
If you binarize the image with some appropriate threshold, I would think it's just a matter of finding the region of maximum area,
stats = regionprops(yourImage>somethreshold,'Area')
[~,idx]=max([stats.Area]);
brainArea=stats(idx).Area,

카테고리

Help CenterFile Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by