20 from __future__
import print_function
22 import SimpleITK
as sitk
27 def command_iteration(filter):
28 print(
"{0:3} = {1:10.5f}".format(filter.GetElapsedIterations(),
34 "Usage: {0} <fixedImageFilter> <movingImageFile> <outputTransformFile>"
43 matcher.SetNumberOfHistogramLevels(1024)
44 matcher.SetNumberOfMatchPoints(7)
45 matcher.ThresholdAtMeanIntensityOn()
46 moving = matcher.Execute(moving, fixed)
52 demons.SetNumberOfIterations(50)
54 demons.SetStandardDeviations(1.0)
56 demons.AddCommand(sitk.sitkIterationEvent,
lambda: command_iteration(demons))
58 displacementField = demons.Execute(fixed, moving)
61 print(
"Number Of Iterations: {0}".format(demons.GetElapsedIterations()))
62 print(
" RMS: {0}".format(demons.GetRMSChange()))
68 if (
"SITK_NOSHOW" not in os.environ):
70 resampler.SetReferenceImage(fixed)
71 resampler.SetInterpolator(sitk.sitkLinear)
72 resampler.SetDefaultPixelValue(100)
73 resampler.SetTransform(outTx)
75 out = resampler.Execute(moving)
81 cimg =
sitk.Compose(simg1, simg2, simg1 // 2. + simg2 // 2.)
82 sitk.Show(cimg,
"DeformableRegistration1 Composition")