21 This script demonstrates the use of the Exhaustive optimizer in the
22 ImageRegistrationMethod to estimate a good initial rotation position.
24 Because gradient descent base optimization can get stuck in local
25 minima, a good initial transform is critical for reasonable
26 results. Search a reasonable space on a grid with brute force may be a
27 reliable way to get a starting location for further optimization.
29 The initial translation and center of rotation for the transform is
30 initialized based on the first principle moments of the intensities of
31 the image. Then in either 2D or 3D a Euler transform is used to
32 exhaustively search a grid of the rotation space at a certain step
33 size. The resulting transform is a reasonable guess where to start
37 import SimpleITK
as sitk
43 def command_iteration(method):
44 if method.GetOptimizerIteration() == 0:
45 print(
"Scales: ", method.GetOptimizerScales())
47 f
"{method.GetOptimizerIteration():3} "
48 + f
"= {method.GetMetricValue():7.5f} "
49 + f
": {method.GetOptimizerPosition()}"
57 "<fixedImageFilter> <movingImageFile>",
58 "<outputTransformFile>",
68 R.SetMetricAsMattesMutualInformation(numberOfHistogramBins=50)
71 if fixed.GetDimension() == 2:
75 R.SetOptimizerAsExhaustive([sample_per_axis // 2, 0, 0])
77 R.SetOptimizerScales([2.0 * pi / sample_per_axis, 1.0, 1.0])
78 elif fixed.GetDimension() == 3:
80 R.SetOptimizerAsExhaustive(
92 2.0 * pi / sample_per_axis,
93 2.0 * pi / sample_per_axis,
94 2.0 * pi / sample_per_axis,
105 R.SetInitialTransform(tx)
107 R.SetInterpolator(sitk.sitkLinear)
109 R.AddCommand(sitk.sitkIterationEvent,
lambda: command_iteration(R))
111 outTx = R.Execute(fixed, moving)
115 print(f
"Optimizer stop condition: {R.GetOptimizerStopConditionDescription()}")
116 print(f
" Iteration: {R.GetOptimizerIteration()}")
117 print(f
" Metric value: {R.GetMetricValue()}")
121 if "SITK_NOSHOW" not in os.environ:
123 resampler.SetReferenceImage(fixed)
124 resampler.SetInterpolator(sitk.sitkLinear)
125 resampler.SetDefaultPixelValue(1)
126 resampler.SetTransform(outTx)
128 out = resampler.Execute(moving)
132 cimg =
sitk.Compose(simg1, simg2, simg1 // 2.0 + simg2 // 2.0)
133 sitk.Show(cimg,
"ImageRegistrationExhaustive Composition")