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 from __future__
import print_function
38 from __future__
import division
40 import SimpleITK
as sitk
46 def command_iteration(method):
47 if (method.GetOptimizerIteration() == 0):
48 print(
"Scales: ", method.GetOptimizerScales())
49 print(
"{0:3} = {1:7.5f} : {2}".format(method.GetOptimizerIteration(),
50 method.GetMetricValue(),
51 method.GetOptimizerPosition()))
55 print(
"Usage:", sys.argv[0],
"<fixedImageFilter> <movingImageFile>",
56 "<outputTransformFile>")
65 R.SetMetricAsMattesMutualInformation(numberOfHistogramBins=50)
68 if fixed.GetDimension() == 2:
72 R.SetOptimizerAsExhaustive([sample_per_axis // 2, 0, 0])
74 R.SetOptimizerScales([2.0 * pi / sample_per_axis, 1.0, 1.0])
75 elif fixed.GetDimension() == 3:
77 R.SetOptimizerAsExhaustive([sample_per_axis // 2, sample_per_axis // 2,
78 sample_per_axis // 4, 0, 0, 0])
80 [2.0 * pi / sample_per_axis, 2.0 * pi / sample_per_axis,
81 2.0 * pi / sample_per_axis, 1.0, 1.0, 1.0])
87 R.SetInitialTransform(tx)
89 R.SetInterpolator(sitk.sitkLinear)
91 R.AddCommand(sitk.sitkIterationEvent,
lambda: command_iteration(R))
93 outTx = R.Execute(fixed, moving)
97 print(
"Optimizer stop condition: {0}"
98 .format(R.GetOptimizerStopConditionDescription()))
99 print(
" Iteration: {0}".format(R.GetOptimizerIteration()))
100 print(
" Metric value: {0}".format(R.GetMetricValue()))
104 if (
"SITK_NOSHOW" not in os.environ):
106 resampler.SetReferenceImage(fixed)
107 resampler.SetInterpolator(sitk.sitkLinear)
108 resampler.SetDefaultPixelValue(1)
109 resampler.SetTransform(outTx)
111 out = resampler.Execute(moving)
115 cimg =
sitk.Compose(simg1, simg2, simg1 // 2. + simg2 // 2.)
116 sitk.Show(cimg,
"ImageRegistrationExhaustive Composition")