Borrar filtros
Borrar filtros

How to calculate the area of brain using MATLAB

1 visualización (últimos 30 días)
Suba Suba
Suba Suba el 6 de Nov. de 2016
Comentada: Suba Suba el 6 de Nov. de 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 comentarios
Suba Suba
Suba Suba el 6 de Nov. de 2016
Thank you

Iniciar sesión para comentar.

Respuestas (1)

Matt J
Matt J el 6 de Nov. de 2016
Editada: Matt J el 6 de Nov. de 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,

Categorías

Más información sobre Image Processing and Computer Vision en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by