SimpleITK  
ImageRegistrationMethod4/ImageRegistrationMethod4.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 import SimpleITK as sitk
21 import sys
22 import os
23 
24 if len(sys.argv) < 4:
25  print(
26  "Usage:",
27  sys.argv[0],
28  "<fixedImageFilter> <movingImageFile>",
29  "<outputTransformFile> <numberOfBins> <samplingPercentage>",
30  )
31  sys.exit(1)
32 
33 
34 def command_iteration(method):
35  print(
36  f"{method.GetOptimizerIteration():3} "
37  + f"= {method.GetMetricValue():10.5f} "
38  + f": {method.GetOptimizerPosition()}"
39  )
40 
41 
42 fixed = sitk.ReadImage(sys.argv[1], sitk.sitkFloat32)
43 moving = sitk.ReadImage(sys.argv[2], sitk.sitkFloat32)
44 
45 numberOfBins = 24
46 samplingPercentage = 0.10
47 
48 if len(sys.argv) > 4:
49  numberOfBins = int(sys.argv[4])
50 if len(sys.argv) > 5:
51  samplingPercentage = float(sys.argv[5])
52 
54 R.SetMetricAsMattesMutualInformation(numberOfBins)
55 R.SetMetricSamplingPercentage(samplingPercentage, sitk.sitkWallClock)
56 R.SetMetricSamplingStrategy(R.RANDOM)
57 R.SetOptimizerAsRegularStepGradientDescent(1.0, 0.001, 200)
58 R.SetInitialTransform(sitk.TranslationTransform(fixed.GetDimension()))
59 R.SetInterpolator(sitk.sitkLinear)
60 
61 R.AddCommand(sitk.sitkIterationEvent, lambda: command_iteration(R))
62 
63 outTx = R.Execute(fixed, moving)
64 
65 print("-------")
66 print(outTx)
67 print(f"Optimizer stop condition: {R.GetOptimizerStopConditionDescription()}")
68 print(f" Iteration: {R.GetOptimizerIteration()}")
69 print(f" Metric value: {R.GetMetricValue()}")
70 
71 sitk.WriteTransform(outTx, sys.argv[3])
72 
73 if "SITK_NOSHOW" not in os.environ:
74  resampler = sitk.ResampleImageFilter()
75  resampler.SetReferenceImage(fixed)
76  resampler.SetInterpolator(sitk.sitkLinear)
77  resampler.SetDefaultPixelValue(100)
78  resampler.SetTransform(outTx)
79 
80  out = resampler.Execute(moving)
81  simg1 = sitk.Cast(sitk.RescaleIntensity(fixed), sitk.sitkUInt8)
82  simg2 = sitk.Cast(sitk.RescaleIntensity(out), sitk.sitkUInt8)
83  cimg = sitk.Compose(simg1, simg2, simg1 // 2.0 + simg2 // 2.0)
84  sitk.Show(cimg, "ImageRegistration4 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::TranslationTransform
Translation of a 2D or 3D coordinate space.
Definition: sitkTranslationTransform.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