MATLAB: How to analyse processed MRI imaging and fibers

Image Processing Toolboxmri imaging processing

i'm a Radiologist .. I have MRI imaging to process.and I have to do these things using Matlab
B. Read your data before analysis
a) Read FA map
MATLAB - analyze75read (Image Preprocessing Toolbox)
Output = analyze75read(image.img);
b) Read fiber info
MATLAB – read_fiber
brein.korea.ac.kr/courses/biomedical_imaging/2018_1/assignment2/read_fiber.m
Output = read_fiber(fiber.dat);
c) Read atlas info
MATLAB – load_nii (Tools for NIfTI and ANALYZE image)
Python – nib.load (NiBabel)

Best Answer

a and b seem straightforward:
Output1 = analyze75read(image.img);
Output2 = read_fiber(fiber.dat);
I don't know where you get load_nii() - it's not part of MATLAB. Perhaps you need to search "Tools for NIfTI and ANALYZE image" - the function might be in that tool set. Not sure where you get those.
Related Question