Apply a linear RAS transform to resample a 3D volume
Source: R/imaging-registration-native.R
apply_transform3d.RdWarps a moving volume onto a reference grid given a 4x4
RAS-to-RAS transform (such as the transform returned
by register_volume3d). The transform maps reference (fixed)
RAS coordinates to moving RAS coordinates.
Arguments
- volume
moving 3D array to resample
- vox2ras
the moving volume's voxel-to-
RAS4x4 transform- transform
4x4
RAS-to-RAStransform (fixed to moving)- reference_dim
output dimension (the fixed grid); defaults to
dim(volume)- reference_vox2ras
the fixed grid's voxel-to-
RAStransform; defaults tovox2ras- interpolation
'trilinear'(default),'nearest', or'bspline'(cubicCatmull-Rom)- na_fill
value for out-of-bounds voxels; default
0
Value
The resampled volume on the reference grid, with a 'vox2ras'
attribute equal to reference_vox2ras.