File: optimalsmooth.sh

package info (click to toggle)
ants 2.5.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 11,672 kB
  • sloc: cpp: 85,685; sh: 15,850; perl: 863; xml: 115; python: 111; makefile: 68
file content (16 lines) | stat: -rwxr-xr-x 314 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

echo  " sh $0 outputprefix "
if [ $# -lt 1 ] ; then
exit
fi

SUB=$1
TH=${SUB}thicknorm.nii.gz
JA=${SUB}logjacobian.nii
MK=${SUB}mask.nii.gz
OUTT=${SUB}smooththick.nii.gz
OUTJ=${SUB}smoothjac.nii.gz
REPS=5
  SurfaceBasedSmoothing $TH 1.5 $MK $OUTT $REPS
  SurfaceBasedSmoothing $JA 1.5 $MK $OUTJ $REPS