Answers for "fslstats volume"

0

fslstats volume

#!/bin/sh

# Get the voxel count for a mask
fslstats mask -V | awk '{printf $1 "\n"}'

# Get the volume in cubic mm for a mask
fslstats mask -V | awk '{printf $2 "\n"}'
Posted by: Guest on April-10-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language