Azzera filtri
Azzera filtri

How to calculate the area of brain using MATLAB

1 visualizzazione (ultimi 30 giorni)
Suba Suba
Suba Suba il 6 Nov 2016
Commentato: Suba Suba il 6 Nov 2016
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?

Risposte (1)

Matt J
Matt J il 6 Nov 2016
Modificato: Matt J il 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,

Categorie

Scopri di più su Image Processing and Computer Vision in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by