SimpleITK  2.0.0
ImageRegistrationMethod3/ImageRegistrationMethod3.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("Estimated Scales: ", method.GetOptimizerScales())
30  print("{0:3} = {1:7.5f} : {2}".format(method.GetOptimizerIteration(),
31  method.GetMetricValue(),
32  method.GetOptimizerPosition()))
33 
34 
35 if len(sys.argv) < 4:
36  print("Usage:", sys.argv[0],
37  "<fixedImageFilter> <movingImageFile> <outputTransformFile>")
38  sys.exit(1)
39 
40 pixelType = sitk.sitkFloat32
41 
42 fixed = sitk.ReadImage(sys.argv[1], sitk.sitkFloat32)
43 
44 moving = sitk.ReadImage(sys.argv[2], sitk.sitkFloat32)
45 
47 
48 R.SetMetricAsCorrelation()
49 
50 R.SetOptimizerAsRegularStepGradientDescent(learningRate=2.0,
51  minStep=1e-4,
52  numberOfIterations=500,
53  gradientMagnitudeTolerance=1e-8)
54 R.SetOptimizerScalesFromIndexShift()
55 
56 tx = sitk.CenteredTransformInitializer(fixed, moving,
58 R.SetInitialTransform(tx)
59 
60 R.SetInterpolator(sitk.sitkLinear)
61 
62 R.AddCommand(sitk.sitkIterationEvent, lambda: command_iteration(R))
63 
64 outTx = R.Execute(fixed, moving)
65 
66 print("-------")
67 print(outTx)
68 print("Optimizer stop condition: {0}"
69  .format(R.GetOptimizerStopConditionDescription()))
70 print(" Iteration: {0}".format(R.GetOptimizerIteration()))
71 print(" Metric value: {0}".format(R.GetMetricValue()))
72 
73 sitk.WriteTransform(outTx, sys.argv[3])
74 
75 if ("SITK_NOSHOW" not in os.environ):
76  resampler = sitk.ResampleImageFilter()
77  resampler.SetReferenceImage(fixed)
78  resampler.SetInterpolator(sitk.sitkLinear)
79  resampler.SetDefaultPixelValue(1)
80  resampler.SetTransform(outTx)
81 
82  out = resampler.Execute(moving)
83 
84  simg1 = sitk.Cast(sitk.RescaleIntensity(fixed), sitk.sitkUInt8)
85  simg2 = sitk.Cast(sitk.RescaleIntensity(out), sitk.sitkUInt8)
86  cimg = sitk.Compose(simg1, simg2, simg1 // 2. + simg2 // 2.)
87  sitk.Show(cimg, "ImageRegistration2 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::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::Similarity2DTransform
A similarity 2D transform with rotation in radians and isotropic scaling around a fixed center with t...
Definition: sitkSimilarity2DTransform.h:35
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
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 ...