MATLAB: How to read, display and process .mha files in MATLAB

.mha

I am having BRATS database of brain MR images with tumor in .mha format. How to read, display and process .mha files in MATLAB?

Best Answer

function data = mhd_read_image(filename)
info = mha_read_header(filename);
data = mha_read_volume(info);
Related Question