Question about phase images. #65
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, The values in the nifti images are the same as stored in the DICOM images. Quite often scaling is applied on the phase data so that the data is stored in integer type in the DICOM (the scaling factor could be different for different vendors and scanners). Therefore, rescaling is usually required to bring the the phase data to the wrapped radian range (which will be taking care of in the SEPIA processing pipeline). For the data acquired with GE scanners, it is quite common to see the discontinuity between the odd and even number slices after the dcm2niix conversion. If you have the real and imaginary part of the image, you can correct the interslice phase polarity difference using the utility function in SEPIA: If you only have the phase images, you can try the following script: |
Beta Was this translation helpful? Give feedback.
Hi,
The values in the nifti images are the same as stored in the DICOM images. Quite often scaling is applied on the phase data so that the data is stored in integer type in the DICOM (the scaling factor could be different for different vendors and scanners). Therefore, rescaling is usually required to bring the the phase data to the wrapped radian range (which will be taking care of in the SEPIA processing pipeline).
For the data acquired with GE scanners, it is quite common to see the discontinuity between the odd and even number slices after the dcm2niix conversion. If you have the real and imaginary part of the image, you can correct the interslice phase polarity difference using the …