Skip to content
Snippets Groups Projects
Commit fe3cd408 authored by Matthew Webster's avatar Matthew Webster
Browse files

Pythonised version

parent 1e511a81
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/usr/bin/env python
# Copyright (C) 2012 University of Oxford # fsladd - add ( or average! ) a list of images
# # Stephen Smith, Saad Jbabdi and Matthew Webster FMRIB Image Analysis Group
# SHCOPYRIGHT # Copyright (C) 2015 University of Oxford
# SHBASECOPYRIGHT
import sys
import os
import subprocess
import argparse
if [ "$1" == "" ];then def main(output,files,scale,mean):
echo "" if scale:
echo "Usage: fsladd <output> [-m] <listOfVolumes> " newMean=1000
echo "" scales = [ newMean/float(subprocess.check_output([os.path.join(os.environ["FSLDIR"],"bin","fslstats"),inputFile,"-M"])) for inputFile in files ]
echo "-m : calculates the mean instead of sum" files = [ [files[i],"-mul",str(scales[i]/scales[i+1])] if i < len(scales)-1 else [files[i],"-mul",str(scales[i])] for i in range(0,len(scales)) ]
echo "" else:
exit 1 files = [ [fileName] for fileName in files ]
fi command = [os.path.join(os.environ["FSLDIR"],"bin","fslmaths")]+files[0]
for index in range(1,len(files)):
o=$1 command+=["-add"]+files[index]
shift; if mean:
command+=["-div",str(len(files))]
m="" command.append(output)
if [ "$1" == "-m" ];then print command
shift; status=subprocess.call(command)
m=" -div $#"
fi
cmd="${FSLDIR}/bin/fslmaths $1"
shift;
for i in $@;do
cmd=" $cmd -add $i"
done
cmd=" $cmd $m $o"
$cmd
if __name__ == "__main__":
parser = argparse.ArgumentParser(add_help=False,usage='%(prog)s <output> [-m] [-s] <listOfVolumes>')
parser.add_argument('-m',dest='mean',help='calculate mean instead of sum',action='store_true',default = False)
parser.add_argument('-s',dest='scale',help='scale each input image mean to 1000 before processing',action='store_true',default = False)
parser.add_argument('files',nargs='+',help=argparse.SUPPRESS)
if len(sys.argv) < 3:
parser.print_help()
sys.exit(1)
args=parser.parse_args(sys.argv[2:])
main(sys.argv[1],args.files,args.scale,args.mean)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment