ITK  6.0.0
Insight Toolkit
itkTimeVaryingVelocityFieldTransform.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 itkTimeVaryingVelocityFieldTransform_h
19#define itkTimeVaryingVelocityFieldTransform_h
20
22
23namespace itk
24{
25
53template <typename TParametersValueType, unsigned int VDimension>
54class ITK_TEMPLATE_EXPORT TimeVaryingVelocityFieldTransform
55 : public VelocityFieldTransform<TParametersValueType, VDimension>
56{
57public:
58 ITK_DISALLOW_COPY_AND_MOVE(TimeVaryingVelocityFieldTransform);
59
65
67 itkOverrideGetNameOfClassMacro(TimeVaryingVelocityFieldTransform);
68
70 itkNewMacro(Self);
71
73 using typename Superclass::InverseTransformBasePointer;
74
76 using typename Superclass::InterpolatorType;
77 using VelocityFieldIntegratorType = typename Superclass::VelocityFieldInterpolatorType;
78
80 using typename Superclass::DisplacementFieldType;
81 using typename Superclass::VelocityFieldType;
82
85
87 using typename Superclass::ScalarType;
88
90 using typename Superclass::ParametersType;
91 using ParametersValueType = typename ParametersType::ValueType;
92 using typename Superclass::FixedParametersType;
93 using FixedParametersValueType = typename FixedParametersType::ValueType;
94 using typename Superclass::NumberOfParametersType;
95
97 using typename Superclass::DerivativeType;
98
100
102#if !defined(ITK_LEGACY_REMOVE)
104 GetTimeVaryingVelocityField()
105 {
106 return this->GetModifiableVelocityField();
107 }
108#endif
109 VelocityFieldType *
111 {
112 return this->GetModifiableVelocityField();
113 }
114 const VelocityFieldType *
116 {
117 return this->GetVelocityField();
118 }
122 virtual void
124 {
125 this->SetVelocityField(field);
126 }
127
130 void
132
133protected:
136};
137
138} // end namespace itk
139
140#ifndef ITK_MANUAL_INSTANTIATION
141# include "itkTimeVaryingVelocityFieldTransform.hxx"
142#endif
143
144#endif // itkTimeVaryingVelocityFieldTransform_h
TParametersValueType ParametersValueType
SmartPointer< const Self > ConstPointer
SmartPointer< Self > Pointer
Templated n-dimensional image class.
Definition: itkImage.h:89
Transform objects based on integration of a time-varying velocity field.
const VelocityFieldType * GetTimeVaryingVelocityField() const
typename VelocityFieldType::Pointer TimeVaryingVelocityFieldPointer
typename Superclass::VelocityFieldInterpolatorType VelocityFieldIntegratorType
typename Transform< TParametersValueType, VDimension, VDimension >::Pointer TransformPointer
~TimeVaryingVelocityFieldTransform() override=default
virtual void SetTimeVaryingVelocityField(VelocityFieldType *field)
Transform points and vectors from an input space to an output space.
Definition: itkTransform.h:84
Provides local/dense/high-dimensionality transformation via a a velocity field.
SmartPointer< Self > Pointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....