20 from __future__
import print_function
22 import SimpleITK
as sitk
27 def command_iteration(method) :
28 print(
"{0:3} = {1:10.5f} : {2}".format(method.GetOptimizerIteration(),
29 method.GetMetricValue(),
30 method.GetOptimizerPosition()))
32 if len ( sys.argv ) < 4:
33 print(
"Usage: {0} <fixedImageFilter> <movingImageFile> <outputTransformFile>".format(sys.argv[0]))
42 R.SetMetricAsMeanSquares()
43 R.SetOptimizerAsRegularStepGradientDescent(4.0, .01, 200 )
45 R.SetInterpolator(sitk.sitkLinear)
47 R.AddCommand( sitk.sitkIterationEvent,
lambda: command_iteration(R) )
49 outTx = R.Execute(fixed, moving)
53 print(
"Optimizer stop condition: {0}".format(R.GetOptimizerStopConditionDescription()))
54 print(
" Iteration: {0}".format(R.GetOptimizerIteration()))
55 print(
" Metric value: {0}".format(R.GetMetricValue()))
59 if (
not "SITK_NOSHOW" in os.environ ):
62 resampler.SetReferenceImage(fixed);
63 resampler.SetInterpolator(sitk.sitkLinear)
64 resampler.SetDefaultPixelValue(100)
65 resampler.SetTransform(outTx)
67 out = resampler.Execute(moving)
71 sitk.Show( cimg,
"ImageRegistration1 Composition" )