Clear Filters
Clear Filters

How to calculate the area of brain using MATLAB

1 view (last 30 days)
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?

Answers (1)

Matt J
Matt J on 6 Nov 2016
Edited: Matt J on 6 Nov 2016
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,

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!