Generic function to convert voxel coordinates in the reference space (LPI) to native array space.
Source:R/all_generic.R
, R/neurospace.R
grid_to_grid-methods.Rd
Generic function to convert voxel coordinates in the reference space (LPI) to native array space.
Usage
grid_to_grid(x, vox)
# S4 method for class 'NeuroSpace,matrix'
grid_to_grid(x, vox)
# S4 method for class 'matrix,matrix'
grid_to_grid(x, vox)
Examples
# Create a simple 3D volume in LPI orientation
space <- NeuroSpace(c(10,10,10), c(2,2,2))
# Create a reoriented space in RAS orientation
space_ras <- reorient(space, c("R", "A", "S"))
# Convert coordinates between orientations
voxel_coords <- matrix(rbind(c(1,1,1)))
new_coords <- grid_to_grid(space_ras, voxel_coords)
#> Error in grid_to_grid(space_ras, voxel_coords): ncol(vox) == nd is not TRUE