You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just wondering about the benefits of lossless scaling.
I use dcm2niix -l n to match intensity values produced by converting DICOM to NRRD in 3DSlicer (I believe that 3D Slicer uses this module in some instances / but in other instances it uses DWIConvert ... I don't really understand).
Have there been any publications that use the scaling?
I think for our studies it would slow our analysis as I need to directly modify the array for certain parts of the analysis pipeline but I'm open to your opinion.
Kind Regards,
Kyle
The text was updated successfully, but these errors were encountered:
Many MRI scanners use 12-bit ADC, so for magnitude images the raw voxel values are in the range of 0..4095. dcm2niix will convert these as the NIfTI INT16 datatype (with a range of -32768..32767). Most neuroimaging preprocessing tools default to saving data to the input datatype, so the INT16 datatype is preserved for all steps of processing (slice timing, motion correction, spatial smoothing, detrending, normalization). By using the full range of the data type, we attempt to preserve the precision of these steps which are calculated as floating point with fractional results.
Consider an input NIfTI image with the following parameters:
Hi Chris,
Just wondering about the benefits of lossless scaling.
I use dcm2niix -l n to match intensity values produced by converting DICOM to NRRD in 3DSlicer (I believe that 3D Slicer uses this module in some instances / but in other instances it uses DWIConvert ... I don't really understand).
Have there been any publications that use the scaling?
I think for our studies it would slow our analysis as I need to directly modify the array for certain parts of the analysis pipeline but I'm open to your opinion.
Kind Regards,
Kyle
The text was updated successfully, but these errors were encountered: