1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
|
#!/bin/bash
VERSION="0.0.0 test"
# trap keyboard interrupt (control-c)
trap control_c SIGINT
ANTS=antsRegistration
#################
#
# default values
#
#################
DIM=3
FIXEDIMAGES=()
MOVINGIMAGES=()
INITIALTRANSFORMS=()
OUTPUTNAME=output
NUMBEROFTHREADS=0
SPLINEDISTANCE=26
LINEARGRADIENTSTEP=0.1
SYNGRADIENTSTEP=0.2
TRANSFORMTYPE='s'
PRECISIONTYPE='d'
NUMBEROFBINS=32
MASKIMAGES=()
USEHISTOGRAMMATCHING=0
COLLAPSEOUTPUTTRANSFORMS=1
RANDOMSEED=0
REPRO=0
if ! command -v ${ANTS} &> /dev/null
then
echo "antsRegistration program can't be found. Please (re)define \$PATH in your environment."
exit
fi
function Usage {
printUsage
echo "For more information on usage and documentation resources, run
`basename $0` -h
"
exit 1
}
function printUsage {
cat <<USAGE
Usage:
`basename $0` -d ImageDimension -f FixedImage -m MovingImage -o OutputPrefix
Compulsory arguments:
-d: ImageDimension: 2 or 3 (for 2 or 3 dimensional registration of single volume, default = ${DIM})
-f: Fixed image(s) or source image(s) or reference image(s)
-m: Moving image(s) or target image(s)
-o: OutputPrefix: A prefix that is prepended to all output files (default = ${OUTPUTNAME})
Optional arguments:
-n: Number of threads (default = ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS if defined, otherwise 1)
-i: initial transform(s) -- order specified on the command line matters. If not specified, a
default initialization is used, based on the transform type.
For "syn only" and "b-spline syn only" transforms, the initial transform is the identity
matrix. For other transforms, it is a translation that aligns the input centers of mass.
-t: transform type (default = '${TRANSFORMTYPE}')
t: translation (1 stage)
r: rigid (1 stage)
a: rigid + affine (2 stages)
s: rigid + affine + deformable syn (3 stages)
sr: rigid + deformable syn (2 stages)
so: deformable syn only (1 stage)
b: rigid + affine + deformable b-spline syn (3 stages)
br: rigid + deformable b-spline syn (2 stages)
bo: deformable b-spline syn only (1 stage)
-r: histogram bins for mutual information in SyN stage (default = ${NUMBEROFBINS})
-s: spline distance for deformable B-spline SyN transform (default = ${SPLINEDISTANCE})
-g: gradient step size for SyN and B-spline SyN (default = ${SYNGRADIENTSTEP})
-x: mask(s) for the fixed image space, or for the fixed and moving image space in the format
"fixedMask,MovingMask". Use -x once to specify mask(s) to be used for all stages or use
-x for each "stage" (cf -t option). If no mask is to be used for a particular stage,
the keyword 'NULL' should be used in place of file names.
-p: precision type (default = '${PRECISIONTYPE}')
f: float
d: double
-j: use histogram matching (default = ${USEHISTOGRAMMATCHING})
0: false
1: true
-y: use 'repro' mode for exact reproducibility of output. Uses GC metric for linear
stages, CC metric for deformable stages, and a fixed random seed (default = ${REPRO}).
0: false
1: true
-z: collapse output transforms (default = ${COLLAPSEOUTPUTTRANSFORMS})
0: false
1: true
-e: Fix random seed to an int value
NB: Multiple image pairs can be specified for registration during the SyN stage.
Specify additional images using the '-m' and '-f' options. Note that image
pair correspondence is given by the order specified on the command line.
Only the first fixed and moving image pair is used for the linear registration
stages.
Example:
`basename $0` -d 3 -f fixedImage.nii.gz -m movingImage.nii.gz -o output
Example with masks:
`basename $0` -d 3 -f fixedImage.nii.gz -m movingImage.nii.gz -x fixedMask.nii.gz -o output
`basename $0` -d 3 -f fixedImage.nii.gz -m movingImage.nii.gz -x fixedMask.nii.gz,movingMask.nii.gz -o output
`basename $0` -d 3 -f fixedImage.nii.gz -m movingImage.nii.gz -t sr -x NULL -x fixedMask.nii.gz -t -o output
USAGE
}
function Help {
printUsage
cat <<HELP
Usage:
`basename $0` -d ImageDimension -f FixedImage -m MovingImage -o OutputPrefix
Example Case:
`basename $0` -d 3 -f fixedImage.nii.gz -m movingImage.nii.gz -o output
--------------------------------------------------------------------------------------
Get the latest ANTs version at:
--------------------------------------------------------------------------------------
https://github.com/ANTsX/ANTs/
--------------------------------------------------------------------------------------
Read the ANTS documentation at:
--------------------------------------------------------------------------------------
http://stnava.github.io/ANTs/
--------------------------------------------------------------------------------------
ANTS was created by:
--------------------------------------------------------------------------------------
Brian B. Avants, Nick Tustison and Gang Song
Penn Image Computing And Science Laboratory
University of Pennsylvania
This script by Nick Tustison
--------------------------------------------------------------------------------------
Relevent references for this script include:
* http://www.ncbi.nlm.nih.gov/pubmed/20851191
* http://www.frontiersin.org/Journal/10.3389/fninf.2013.00039/abstract
--------------------------------------------------------------------------------------
HELP
exit 1
}
function reportMappingParameters {
cat <<REPORTMAPPINGPARAMETERS
--------------------------------------------------------------------------------------
Mapping parameters
--------------------------------------------------------------------------------------
Dimensionality: $DIM
Output name prefix: $OUTPUTNAME
Fixed images: ${FIXEDIMAGES[@]}
Moving images: ${MOVINGIMAGES[@]}
Mask images: ${MASKIMAGES[@]}
Initial transforms: ${INITIALTRANSFORMS[@]}
Number of threads: $NUMBEROFTHREADS
Spline distance: $SPLINEDISTANCE
Linear gradient step: $LINEARGRADIENTSTEP
SyN gradient step: $SYNGRADIENTSTEP
Transform type: $TRANSFORMTYPE
MI histogram bins: $NUMBEROFBINS
Precision: $PRECISIONTYPE
Use histogram matching: $USEHISTOGRAMMATCHING
Repro $REPRO
======================================================================================
REPORTMAPPINGPARAMETERS
}
cleanup()
{
echo "\n*** Performing cleanup, please wait ***\n"
runningANTSpids=$( ps --ppid $$ -o pid= )
for thePID in $runningANTSpids
do
echo "killing: ${thePID}"
kill ${thePID}
done
return $?
}
control_c()
# run if user hits control-c
{
echo -en "\n*** User pressed CTRL + C ***\n"
cleanup
exit $?
echo -en "\n*** Script cancelled by user ***\n"
}
# Provide output for Help
if [[ "$1" == "-h" || $# -eq 0 ]];
then
Help >&2
fi
# reading command line arguments
while getopts "d:e:f:g:h:i:m:j:n:o:p:r:s:t:x:y:z:" OPT
do
case $OPT in
h) #help
Help
exit 0
;;
d) # dimensions
DIM=$OPTARG
;;
e) # seed
RANDOMSEED=$OPTARG
;;
x) # inclusive mask
MASKIMAGES[${#MASKIMAGES[@]}]=$OPTARG
;;
f) # fixed image
FIXEDIMAGES[${#FIXEDIMAGES[@]}]=$OPTARG
;;
g) # SyN gradient step
SYNGRADIENTSTEP=$OPTARG
;;
j) # histogram matching
USEHISTOGRAMMATCHING=$OPTARG
;;
m) # moving image
MOVINGIMAGES[${#MOVINGIMAGES[@]}]=$OPTARG
;;
i) # initial transform
INITIALTRANSFORMS[${#INITIALTRANSFORMS[@]}]=$OPTARG
;;
n) # number of threads
NUMBEROFTHREADS=$OPTARG
;;
o) #output name prefix
OUTPUTNAME=$OPTARG
;;
p) # precision type
PRECISIONTYPE=$OPTARG
;;
r) # cc radius
NUMBEROFBINS=$OPTARG
;;
s) # spline distance
SPLINEDISTANCE=$OPTARG
;;
t) # transform type
TRANSFORMTYPE=$OPTARG
;;
y) # reproducibility
REPRO=$OPTARG
;;
z) # collapse output transforms
COLLAPSEOUTPUTTRANSFORMS=$OPTARG
;;
\?) # getopts issues an error message
Usage
exit 1
;;
esac
done
###############################
#
# Check inputs
#
###############################
if [[ ${#FIXEDIMAGES[@]} -ne ${#MOVINGIMAGES[@]} ]];
then
echo "Number of fixed images is not equal to the number of moving images."
exit 1
fi
for(( i=0; i<${#FIXEDIMAGES[@]}; i++ ))
do
if [[ ! -f "${FIXEDIMAGES[$i]}" ]];
then
echo "Fixed image '${FIXEDIMAGES[$i]}' does not exist. See usage: '$0 -h 1'"
exit 1
fi
if [[ ! -f "${MOVINGIMAGES[$i]}" ]];
then
echo "Moving image '${MOVINGIMAGES[$i]}' does not exist. See usage: '$0 -h 1'"
exit 1
fi
done
##############################
#
# Mask stuff
#
##############################
NUMBEROFMASKSTAGES=${#MASKIMAGES[@]}
MASKCALL=""
if [[ ${#MASKIMAGES[@]} -gt 0 ]];
then
for (( i = 0; i < ${#MASKIMAGES[@]}; i++ ))
do
if [[ ${MASKIMAGES[$i]} =~ "," ]]; then
MASKCALL="${MASKCALL} -x [ ${MASKIMAGES[$i]} ]"
else
MASKCALL="${MASKCALL} -x [ ${MASKIMAGES[$i]}, NULL ]"
fi
done
fi
###############################
#
# Set number of threads
#
###############################
ORIGINALNUMBEROFTHREADS=${ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS}
# NUMBEROFTHREADS is > 0 if the option has been set to a positive value
if [[ $NUMBEROFTHREADS -lt 1 ]]
then
# Number of threads not set on the command line, try ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS
if [[ $ORIGINALNUMBEROFTHREADS -gt 0 ]]
then
NUMBEROFTHREADS=$ORIGINALNUMBEROFTHREADS
else
NUMBEROFTHREADS=1
fi
fi
ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS=$NUMBEROFTHREADS
export ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS
##############################
#
# Print out options
#
##############################
reportMappingParameters
##############################
#
# Infer the number of levels based on
# the size of the input fixed image.
#
##############################
ISLARGEIMAGE=0
SIZESTRING=$( PrintHeader ${FIXEDIMAGES[0]} 2 )
SIZESTRING="${SIZESTRING%\\n}"
SIZE=( `echo $SIZESTRING | tr 'x' ' '` )
for (( i=0; i<${#SIZE[@]}; i++ ))
do
if [[ ${SIZE[$i]} -gt 256 ]];
then
ISLARGEIMAGE=1
break
fi
done
##############################
#
# Construct mapping stages
#
##############################
RIGIDCONVERGENCE="[ 1000x500x250x0,1e-6,10 ]"
RIGIDSHRINKFACTORS="8x4x2x1"
RIGIDSMOOTHINGSIGMAS="3x2x1x0vox"
AFFINECONVERGENCE="[ 1000x500x250x0,1e-6,10 ]"
AFFINESHRINKFACTORS="8x4x2x1"
AFFINESMOOTHINGSIGMAS="3x2x1x0vox"
SYNCONVERGENCE="[ 100x70x50x0,1e-6,10 ]"
SYNSHRINKFACTORS="8x4x2x1"
SYNSMOOTHINGSIGMAS="3x2x1x0vox"
if [[ $ISLARGEIMAGE -eq 1 ]];
then
RIGIDCONVERGENCE="[ 1000x500x250x0,1e-6,10 ]"
RIGIDSHRINKFACTORS="12x8x4x2"
RIGIDSMOOTHINGSIGMAS="4x3x2x1vox"
AFFINECONVERGENCE="[ 1000x500x250x0,1e-6,10 ]"
AFFINESHRINKFACTORS="12x8x4x2"
AFFINESMOOTHINGSIGMAS="4x3x2x1vox"
SYNCONVERGENCE="[ 100x100x70x50x0,1e-6,10 ]"
SYNSHRINKFACTORS="10x6x4x2x1"
SYNSMOOTHINGSIGMAS="5x3x2x1x0vox"
fi
LINEARMETRIC="MI"
LINEARMETRICPARAMETER=32
# Precedence for random seeding
# 1. Command line option -e
# 2. Environment variable ANTS_RANDOM_SEED
# 3. Fixed seed = 1 if run in repro mode
# 4. ITK default (system time)
if [[ -n ${ANTS_RANDOM_SEED} ]] && [[ ${RANDOMSEED} -eq 0 ]];
then
RANDOMSEED=${ANTS_RANDOM_SEED}
fi
if [[ $REPRO -eq 1 ]];
then
LINEARMETRIC="GC"
LINEARMETRICPARAMETER=1
if [[ ${RANDOMSEED} -eq 0 ]];
then
RANDOMSEED=1
fi
fi
INITIALSTAGE="--initial-moving-transform [ ${FIXEDIMAGES[0]},${MOVINGIMAGES[0]},1 ]"
if [[ ${TRANSFORMTYPE} == 'so' ]] || [[ ${TRANSFORMTYPE} == 'bo' ]];
then
# Could just set to an empty string but this is more explicit and also keeps transform
# numbering consistent with other use cases
#
# Default to identity if we are doing "syn only" or "b-spline syn only"
INITIALSTAGE="--initial-moving-transform Identity"
fi
if [[ ${#INITIALTRANSFORMS[@]} -gt 0 ]];
then
INITIALSTAGE=""
for(( i=0; i<${#INITIALTRANSFORMS[@]}; i++ ))
do
INITIALSTAGE="$INITIALSTAGE --initial-moving-transform ${INITIALTRANSFORMS[$i]}"
done
fi
tx=Rigid
if [[ $TRANSFORMTYPE == 't' ]] ; then
tx=Translation
fi
RIGIDSTAGE="--transform ${tx}[ ${LINEARGRADIENTSTEP} ] \
--metric ${LINEARMETRIC}[ ${FIXEDIMAGES[0]},${MOVINGIMAGES[0]},1,${LINEARMETRICPARAMETER},Regular,0.25 ] \
--convergence $RIGIDCONVERGENCE \
--shrink-factors $RIGIDSHRINKFACTORS \
--smoothing-sigmas $RIGIDSMOOTHINGSIGMAS"
AFFINESTAGE="--transform Affine[ ${LINEARGRADIENTSTEP} ] \
--metric ${LINEARMETRIC}[ ${FIXEDIMAGES[0]},${MOVINGIMAGES[0]},1,${LINEARMETRICPARAMETER},Regular,0.25 ] \
--convergence $AFFINECONVERGENCE \
--shrink-factors $AFFINESHRINKFACTORS \
--smoothing-sigmas $AFFINESMOOTHINGSIGMAS"
SYNMETRICS=''
for(( i=0; i<${#FIXEDIMAGES[@]}; i++ ))
do
if [[ REPRO -eq 1 ]]
then
SYNMETRICS="$SYNMETRICS --metric CC[ ${FIXEDIMAGES[$i]},${MOVINGIMAGES[$i]},1,2]"
else
SYNMETRICS="$SYNMETRICS --metric MI[ ${FIXEDIMAGES[$i]},${MOVINGIMAGES[$i]},1,${NUMBEROFBINS}]"
fi
done
SYNSTAGE="${SYNMETRICS} \
--convergence $SYNCONVERGENCE \
--shrink-factors $SYNSHRINKFACTORS \
--smoothing-sigmas $SYNSMOOTHINGSIGMAS"
if [[ $TRANSFORMTYPE == 'sr' ]] || [[ $TRANSFORMTYPE == 'br' ]];
then
SYNCONVERGENCE="[ 50x0,1e-6,10 ]"
SYNSHRINKFACTORS="2x1"
SYNSMOOTHINGSIGMAS="1x0vox"
SYNSTAGE="${SYNMETRICS} \
--convergence $SYNCONVERGENCE \
--shrink-factors $SYNSHRINKFACTORS \
--smoothing-sigmas $SYNSMOOTHINGSIGMAS"
fi
if [[ $TRANSFORMTYPE == 'b' ]] || [[ $TRANSFORMTYPE == 'br' ]] || [[ $TRANSFORMTYPE == 'bo' ]];
then
SYNSTAGE="--transform BSplineSyN[ ${SYNGRADIENTSTEP},${SPLINEDISTANCE},0,3 ] \
$SYNSTAGE"
fi
if [[ $TRANSFORMTYPE == 's' ]] || [[ $TRANSFORMTYPE == 'sr' ]] || [[ $TRANSFORMTYPE == 'so' ]];
then
SYNSTAGE="--transform SyN[ ${SYNGRADIENTSTEP},3,0 ] \
$SYNSTAGE"
fi
NUMBEROFREGISTRATIONSTAGES=0
STAGES=''
case "$TRANSFORMTYPE" in
"r" | "t")
STAGES="$INITIALSTAGE $RIGIDSTAGE"
NUMBEROFREGISTRATIONSTAGES=1
;;
"a")
STAGES="$INITIALSTAGE $RIGIDSTAGE $AFFINESTAGE"
NUMBEROFREGISTRATIONSTAGES=2
;;
"b" | "s")
STAGES="$INITIALSTAGE $RIGIDSTAGE $AFFINESTAGE $SYNSTAGE"
NUMBEROFREGISTRATIONSTAGES=3
;;
"br" | "sr")
STAGES="$INITIALSTAGE $RIGIDSTAGE $SYNSTAGE"
NUMBEROFREGISTRATIONSTAGES=2
;;
"bo" | "so")
STAGES="$INITIALSTAGE $SYNSTAGE"
NUMBEROFREGISTRATIONSTAGES=1
;;
*)
echo "Transform type '$TRANSFORMTYPE' is not an option. See usage: '$0 -h 1'"
exit
;;
esac
if [[ $NUMBEROFMASKSTAGES -ne 0 && $NUMBEROFMASKSTAGES -ne 1 && $NUMBEROFMASKSTAGES -ne $NUMBEROFREGISTRATIONSTAGES ]];
then
echo "The specified number of mask images is not correct. Please see help menu."
exit
fi
PRECISION=''
case "$PRECISIONTYPE" in
"f")
PRECISION="--float 1"
;;
"d")
PRECISION="--float 0"
;;
*)
echo "Precision type '$PRECISIONTYPE' is not an option. See usage: '$0 -h 1'"
exit
;;
esac
RANDOMOPT=""
if [[ ! $RANDOMSEED -eq 0 ]]; then
RANDOMOPT=" --random-seed $RANDOMSEED "
fi
COMMAND="${ANTS} --verbose 1 $RANDOMOPT \
--dimensionality $DIM $PRECISION \
--collapse-output-transforms $COLLAPSEOUTPUTTRANSFORMS \
--output [ $OUTPUTNAME,${OUTPUTNAME}Warped.nii.gz,${OUTPUTNAME}InverseWarped.nii.gz ] \
--interpolation Linear \
--use-histogram-matching ${USEHISTOGRAMMATCHING} \
--winsorize-image-intensities [ 0.005,0.995 ] \
$MASKCALL \
$STAGES"
echo " antsRegistration call:"
echo "--------------------------------------------------------------------------------------"
echo ${COMMAND}
echo "--------------------------------------------------------------------------------------"
$COMMAND
echo " Registration finished. The antsRegistration call was:"
echo "--------------------------------------------------------------------------------------"
echo ${COMMAND}
echo "--------------------------------------------------------------------------------------"
echo "Moving image resampled into fixed space: ${OUTPUTNAME}Warped.nii.gz"
echo "Fixed image resampled into moving space: ${OUTPUTNAME}InverseWarped.nii.gz"
echo "--------------------------------------------------------------------------------------"
###############################
#
# Restore original number of threads
#
###############################
ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS=$ORIGINALNUMBEROFTHREADS
export ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS
|