Effacer les filtres
Effacer les filtres

How to calculate the area of brain using MATLAB

1 vue (au cours des 30 derniers jours)
Suba Suba
Suba Suba le 6 Nov 2016
Commenté : Suba Suba le 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?
  3 commentaires
Suba Suba
Suba Suba le 6 Nov 2016
Thank you

Connectez-vous pour commenter.

Réponses (1)

Matt J
Matt J le 6 Nov 2016
Modifié(e) : Matt J le 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,
  1 commentaire
Suba Suba
Suba Suba le 6 Nov 2016
Got the idea, thank you for the reply

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Processing and Computer Vision dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by