Description Usage Arguments Value Author(s) Examples
Perform motion-correction on the given image
1 | motion_correction( img )
|
img |
Input image. Can be a filename of an 3D image or an 'antsImage' of pixeltype 'float' and dimension '3'. |
Success – a list of named elements containing motion-corrected image
(name 'moco_img' type 'antsImage'), motion-correction parameters (name
'moco_params' type 'antsMatrix'), average image
(name 'moco_avg_img' type 'antsImage').
Failure – NULL
Shrinidhi KL
1 2 3 4 5 6 7 8 9 10 | ## Not run:
moco_results <- motion_correction( "input_img.nii" )
# motion-corrected image
moco_results$moco_img
# motion-correction parameters
moco_results$moco_params
# average image
moco_results$moco_avg_img
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.