Answers for "robustfov"

2

robustfov

#!/bin/sh

# FSL tool to crop the neck (usually for a T1w image):

robustfov -i T1w -r T1w_cropped
Posted by: Guest on April-10-2021
3

robustfov

#!/bin/sh

# fsl_anat will clean up the T1w image & normalize it to standard space
# including bias correction, tissue segmentation & subcortical 
# segmentation (FIRST), though it creates the image in 2mm MNI space.
# Output is generated in a subdirectory named for the image but with the 
# extension .anat (e.g., T1w.anat)

# Do all processing
fsl_anat -i T1w 

# Do not run reorient, segmentation or FIRST subcortical segmentation
fsl_anat -i T1w --noreorient --noseg --nosubcortseg
Posted by: Guest on April-10-2021

Code answers related to "robustfov"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language