Diff for "FreesurferGoodies/AutomaticLabeling" - MRC CBU Imaging Wiki
location: Diff for "FreesurferGoodies/AutomaticLabeling"
Differences between revisions 3 and 4
Revision 3 as of 2012-03-07 16:14:29
Size: 937
Editor: IanCharest
Comment:
Revision 4 as of 2012-03-07 16:14:47
Size: 931
Editor: IanCharest
Comment:
Deletions are marked like this. Additions are marked like this.
Line 17: Line 17:

Line 30: Line 28:
 echo "======================================================="
 echo "======================================================="

#
# this is an example of an automatic labeling script for the left hemisphere, 
# for the PPG that we have drawn on the study average cortical surface called "myAverage"

## variables

## Freesurfer directory
thePath='/imaging/yourusername/yourproject/subjects'

subjects=(
'CBUXXXXXX' \  
'CBUYYYYYY' \ 
)

## Processing:

nsubjects=${#subjects[*]}
lastsubj=`expr $nsubjects - 1`

for m in `seq 0 ${lastsubj}`
do
        echo "======================================================="
        echo " "
        echo " Computing hPPG cortex surface label left hemisphere"
        echo " "
        echo "======================================================="  

mri_label2label \
 --srcsubject myAverage \
 --srclabel ${thePath}/myAverage/label/lh.hPPG.label \
 --trgsubject ${subjects[m]} \
 --trglabel ${thePath}/${subjects[m]}/label/lh.hPPG.label \
 --hemi lh \
 --regmethod surface

done # subjects lh

CbuImaging: FreesurferGoodies/AutomaticLabeling (last edited 2013-03-07 21:23:08 by localhost)