I would like to know how can I resample, for example 3D MRI Brain scans, from Coronal to Axial image view, without changing target image dimensions.
Image 1 information:
- View: Coronal
- Dimension:
(256, 256, 128)
Image 2 information:
- View: Axial
- Dimension
(512, 512, 200)
I would like to resample Image 1 to Axial view and keep its size (i.e 256x256x128
), meaning, I do not want to use methods such as SimpleITK's resample method in order to resample target to reference image. Reason is because I have large dataset for which I wish to change image view ONLY.
Thanks!