20 from __future__
import print_function
22 import SimpleITK
as sitk
27 print(
"Usage:", sys.argv[0],
"<fixedImageFilter> <movingImageFile>",
28 "<outputTransformFile> <numberOfBins> <samplingPercentage>")
32 def command_iteration(method):
33 print(
"{0:3} = {1:10.5f} : {2}".format(method.GetOptimizerIteration(),
34 method.GetMetricValue(),
35 method.GetOptimizerPosition()))
42 samplingPercentage = 0.10
45 numberOfBins = int(sys.argv[4])
47 samplingPercentage = float(sys.argv[5])
50 R.SetMetricAsMattesMutualInformation(numberOfBins)
51 R.SetMetricSamplingPercentage(samplingPercentage, sitk.sitkWallClock)
52 R.SetMetricSamplingStrategy(R.RANDOM)
53 R.SetOptimizerAsRegularStepGradientDescent(1.0, .001, 200)
55 R.SetInterpolator(sitk.sitkLinear)
57 R.AddCommand(sitk.sitkIterationEvent,
lambda: command_iteration(R))
59 outTx = R.Execute(fixed, moving)
63 print(
"Optimizer stop condition: {0}"
64 .format(R.GetOptimizerStopConditionDescription()))
65 print(
" Iteration: {0}".format(R.GetOptimizerIteration()))
66 print(
" Metric value: {0}".format(R.GetMetricValue()))
70 if (
"SITK_NOSHOW" not in os.environ):
72 resampler.SetReferenceImage(fixed)
73 resampler.SetInterpolator(sitk.sitkLinear)
74 resampler.SetDefaultPixelValue(100)
75 resampler.SetTransform(outTx)
77 out = resampler.Execute(moving)
80 cimg =
sitk.Compose(simg1, simg2, simg1 // 2. + simg2 // 2.)
81 sitk.Show(cimg,
"ImageRegistration4 Composition")