SimpleITK  2.0.0
ImageRegistrationMethodDisplacement1/ImageRegistrationMethodDisplacement1.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):
28  if (method.GetOptimizerIteration() == 0):
29  print("\tLevel: {0}".format(method.GetCurrentLevel()))
30  print("\tScales: {0}".format(method.GetOptimizerScales()))
31  print("#{0}".format(method.GetOptimizerIteration()))
32  print("\tMetric Value: {0:10.5f}".format(method.GetMetricValue()))
33  print("\tLearningRate: {0:10.5f}"
34  .format(method.GetOptimizerLearningRate()))
35  if (method.GetOptimizerConvergenceValue() != sys.float_info.max):
36  print("\tConvergence Value: {0:.5e}"
37  .format(method.GetOptimizerConvergenceValue()))
38 
39 
40 def command_multiresolution_iteration(method):
41  print("\tStop Condition: {0}"
42  .format(method.GetOptimizerStopConditionDescription()))
43  print("============= Resolution Change =============")
44 
45 
46 if len(sys.argv) < 4:
47  print("Usage:", sys.argv[0], "<fixedImageFilter> <movingImageFile>",
48  "<outputTransformFile>")
49  sys.exit(1)
50 
51 fixed = sitk.ReadImage(sys.argv[1], sitk.sitkFloat32)
52 
53 moving = sitk.ReadImage(sys.argv[2], sitk.sitkFloat32)
54 
55 initialTx = sitk.CenteredTransformInitializer(fixed, moving,
57  fixed.GetDimension()))
58 
60 
61 R.SetShrinkFactorsPerLevel([3, 2, 1])
62 R.SetSmoothingSigmasPerLevel([2, 1, 1])
63 
64 R.SetMetricAsJointHistogramMutualInformation(20)
65 R.MetricUseFixedImageGradientFilterOff()
66 
67 R.SetOptimizerAsGradientDescent(learningRate=1.0,
68  numberOfIterations=100,
69  estimateLearningRate=R.EachIteration)
70 R.SetOptimizerScalesFromPhysicalShift()
71 
72 R.SetInitialTransform(initialTx)
73 
74 R.SetInterpolator(sitk.sitkLinear)
75 
76 R.AddCommand(sitk.sitkIterationEvent, lambda: command_iteration(R))
77 R.AddCommand(sitk.sitkMultiResolutionIterationEvent,
78  lambda: command_multiresolution_iteration(R))
79 
80 outTx1 = R.Execute(fixed, moving)
81 
82 print("-------")
83 print(outTx1)
84 print("Optimizer stop condition: {0}"
85  .format(R.GetOptimizerStopConditionDescription()))
86 print(" Iteration: {0}".format(R.GetOptimizerIteration()))
87 print(" Metric value: {0}".format(R.GetMetricValue()))
88 
89 displacementField = sitk.Image(fixed.GetSize(), sitk.sitkVectorFloat64)
90 displacementField.CopyInformation(fixed)
91 displacementTx = sitk.DisplacementFieldTransform(displacementField)
92 del displacementField
93 displacementTx.SetSmoothingGaussianOnUpdate(varianceForUpdateField=0.0,
94  varianceForTotalField=1.5)
95 
96 R.SetMovingInitialTransform(outTx1)
97 R.SetInitialTransform(displacementTx, inPlace=True)
98 
99 R.SetMetricAsANTSNeighborhoodCorrelation(4)
100 R.MetricUseFixedImageGradientFilterOff()
101 
102 R.SetShrinkFactorsPerLevel([3, 2, 1])
103 R.SetSmoothingSigmasPerLevel([2, 1, 1])
104 
105 R.SetOptimizerScalesFromPhysicalShift()
106 R.SetOptimizerAsGradientDescent(learningRate=1,
107  numberOfIterations=300,
108  estimateLearningRate=R.EachIteration)
109 
110 R.Execute(fixed, moving)
111 
112 print("-------")
113 print(displacementTx)
114 print("Optimizer stop condition: {0}"
115  .format(R.GetOptimizerStopConditionDescription()))
116 print(" Iteration: {0}".format(R.GetOptimizerIteration()))
117 print(" Metric value: {0}".format(R.GetMetricValue()))
118 
119 compositeTx = sitk.CompositeTransform([outTx1, displacementTx])
120 sitk.WriteTransform(compositeTx, sys.argv[3])
121 
122 if ("SITK_NOSHOW" not in os.environ):
123  sitk.Show(displacementTx.GetDisplacementField(), "Displacement Field")
124 
125  resampler = sitk.ResampleImageFilter()
126  resampler.SetReferenceImage(fixed)
127  resampler.SetInterpolator(sitk.sitkLinear)
128  resampler.SetDefaultPixelValue(100)
129  resampler.SetTransform(compositeTx)
130 
131  out = resampler.Execute(moving)
132  simg1 = sitk.Cast(sitk.RescaleIntensity(fixed), sitk.sitkUInt8)
133  simg2 = sitk.Cast(sitk.RescaleIntensity(out), sitk.sitkUInt8)
134  cimg = sitk.Compose(simg1, simg2, simg1 // 2. + simg2 // 2.)
135  sitk.Show(cimg, "ImageRegistration1 Composition")
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:75
itk::simple::WriteTransform
SITKCommon_EXPORT void WriteTransform(const Transform &transform, const std::string &filename)
itk::simple::DisplacementFieldTransform
A dense deformable transform over a bounded spatial domain for 2D or 3D coordinates space.
Definition: sitkDisplacementFieldTransform.h:36
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::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::CompositeTransform
This class contains a stack of transforms and concatenates them by composition.
Definition: sitkCompositeTransform.h:58
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
itk::simple::AffineTransform
An affine transformation about a fixed center with translation for a 2D or 3D coordinate.
Definition: sitkAffineTransform.h:35
itk::simple::CenteredTransformInitializer
Transform CenteredTransformInitializer(const Image &fixedImage, const Image &movingImage, const Transform &transform, CenteredTransformInitializerFilter::OperationModeType operationMode=itk::simple::CenteredTransformInitializerFilter::MOMENTS)
CenteredTransformInitializer is a helper class intended to initialize the center of rotation and the ...