The laterality issue: different software will interpret fMRI images in different way (mainly refer to right/left side display), so will the functions offered by them. NIFTI toolbox provides series explanations on the issued. Here are some notes.


Laterality case in common softwares

SPM5/laterANALYZERASLASNIfTILAS
SPM5/laterANALYZELASRASNIfTIRAS
MRIcroANALYZERASRASANALYZERAS
MRIcroANALYZELASLASANALYZELAS
MRIcronANALYZERASRASNIfTIRAS
MRIcronANALYZELASLASNIfTILAS
load/save/view_niiANALYZERASRASNIfTIRAS
load/save/view_niiANALYZELASLASNIfTILAS
load/save_untouch_niiANALYZERASN/AANALYZERAS
load/save_untouch_niiANALYZELASN/AANALYZELAS

Interpret laterality using load_nii command

  1. NIfTI toolbox never saves any file with sform = qform = 0. When you see that sform = qform = 0 in the structure that is loaded by "load_nii.m", it only means that the affine matrix has been properly interpreted. As a matter of fact, the file written by "save_nii.m" is always a NIfTI file with sform = 1 and qform = 0, and you can always check the real header information stored in any NIfTI (ANALYZE) file by using "load_untouch_nii.m". In other words, you can never save your data to a NIfTI file with sform = qform = 0.
    If you want to save your data to an ANALYZE format, you can do so by using "save_untouch_nii.m". In that case, there is neither sform nor qform in the
    ANALYZE header.
  2. Many other software assume that ANALYZE files are in neurological convention (RAS). Because there is really no orientation information stored in ANALYZE header, the laterality of an ANALYZE file is all based on the assumption.
04-27 00:54