SimpleITK  2.0.0
DemonsRegistration2/DemonsRegistration2.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(filter):
28  print("{0:3} = {1:10.5f}".format(filter.GetElapsedIterations(),
29  filter.GetMetric()))
30 
31 
32 if len(sys.argv) < 4:
33  print("Usage:", sys.argv[0], "<fixedImageFilter> <movingImageFile>",
34  "[initialTransformFile] <outputTransformFile>")
35  sys.exit(1)
36 
37 fixed = sitk.ReadImage(sys.argv[1])
38 
39 moving = sitk.ReadImage(sys.argv[2])
40 
42 if (fixed.GetPixelID() in (sitk.sitkUInt8, sitk.sitkInt8)):
43  matcher.SetNumberOfHistogramLevels(128)
44 else:
45  matcher.SetNumberOfHistogramLevels(1024)
46 matcher.SetNumberOfMatchPoints(7)
47 matcher.ThresholdAtMeanIntensityOn()
48 moving = matcher.Execute(moving, fixed)
49 
50 # The fast symmetric forces Demons Registration Filter
51 # Note there is a whole family of Demons Registration algorithms included in
52 # SimpleITK
54 demons.SetNumberOfIterations(200)
55 # Standard deviation for Gaussian smoothing of displacement field
56 demons.SetStandardDeviations(1.0)
57 
58 demons.AddCommand(sitk.sitkIterationEvent, lambda: command_iteration(demons))
59 
60 if len(sys.argv) > 4:
61  initialTransform = sitk.ReadTransform(sys.argv[3])
62  sys.argv[-1] = sys.argv.pop()
63 
64  toDisplacementFilter = sitk.TransformToDisplacementFieldFilter()
65  toDisplacementFilter.SetReferenceImage(fixed)
66 
67  displacementField = toDisplacementFilter.Execute(initialTransform)
68 
69  displacementField = demons.Execute(fixed, moving, displacementField)
70 
71 else:
72 
73  displacementField = demons.Execute(fixed, moving)
74 
75 print("-------")
76 print("Number Of Iterations: {0}".format(demons.GetElapsedIterations()))
77 print(" RMS: {0}".format(demons.GetRMSChange()))
78 
79 outTx = sitk.DisplacementFieldTransform(displacementField)
80 
81 sitk.WriteTransform(outTx, sys.argv[3])
82 
83 if ("SITK_NOSHOW" not in os.environ):
84  resampler = sitk.ResampleImageFilter()
85  resampler.SetReferenceImage(fixed)
86  resampler.SetInterpolator(sitk.sitkLinear)
87  resampler.SetDefaultPixelValue(100)
88  resampler.SetTransform(outTx)
89 
90  out = resampler.Execute(moving)
91  simg1 = sitk.Cast(sitk.RescaleIntensity(fixed), sitk.sitkUInt8)
92  simg2 = sitk.Cast(sitk.RescaleIntensity(out), sitk.sitkUInt8)
93  cimg = sitk.Compose(simg1, simg2, simg1 // 2. + simg2 // 2.)
94  sitk.Show(cimg, "DeformableRegistration1 Composition")
itk::simple::FastSymmetricForcesDemonsRegistrationFilter
Deformably register two images using a symmetric forces demons algorithm.
Definition: sitkFastSymmetricForcesDemonsRegistrationFilter.h:67
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::TransformToDisplacementFieldFilter
Generate a displacement field from a coordinate transform.
Definition: sitkTransformToDisplacementFieldFilter.h:51
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::HistogramMatchingImageFilter
Normalize the grayscale values for a source image by matching the shape of the source image histogram...
Definition: sitkHistogramMatchingImageFilter.h:54
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::ReadTransform
SITKCommon_EXPORT Transform ReadTransform(const std::string &filename)