Horje
fslstats Code Example
fslstats
#!/bin/sh

# Center of gravity: 
# -C : output centre-of-gravity (cog) in voxel coordinates 
# -c : output centre-of-gravity (cog) in mm coordinates 

fslstats mask -C -c 
fslstats
#!/bin/sh

# Peaks: -x : output coordinates of the maximum intensity voxel 

fslstats img -x  
fslstats
#!/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"}'




Shell

Related
how to write red text in readme in github Code Example how to write red text in readme in github Code Example
set java home in ubuntu Code Example set java home in ubuntu Code Example
asdf node fingerprint Code Example asdf node fingerprint Code Example
partially apply stash git Code Example partially apply stash git Code Example
ubuntu /not root-owned 0:1001 Code Example ubuntu /not root-owned 0:1001 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8