ITK  5.4.0
Insight Toolkit
itkGaussianExponentialDiffeomorphicTransformParametersAdaptor.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 itkGaussianExponentialDiffeomorphicTransformParametersAdaptor_h
19 #define itkGaussianExponentialDiffeomorphicTransformParametersAdaptor_h
20 
22 
23 namespace itk
24 {
32 template <typename TTransform>
35 {
36 public:
38 
44 
46  itkNewMacro(Self);
47 
49  itkOverrideGetNameOfClassMacro(GaussianExponentialDiffeomorphicTransformParametersAdaptor);
50 
51  using TransformType = TTransform;
52  using ScalarType = typename TransformType::ScalarType;
53 
57  virtual void SetGaussianSmoothingVarianceForTheConstantVelocityField(ScalarType);
58  itkGetConstReferenceMacro(GaussianSmoothingVarianceForTheConstantVelocityField, ScalarType);
64  virtual void SetGaussianSmoothingVarianceForTheUpdateField(ScalarType);
65  itkGetConstReferenceMacro(GaussianSmoothingVarianceForTheUpdateField, ScalarType);
68  void
69  AdaptTransformParameters() override;
70 
71 protected:
74 
75  void
76  PrintSelf(std::ostream & os, Indent indent) const override;
77 
78 private:
79  ScalarType m_GaussianSmoothingVarianceForTheConstantVelocityField{};
80  ScalarType m_GaussianSmoothingVarianceForTheUpdateField{};
81  ModifiedTimeType m_GaussianSmoothingVarianceForTheConstantVelocityFieldSetTime{ 0 };
82  ModifiedTimeType m_GaussianSmoothingVarianceForTheUpdateFieldSetTime{ 0 };
83 
84 }; // class GaussianExponentialDiffeomorphicTransformParametersAdaptor
85 } // namespace itk
86 
87 #ifndef ITK_MANUAL_INSTANTIATION
88 # include "itkGaussianExponentialDiffeomorphicTransformParametersAdaptor.hxx"
89 #endif
90 
91 #endif /* itkGaussianExponentialDiffeomorphicTransformParametersAdaptor_h */
itk::ModifiedTimeType
SizeValueType ModifiedTimeType
Definition: itkIntTypes.h:102
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::ConstantVelocityFieldTransformParametersAdaptor::TransformType
TTransform TransformType
Definition: itkConstantVelocityFieldTransformParametersAdaptor.h:83
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:55
itk::GaussianExponentialDiffeomorphicTransformParametersAdaptor
Helper class for multiresolution image registration.
Definition: itkGaussianExponentialDiffeomorphicTransformParametersAdaptor.h:33
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itkConstantVelocityFieldTransformParametersAdaptor.h
itk::ConstantVelocityFieldTransformParametersAdaptor
ConstantVelocityFieldTransformParametersAdaptor is a helper class intended to definition.
Definition: itkConstantVelocityFieldTransformParametersAdaptor.h:64
itk::GaussianExponentialDiffeomorphicTransformParametersAdaptor::ScalarType
typename TransformType::ScalarType ScalarType
Definition: itkGaussianExponentialDiffeomorphicTransformParametersAdaptor.h:52