Spatial
Bases: SpatialTransform
Apply resampling, affine motion, and elastic deformation together.
This transform can:
- resample to a new space,
- apply a global affine mapping, and
- apply a dense elastic field,
using a single sampling grid.
The convenience wrappers Resample,
Affine, and
ElasticDeformation expose subsets
of these parameters with sensible defaults.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
TypeTarget
|
Output space. Can be one of:
|
None
|
scales
|
TypeParameterValue
|
Scale factors \((s_1, s_2, s_3)\) for each axis.
If a single value \(x\) is given, all axes use \(x\).
If two values \((a, b)\) are given,
\(s_i \sim \mathcal{U}(a, b)\).
If six values \((a_1, b_1, a_2, b_2, a_3, b_3)\) are given,
\(s_i \sim \mathcal{U}(a_i, b_i)\) independently.
A |
1.0
|
degrees
|
TypeParameterValue
|
Euler rotation angles \((\theta_1, \theta_2, \theta_3)\) in degrees, following the same value/range/distribution convention as scales. |
0.0
|
translation
|
TypeParameterValue
|
Translation \((t_1, t_2, t_3)\) in mm, following
the same convention. The direction depends on the image
orientation: in RAS+, |
0.0
|
isotropic
|
bool
|
If |
False
|
center
|
TypeCenter
|
Pivot point for rotation and scaling.
|
'image'
|
control_points
|
TypeControlPoints | None
|
Optional pre-computed coarse displacement
field with shape |
None
|
num_control_points
|
int | TypeThreeInts
|
Number of control points along each
dimension of the coarse grid. Can be a single |
7
|
max_displacement
|
TypeParameterValue
|
Maximum displacement at each control point, in mm. Follows the same value/range/distribution convention as scales. Zero (default) disables elastic deformation. |
0.0
|
locked_borders
|
int
|
Number of outer control-point layers whose
displacement is forced to zero. |
2
|
affine_first
|
bool
|
If |
True
|
image_interpolation
|
TypeInterpolation
|
|
'linear'
|
label_interpolation
|
TypeInterpolation
|
|
'nearest'
|
antialias
|
bool
|
If |
False
|
default_pad_value
|
TypePadValue | float
|
Fill rule for out-of-bounds intensity
voxels. |
'minimum'
|
default_pad_label
|
int | float
|
Numeric fill value for out-of-bounds label voxels. |
0
|
**kwargs
|
Any
|
See |
{}
|
Note
The randomizable parameters (scales, degrees, translation,
max_displacement, and the spacing form of target) follow a common
value/range/distribution convention: a scalar is deterministic, a
2-tuple \((a, b)\) samples uniformly, a 3-tuple sets per-axis values, a
6-tuple sets per-axis ranges, and a Choice or
torch.distributions.Distribution samples from a discrete set or a
distribution. Structural parameters (center, interpolation, padding)
are not randomizable.
Examples:
>>> import torchio as tio
>>> # Resample to 1 mm isotropic with a random rotation
>>> transform = tio.Spatial(
... target=1,
... degrees=(-10, 10),
... translation=(-5, 5),
... )
>>> # Elastic deformation only
>>> transform = tio.Spatial(
... max_displacement=7.5,
... num_control_points=7,
... )
>>> transformed = transform(subject)
Source code in src/torchio/transforms/spatial/spatial.py
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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 | |
invertible
property
Whether this transform can be inverted.
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
make_params(batch)
Sample random parameters and resolve the output space.
Scales, degrees, translation, and control-point displacements are sampled once and applied identically to every sample and every image in the batch.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
Dict of serializable parameters for |
dict[str, Any]
|
history replay. |
Source code in src/torchio/transforms/spatial/spatial.py
apply_transform(batch, params)
Apply the spatial mapping to every selected image in batch.
The sampling grid is built once from the parameters produced by
make_params and reused for all images and all batch samples.
Source code in src/torchio/transforms/spatial/spatial.py
inverse(params)
Build the inverse transform from recorded parameters.
The affine component is inverted exactly. The elastic component
is approximated by negating the sampled displacement field. The
affine_first flag is flipped so that the inverse operations
run in the opposite order.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
params
|
dict[str, Any]
|
The parameter dict produced by |
required |
Returns:
| Type | Description |
|---|---|
_SpatialInverse
|
A |