ITK  5.4.0
Insight Toolkit
itkDemonsRegistrationFilter.h
Go to the documentation of this file.
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#ifndef itkDemonsRegistrationFilter_h
19#define itkDemonsRegistrationFilter_h
20
23
24namespace itk
25{
62template <typename TFixedImage, typename TMovingImage, typename TDisplacementField>
63class ITK_TEMPLATE_EXPORT DemonsRegistrationFilter
64 : public PDEDeformableRegistrationFilter<TFixedImage, TMovingImage, TDisplacementField>
65{
66public:
67 ITK_DISALLOW_COPY_AND_MOVE(DemonsRegistrationFilter);
68
74
76 itkNewMacro(Self);
77
79 itkOverrideGetNameOfClassMacro(DemonsRegistrationFilter);
80
82 using typename Superclass::TimeStepType;
83
85 using typename Superclass::FixedImageType;
86 using typename Superclass::FixedImagePointer;
87
89 using typename Superclass::MovingImageType;
90 using typename Superclass::MovingImagePointer;
91
93 using typename Superclass::DisplacementFieldType;
94 using typename Superclass::DisplacementFieldPointer;
95
97 using typename Superclass::FiniteDifferenceFunctionType;
98
102
108 virtual double
109 GetMetric() const;
110
113 itkSetMacro(UseMovingImageGradient, bool);
114 itkGetConstMacro(UseMovingImageGradient, bool);
115 itkBooleanMacro(UseMovingImageGradient);
122 virtual void
124
125 virtual double
127
128protected:
130 ~DemonsRegistrationFilter() override = default;
131 void
132 PrintSelf(std::ostream & os, Indent indent) const override;
133
135 void
137
139 void
140 ApplyUpdate(const TimeStepType & dt) override;
141
147 void
148 VerifyInputInformation() ITKv5_CONST override
149 {}
150
151private:
152 bool m_UseMovingImageGradient{};
153};
154} // end namespace itk
155
156#ifndef ITK_MANUAL_INSTANTIATION
157# include "itkDemonsRegistrationFilter.hxx"
158#endif
159
160#endif
Deformably register two images using the demons algorithm.
void VerifyInputInformation() ITKv5_CONST override
~DemonsRegistrationFilter() override=default
void InitializeIteration() override
virtual double GetMetric() const
void ApplyUpdate(const TimeStepType &dt) override
virtual double GetIntensityDifferenceThreshold() const
virtual void SetIntensityDifferenceThreshold(double)
void PrintSelf(std::ostream &os, Indent indent) const override
Control indentation during Print() invocation.
Definition: itkIndent.h:50
Light weight base class for most itk classes.
Deformably register two images using a PDE algorithm.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....