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()))
34 print(
"Usage:", sys.argv[0],
"<fixedImageFilter> <movingImageFile>",
35 "<outputTransformFile>")
43 R.SetMetricAsMeanSquares()
44 R.SetOptimizerAsRegularStepGradientDescent(4.0, .01, 200)
46 R.SetInterpolator(sitk.sitkLinear)
48 R.AddCommand(sitk.sitkIterationEvent,
lambda: command_iteration(R))
50 outTx = R.Execute(fixed, moving)
54 print(
"Optimizer stop condition: {0}"
55 .format(R.GetOptimizerStopConditionDescription()))
56 print(
" Iteration: {0}".format(R.GetOptimizerIteration()))
57 print(
" Metric value: {0}".format(R.GetMetricValue()))
61 if (
"SITK_NOSHOW" not in os.environ):
63 resampler.SetReferenceImage(fixed)
64 resampler.SetInterpolator(sitk.sitkLinear)
65 resampler.SetDefaultPixelValue(100)
66 resampler.SetTransform(outTx)
68 out = resampler.Execute(moving)
71 cimg =
sitk.Compose(simg1, simg2, simg1 // 2. + simg2 // 2.)
72 sitk.Show(cimg,
"ImageRegistration1 Composition")