Answers for "fslmaths threshold"

-1

fslmaths threshold

#!/bin/sh

# Apply multiple ordered operations: 
# multiplication followed by thresholding 
# and then making the image binary

fslmaths img -mul gm_mask -thr 0.5 -bin img_gm_bin
Posted by: Guest on April-10-2021
-1

fslmaths threshold

#!/bin/sh

# Make a 5 percent mask (default choice for fdt results).
# fdt is FSL's diffusion toolbox.
# Use following percentage (0-100) of ROBUST RANGE of 
# non-zero voxels and threshold below that percentage
# Note that larger values are more stringent

fslmaths img -thrp 5 img_5p
Posted by: Guest on April-10-2021

Code answers related to "fslmaths threshold"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language