ITK  6.0.0
Insight Toolkit
itkGaussianSmoothingOnUpdateDisplacementFieldTransform.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 itkGaussianSmoothingOnUpdateDisplacementFieldTransform_h
19#define itkGaussianSmoothingOnUpdateDisplacementFieldTransform_h
20
22
23#include "itkGaussianOperator.h"
25
26namespace itk
27{
28
45template <typename TParametersValueType, unsigned int VDimension>
47 : public DisplacementFieldTransform<TParametersValueType, VDimension>
48{
49public:
51
57
60
62 itkNewMacro(Self);
63
65 using typename Superclass::ScalarType;
66 using typename Superclass::DerivativeType;
68 using typename Superclass::DisplacementFieldType;
69 using typename Superclass::DisplacementFieldPointer;
71
73
78 itkSetMacro(GaussianSmoothingVarianceForTheUpdateField, ScalarType);
79 itkGetConstReferenceMacro(GaussianSmoothingVarianceForTheUpdateField, ScalarType);
86 itkSetMacro(GaussianSmoothingVarianceForTheTotalField, ScalarType);
87 itkGetConstReferenceMacro(GaussianSmoothingVarianceForTheTotalField, ScalarType);
98 void
99 UpdateTransformParameters(const DerivativeType & update, ScalarType factor = 1.0) override;
100
107
108protected:
111 void
112 PrintSelf(std::ostream & os, Indent indent) const override;
113
115 typename LightObject::Pointer
116 InternalClone() const override;
117
120 ScalarType m_GaussianSmoothingVarianceForTheUpdateField{};
121 ScalarType m_GaussianSmoothingVarianceForTheTotalField{};
122
128 GaussianSmoothingOperatorType m_GaussianSmoothingOperator{};
129};
130
131} // end namespace itk
132
133#ifndef ITK_MANUAL_INSTANTIATION
134# include "itkGaussianSmoothingOnUpdateDisplacementFieldTransform.hxx"
135#endif
136
137#endif // itkGaussianSmoothingOnUpdateDisplacementFieldTransform_h
SmartPointer< const Self > ConstPointer
SmartPointer< Self > Pointer
Array class with size defined at construction time.
Definition: itkArray.h:48
TValue ValueType
Definition: itkArray.h:52
Provides local/dense/high-dimensionality transformation via a a displacement field.
typename DisplacementFieldType::Pointer DisplacementFieldPointer
Modifies the UpdateTransformParameters method to perform a Gaussian smoothing of the displacement fie...
void UpdateTransformParameters(const DerivativeType &update, ScalarType factor=1.0) override
virtual DisplacementFieldPointer GaussianSmoothDisplacementField(DisplacementFieldType *, ScalarType)
LightObject::Pointer InternalClone() const override
typename Transform< TParametersValueType, VDimension, VDimension >::Pointer TransformPointer
void PrintSelf(std::ostream &os, Indent indent) const override
Templated n-dimensional image class.
Definition: itkImage.h:89
TPixel PixelType
Definition: itkImage.h:108
Control indentation during Print() invocation.
Definition: itkIndent.h:50
Transform points and vectors from an input space to an output space.
Definition: itkTransform.h:84
Applies a single scalar NeighborhoodOperator to an itk::Vector image region.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....