with this matlab code i have read a brain tumor image with .mha format and show it in a figure, but i want to store it in a variable or save it so i can work on it as an image and apply image processing techniques on it such as applying filters, can any one help me ??

this is the code for reading and showing the .mha (brain) image

-----------------------------------------------------------------------------------------------------

info = mha_read_header('VSD.Brain.XX.O.MR_T2.54515.mha');

figure;

V = mha_read_volume(info);

imshow(squeeze(V1(:,:,round(end/2))),[]);

More Mohamed Wageh's questions See All
Similar questions and discussions