SimpleITK  2.0.0
ImageRegistrationMethodBSpline1/ImageRegistrationMethodBSpline1.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  print("{0:3} = {1:10.5f}".format(method.GetOptimizerIteration(),
29  method.GetMetricValue()))
30 
31 
32 if len(sys.argv) < 4:
33  print("Usage:", sys.argv[0], "<fixedImageFilter> <movingImageFile>",
34  "<outputTransformFile>")
35  sys.exit(1)
36 
37 fixed = sitk.ReadImage(sys.argv[1], sitk.sitkFloat32)
38 
39 moving = sitk.ReadImage(sys.argv[2], sitk.sitkFloat32)
40 
41 transformDomainMeshSize = [8] * moving.GetDimension()
43  transformDomainMeshSize)
44 
45 print("Initial Parameters:")
46 print(tx.GetParameters())
47 
49 R.SetMetricAsCorrelation()
50 
51 R.SetOptimizerAsLBFGSB(gradientConvergenceTolerance=1e-5,
52  numberOfIterations=100,
53  maximumNumberOfCorrections=5,
54  maximumNumberOfFunctionEvaluations=1000,
55  costFunctionConvergenceFactor=1e+7)
56 R.SetInitialTransform(tx, True)
57 R.SetInterpolator(sitk.sitkLinear)
58 
59 R.AddCommand(sitk.sitkIterationEvent, lambda: command_iteration(R))
60 
61 outTx = R.Execute(fixed, moving)
62 
63 print("-------")
64 print(outTx)
65 print("Optimizer stop condition: {0}"
66  .format(R.GetOptimizerStopConditionDescription()))
67 print(" Iteration: {0}".format(R.GetOptimizerIteration()))
68 print(" Metric value: {0}".format(R.GetMetricValue()))
69 
70 sitk.WriteTransform(outTx, sys.argv[3])
71 
72 if ("SITK_NOSHOW" not in os.environ):
73  resampler = sitk.ResampleImageFilter()
74  resampler.SetReferenceImage(fixed)
75  resampler.SetInterpolator(sitk.sitkLinear)
76  resampler.SetDefaultPixelValue(100)
77  resampler.SetTransform(outTx)
78 
79  out = resampler.Execute(moving)
80  simg1 = sitk.Cast(sitk.RescaleIntensity(fixed), sitk.sitkUInt8)
81  simg2 = sitk.Cast(sitk.RescaleIntensity(out), sitk.sitkUInt8)
82  cimg = sitk.Compose(simg1, simg2, simg1 // 2. + simg2 // 2.)
83  sitk.Show(cimg, "ImageRegistration1 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