powered by
Resample an Image to Specific Voxel Size
fsl_resample( file, voxel_size, outfile = NULL, retimg = TRUE, reorient = FALSE, opts = NULL, verbose = TRUE )
If retimg then object of class nifti. Otherwise, the output file.
retimg
Input file to resample
Voxel size (in mm). This should be a scalar number.
(character) output filename
(logical) return image of class nifti
(logical) If retimg, should file be reoriented when read in? Passed to readnii.
readnii
options to pass to flirt
flirt
(logical) print out command before running
if (have_fsl()) { file = mni_fname(mm = 1, brain = TRUE) est2 = fsl_resample(file = file, voxel_size = 1, retimg = FALSE) pixdim(est2) est = fsl_resample(file = file, voxel_size = 1) pixdim(est) }
Run the code above in your browser using DataLab