Reorient
Bases: SpatialTransform
Reorder voxel axes to match a target orientation.
The voxels are permuted and/or flipped so that the image axes align with the specified anatomical directions. The affine matrix is updated to preserve the physical positions of the voxels.
Common orientation codes:
'RAS': Left→\ R\ ight, Posterior→\ A\ nterior, Inferior→\ S\ uperior.'LPS': Right→\ L\ eft, Anterior→\ P\ osterior, Inferior→\ S\ uperior.
See the NiBabel docs on image orientation
<https://nipy.org/nibabel/image_orientation.html>__ for details.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
orientation
|
str
|
Target three-letter orientation code. Must contain one letter for each axis pair: R/L, A/P, S/I. |
'RAS'
|
**kwargs
|
Any
|
See |
{}
|
Examples:
>>> import torchio as tio
>>> transform = tio.Reorient() # default: RAS
>>> transform = tio.Reorient(orientation='LPS')
>>> transform = tio.Reorient(orientation='SPL')
Source code in src/torchio/transforms/spatial/reorient.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | |
supports_per_instance_params
property
Whether this transform can sample parameters per batch element.
Defaults to False. Transforms that implement per-instance
parameter sampling override this to return True. When False,
the transform always uses batch-shared parameters regardless of
the per_instance flag, preserving the legacy behavior.
supports_per_instance_p
property
Whether this transform can gate each batch element independently.
Defaults to False. Shape-preserving transforms that implement
per-element probability override this to return True.
Shape-changing transforms must leave it False because masked
and unmasked elements would have incompatible shapes.
forward(data)
Apply the transform.
The output type always matches the input type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Any
|
Input data to transform. |
required |
Source code in src/torchio/transforms/transform.py
to_hydra()
Export as a Hydra-compatible config dict.
Returns a dict with _target_ set to the fully qualified
class name and only non-default field values included.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
Dict suitable for |
Source code in src/torchio/transforms/transform.py
inverse(params)
Inverse reorients back to the original orientation.