20 from __future__
import print_function
22 import SimpleITK
as sitk
27 def command_iteration(method):
28 print(
"{0:3} = {1:10.5f}".format(method.GetOptimizerIteration(),
29 method.GetMetricValue()))
33 print(
"Usage:", sys.argv[0],
"<fixedImageFilter> <movingImageFile>",
34 "<outputTransformFile>")
41 transformDomainMeshSize = [8] * moving.GetDimension()
43 transformDomainMeshSize)
45 print(
"Initial Parameters:")
46 print(tx.GetParameters())
49 R.SetMetricAsCorrelation()
51 R.SetOptimizerAsLBFGSB(gradientConvergenceTolerance=1e-5,
52 numberOfIterations=100,
53 maximumNumberOfCorrections=5,
54 maximumNumberOfFunctionEvaluations=1000,
55 costFunctionConvergenceFactor=1e+7)
56 R.SetInitialTransform(tx,
True)
57 R.SetInterpolator(sitk.sitkLinear)
59 R.AddCommand(sitk.sitkIterationEvent,
lambda: command_iteration(R))
61 outTx = R.Execute(fixed, moving)
65 print(
"Optimizer stop condition: {0}"
66 .format(R.GetOptimizerStopConditionDescription()))
67 print(
" Iteration: {0}".format(R.GetOptimizerIteration()))
68 print(
" Metric value: {0}".format(R.GetMetricValue()))
72 if (
"SITK_NOSHOW" not in os.environ):
74 resampler.SetReferenceImage(fixed)
75 resampler.SetInterpolator(sitk.sitkLinear)
76 resampler.SetDefaultPixelValue(100)
77 resampler.SetTransform(outTx)
79 out = resampler.Execute(moving)
82 cimg =
sitk.Compose(simg1, simg2, simg1 // 2. + simg2 // 2.)
83 sitk.Show(cimg,
"ImageRegistration1 Composition")