ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
Examples/RegistrationITKv4/ImageRegistration3.py
1# ==========================================================================
2#
3# Copyright NumFOCUS
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# https://www.apache.org/licenses/LICENSE-2.0.txt
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# ==========================================================================*/
18
19import sys
20
21import itk
22
23#
24# Check input parameters
25# INPUTS(fixedImage): {BrainProtonDensitySliceBorder20.png}
26# INPUTS(movingImage): {BrainProtonDensitySliceShifted13x17y.png}
27#
28if len(sys.argv) < 4:
29 print("Missing Parameters")
30 print(
31 "Usage: ImageRegistration3.py fixed_image_file moving_image_file output_image_file"
32 )
33 sys.exit(1)
34fixed_image_file = sys.argv[1]
35moving_image_file = sys.argv[2]
36output_image_file = sys.argv[3]
37
38#
39# Define data types
40#
41PixelType = itk.ctype("float")
42
43#
44# Read the fixed and moving images using filenames
45# from the command line arguments
46#
47fixed_image = itk.imread(fixed_image_file, PixelType)
48moving_image = itk.imread(moving_image_file, PixelType)
49Dimension = fixed_image.GetImageDimension()
50
51#
52# Create the spatial transform we will optimize.
53#
54initial_transform = itk.TranslationTransform[itk.D, Dimension].New()
55
56#
57# Create the matching metric we will use to compare the images during
58# optimization.
60 type(fixed_image), type(moving_image)
61].New()
62
63#
64# Create the optimizer we will use for optimization.
65#
66optimizer = itk.RegularStepGradientDescentOptimizerv4[itk.D].New()
67optimizer.SetLearningRate(4)
68optimizer.SetMinimumStepLength(0.001)
69optimizer.SetRelaxationFactor(0.5)
70optimizer.SetNumberOfIterations(100)
71
72
73#
74# Iteration Observer
75#
76def iteration_update():
77 metric_value = optimizer.GetValue()
78 current_parameters = optimizer.GetCurrentPosition()
79 parameter_list = [current_parameters[i] for i in range(len(current_parameters))]
80 print(f"Metric: {metric_value:.8g} \tParameters: {parameter_list}")
81
82
83iteration_command = itk.PyCommand.New()
84iteration_command.SetCommandCallable(iteration_update)
85optimizer.AddObserver(itk.IterationEvent(), iteration_command)
86
87#
88# One level registration process without shrinking and smoothing.
89#
91 fixed_image=fixed_image,
92 moving_image=moving_image,
93 optimizer=optimizer,
94 metric=matching_metric,
95 initial_transform=initial_transform,
96)
97registration.SetNumberOfLevels(1)
98registration.SetSmoothingSigmasPerLevel([0])
99registration.SetShrinkFactorsPerLevel([1])
100
101#
102# Execute the registration
103#
104registration.Update()
105
106
107#
108# Get the final parameters of the transformation
109#
110final_parameters = registration.GetOutput().Get().GetParameters()
111
112print("\nFinal Registration Parameters: ")
113print(f"Translation X = {final_parameters[0]:f}")
114print(f"Translation Y = {final_parameters[1]:f}")
115
116
117#
118# Now, we use the final transform for resampling the
119# moving image.
120#
121resampled_moving = itk.resample_image_filter(
122 moving_image,
123 transform=registration.GetTransform(),
124 use_reference_image=True,
125 reference_image=fixed_image,
126 default_pixel_value=100,
127)
128
129#
130# Cast to 8-bit unsigned integer pixels, supported by the PNG file format
131#
132OutputPixelType = itk.ctype("unsigned char")
133resampled_cast = resampled_moving.astype(OutputPixelType)
134
135#
136# Write the resampled image
137#
138itk.imwrite(resampled_cast, output_image_file)
Class implementing a mean squares metric.
static Pointer New()
! Method for creation through the object factory.
Translation transformation of a vector space (e.g. space coordinates)