SimpleITK  2.0.0
ImageRegistrationMethodBSpline3/ImageRegistrationMethodBSpline3.py
1 #!/usr/bin/env python
2 # =========================================================================
3 #
4 # Copyright NumFOCUS
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 # http://www.apache.org/licenses/LICENSE-2.0.txt
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # =========================================================================
19 
20 from __future__ import print_function
21 
22 import SimpleITK as sitk
23 import sys
24 import os
25 
26 
27 def command_iteration(method, bspline_transform):
28  if method.GetOptimizerIteration() == 0:
29  # The BSpline is resized before the first optimizer
30  # iteration is completed per level. Print the transform object
31  # to show the adapted BSpline transform.
32  print(bspline_transform)
33 
34  print("{0:3} = {1:10.5f}".format(method.GetOptimizerIteration(),
35  method.GetMetricValue()))
36 
37 
38 def command_multi_iteration(method):
39  # The sitkMultiResolutionIterationEvent occurs before the
40  # resolution of the transform. This event is used here to print
41  # the status of the optimizer from the previous registration level.
42  if R.GetCurrentLevel() > 0:
43  print("Optimizer stop condition: {0}"
44  .format(R.GetOptimizerStopConditionDescription()))
45  print(" Iteration: {0}".format(R.GetOptimizerIteration()))
46  print(" Metric value: {0}".format(R.GetMetricValue()))
47 
48  print("--------- Resolution Changing ---------")
49 
50 
51 if len(sys.argv) < 4:
52  print("Usage:", sys.argv[0], "<fixedImageFilter> <movingImageFile>",
53  "<outputTransformFile>")
54  sys.exit(1)
55 
56 fixed = sitk.ReadImage(sys.argv[1], sitk.sitkFloat32)
57 
58 moving = sitk.ReadImage(sys.argv[2], sitk.sitkFloat32)
59 
60 transformDomainMeshSize = [2] * fixed.GetDimension()
62  transformDomainMeshSize)
63 
64 print("Initial Number of Parameters: {0}".format(tx.GetNumberOfParameters()))
65 
67 R.SetMetricAsJointHistogramMutualInformation()
68 
69 R.SetOptimizerAsGradientDescentLineSearch(5.0,
70  100,
71  convergenceMinimumValue=1e-4,
72  convergenceWindowSize=5)
73 
74 R.SetInterpolator(sitk.sitkLinear)
75 
76 R.SetInitialTransformAsBSpline(tx,
77  inPlace=True,
78  scaleFactors=[1, 2, 5])
79 R.SetShrinkFactorsPerLevel([4, 2, 1])
80 R.SetSmoothingSigmasPerLevel([4, 2, 1])
81 
82 R.AddCommand(sitk.sitkIterationEvent, lambda: command_iteration(R, tx))
83 R.AddCommand(sitk.sitkMultiResolutionIterationEvent,
84  lambda: command_multi_iteration(R))
85 
86 outTx = R.Execute(fixed, moving)
87 
88 print("-------")
89 print(tx)
90 print(outTx)
91 print("Optimizer stop condition: {0}"
92  .format(R.GetOptimizerStopConditionDescription()))
93 print(" Iteration: {0}".format(R.GetOptimizerIteration()))
94 print(" Metric value: {0}".format(R.GetMetricValue()))
95 
96 sitk.WriteTransform(outTx, sys.argv[3])
97 
98 if ("SITK_NOSHOW" not in os.environ):
99  resampler = sitk.ResampleImageFilter()
100  resampler.SetReferenceImage(fixed)
101  resampler.SetInterpolator(sitk.sitkLinear)
102  resampler.SetDefaultPixelValue(100)
103  resampler.SetTransform(outTx)
104 
105  out = resampler.Execute(moving)
106  simg1 = sitk.Cast(sitk.RescaleIntensity(fixed), sitk.sitkUInt8)
107  simg2 = sitk.Cast(sitk.RescaleIntensity(out), sitk.sitkUInt8)
108  cimg = sitk.Compose(simg1, simg2, simg1 // 2. + simg2 // 2.)
109  sitk.Show(cimg, "Image Registration Composition")
itk::simple::WriteTransform
SITKCommon_EXPORT void WriteTransform(const Transform &transform, const std::string &filename)
itk::simple::RescaleIntensity
Image RescaleIntensity(const Image &image1, double outputMinimum=0, double outputMaximum=255)
Applies a linear transformation to the intensity levels of the input Image .
itk::simple::BSplineTransformInitializer
BSplineTransform BSplineTransformInitializer(const Image &image1, const std::vector< uint32_t > &transformDomainMeshSize=std::vector< uint32_t >(3, 1u), unsigned int order=3u)
BSplineTransformInitializerFilter is a helper class intended to initialize the control point grid suc...
itk::simple::Show
void SITKIO_EXPORT Show(const Image &image, const std::string &title="", const bool debugOn=ProcessObject::GetGlobalDefaultDebug())
itk::simple::ReadImage
SITKIO_EXPORT Image ReadImage(const std::vector< std::string > &fileNames, PixelIDValueEnum outputPixelType=sitkUnknown, const std::string &imageIO="")
ReadImage is a procedural interface to the ImageSeriesReader class which is convenient for most image...
itk::simple::Cast
Image Cast(const Image &image, PixelIDValueEnum pixelID)
itk::simple::ResampleImageFilter
Resample an image via a coordinate transform.
Definition: sitkResampleImageFilter.h:53
itk::simple::Compose
Image Compose(const Image &image1, const Image &image2, const Image &image3, const Image &image4, const Image &image5)
ComposeImageFilter combine several scalar images into a multicomponent image.
itk::simple::ImageRegistrationMethod
An interface method to the modular ITKv4 registration framework.
Definition: sitkImageRegistrationMethod.h:89