ITK  5.2.0
Insight Toolkit
itkGaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor.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  * http://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 itkGaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor_h
19 #define itkGaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor_h
20 
22 
23 namespace itk
24 {
32 template <typename TTransform>
35 {
36 public:
38 
44 
46  itkNewMacro(Self);
47 
51 
52  using TransformType = TTransform;
53  using ScalarType = typename TransformType::ScalarType;
54 
58  virtual void SetGaussianSmoothingVarianceForTheUpdateField(ScalarType);
59  itkGetConstReferenceMacro(GaussianSmoothingVarianceForTheUpdateField, ScalarType);
61 
65  virtual void
66  SetGaussianSmoothingVarianceForTheTotalField(const ScalarType);
67  itkGetConstReferenceMacro(GaussianSmoothingVarianceForTheTotalField, ScalarType);
69 
70  void
71  AdaptTransformParameters() override;
72 
73 protected:
76 
77  void
78  PrintSelf(std::ostream & os, Indent indent) const override;
79 
80 private:
83 
84  ModifiedTimeType m_GaussianSmoothingVarianceForTheUpdateFieldSetTime{ 0 };
85  ModifiedTimeType m_GaussianSmoothingVarianceForTheTotalFieldSetTime{ 0 };
86 
87 }; // class GaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor
88 } // namespace itk
89 
90 #ifndef ITK_MANUAL_INSTANTIATION
91 # include "itkGaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor.hxx"
92 #endif
93 
94 #endif /* itkGaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor_h */
itk::GaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor::ScalarType
typename TransformType::ScalarType ScalarType
Definition: itkGaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor.h:53
itk::ModifiedTimeType
SizeValueType ModifiedTimeType
Definition: itkIntTypes.h:102
itk::GaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor
Helper class for multiresolution image registration.
Definition: itkGaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor.h:33
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::DisplacementFieldTransformParametersAdaptor
DisplacementFieldTransformParametersAdaptor is a helper class intended to definition.
Definition: itkDisplacementFieldTransformParametersAdaptor.h:64
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:59
itk::DisplacementFieldTransformParametersAdaptor::TransformType
TTransform TransformType
Definition: itkDisplacementFieldTransformParametersAdaptor.h:82
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::GaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor::m_GaussianSmoothingVarianceForTheTotalField
ScalarType m_GaussianSmoothingVarianceForTheTotalField
Definition: itkGaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor.h:82
itkDisplacementFieldTransformParametersAdaptor.h
itk::GaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor::m_GaussianSmoothingVarianceForTheUpdateField
ScalarType m_GaussianSmoothingVarianceForTheUpdateField
Definition: itkGaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor.h:81