Loading dicoms with different planes #632
-
Hi, I am a newbie in medical imaging so please forgive me before hand for any silly errors. I have a series of dicoms belonging to a brain MRI. The dicoms are not in the same planes. Some are in sagittal while some are in axial. I can load them by specifying the directory in tio.ScalerImage and if the do .plot it shows me the different orientations of a slice. So my questions is does torchio automatically convert all the images into the same plane? If yes how does it select the plane to which it converts and if no is there a way i can achieve this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, @benihime91.
Images are loaded in the original orientation. The Does that make sense? |
Beta Was this translation helpful? Give feedback.
Hi, @benihime91.
Images are loaded in the original orientation. The
ToCanonical
transform is used internally byplot
so the orientation is consistent. It converts the images to the RAS+ orientation before plotting. For more information, you can take a look at its docs.Does that make sense?