20 import SimpleITK
as sitk
25 def command_iteration(method):
27 f
"{method.GetOptimizerIteration():3} "
28 + f
"= {method.GetMetricValue():10.5f}"
36 "<fixedImageFilter> <movingImageFile>",
37 "<outputTransformFile>",
45 transformDomainMeshSize = [8] * moving.GetDimension()
48 print(
"Initial Parameters:")
49 print(tx.GetParameters())
52 R.SetMetricAsCorrelation()
54 R.SetOptimizerAsLBFGSB(
55 gradientConvergenceTolerance=1e-5,
56 numberOfIterations=100,
57 maximumNumberOfCorrections=5,
58 maximumNumberOfFunctionEvaluations=1000,
59 costFunctionConvergenceFactor=1e7,
61 R.SetInitialTransform(tx,
True)
62 R.SetInterpolator(sitk.sitkLinear)
64 R.AddCommand(sitk.sitkIterationEvent,
lambda: command_iteration(R))
66 outTx = R.Execute(fixed, moving)
70 print(f
"Optimizer stop condition: {R.GetOptimizerStopConditionDescription()}")
71 print(f
" Iteration: {R.GetOptimizerIteration()}")
72 print(f
" Metric value: {R.GetMetricValue()}")
76 if "SITK_NOSHOW" not in os.environ:
78 resampler.SetReferenceImage(fixed)
79 resampler.SetInterpolator(sitk.sitkLinear)
80 resampler.SetDefaultPixelValue(100)
81 resampler.SetTransform(outTx)
83 out = resampler.Execute(moving)
86 cimg =
sitk.Compose(simg1, simg2, simg1 // 2.0 + simg2 // 2.0)
87 sitk.Show(cimg,
"ImageRegistration1 Composition")