ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkTimeVaryingBSplineVelocityFieldTransformParametersAdaptor.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 itkTimeVaryingBSplineVelocityFieldTransformParametersAdaptor_h
19#define itkTimeVaryingBSplineVelocityFieldTransformParametersAdaptor_h
20
22
23namespace itk
24{
65template <typename TTransform>
67 : public TransformParametersAdaptor<TTransform>
68{
69public:
71
77
79 itkNewMacro(Self);
80
83
85 using TransformType = TTransform;
86 using TransformPointer = typename TransformType::Pointer;
87 using ParametersType = typename TransformType::ParametersType;
88 using ParametersValueType = typename TransformType::ParametersValueType;
89 using FixedParametersType = typename TransformType::FixedParametersType;
90 using FixedParametersValueType = typename TransformType::FixedParametersValueType;
91
93 typename TransformType::TimeVaryingVelocityFieldControlPointLatticeType;
95 typename TimeVaryingVelocityFieldControlPointLatticeType::Pointer;
96 using RegionType = typename TimeVaryingVelocityFieldControlPointLatticeType::RegionType;
97 using IndexType = typename TimeVaryingVelocityFieldControlPointLatticeType::IndexType;
98 using VectorType = typename TimeVaryingVelocityFieldControlPointLatticeType::PixelType;
99 using OriginType = typename TimeVaryingVelocityFieldControlPointLatticeType::PointType;
100 using SpacingType = typename TimeVaryingVelocityFieldControlPointLatticeType::SpacingType;
101 using SizeType = typename TimeVaryingVelocityFieldControlPointLatticeType::SizeType;
102 using SizeValueType = typename TimeVaryingVelocityFieldControlPointLatticeType::SizeValueType;
103 using MeshSizeType = typename TimeVaryingVelocityFieldControlPointLatticeType::SizeType;
104 using DirectionType = typename TimeVaryingVelocityFieldControlPointLatticeType::DirectionType;
105
107 static constexpr unsigned int TotalDimension = TransformType::Dimension + 1;
108
110 itkSetMacro(SplineOrder, SizeValueType);
111
113 itkGetConstMacro(SplineOrder, SizeValueType);
114
116 void
118
120 itkGetConstReferenceMacro(RequiredTransformDomainMeshSize, MeshSizeType);
121
123 void
125
127 itkGetConstReferenceMacro(RequiredTransformDomainSize, SizeType);
128
130 void
132
134 itkGetConstReferenceMacro(RequiredTransformDomainSpacing, SpacingType);
135
137 void
139
141 itkGetConstReferenceMacro(RequiredTransformDomainOrigin, OriginType);
142
144 void
146
148 itkGetConstReferenceMacro(RequiredTransformDomainDirection, DirectionType);
149
151 const OriginType
153 {
154 OriginType requiredLatticeOrigin;
155 for (SizeValueType i = 0; i < TotalDimension; ++i)
156 {
157 requiredLatticeOrigin[i] = this->m_RequiredFixedParameters[TotalDimension + i];
158 }
159 return requiredLatticeOrigin;
160 }
161
163 const SpacingType
165 {
166 SpacingType requiredLatticeSpacing;
167 for (SizeValueType i = 0; i < TotalDimension; ++i)
168 {
169 const FixedParametersValueType domainPhysicalDimensions =
170 static_cast<FixedParametersValueType>(this->m_RequiredTransformDomainSize[i] - 1.0) *
172 requiredLatticeSpacing[i] =
173 domainPhysicalDimensions / static_cast<FixedParametersValueType>(this->m_RequiredTransformDomainMeshSize[i]);
174 }
175 return requiredLatticeSpacing;
176 }
177
179 const SizeType
181 {
182 SizeType requiredLatticeSize;
183 for (SizeValueType i = 0; i < TotalDimension; ++i)
184 {
185 requiredLatticeSize[i] = static_cast<SizeValueType>(this->m_RequiredFixedParameters[i]);
186 }
187 return requiredLatticeSize;
188 }
189
191 const DirectionType
196
198 void
200
201 void
203
204protected:
207
208 void
209 PrintSelf(std::ostream & os, Indent indent) const override;
210
211private:
213 void
215
221
223
224}; // class TimeVaryingBSplineVelocityFieldTransformParametersAdaptor
225} // namespace itk
226
227#ifndef ITK_MANUAL_INSTANTIATION
228# include "itkTimeVaryingBSplineVelocityFieldTransformParametersAdaptor.hxx"
229#endif
230
231#endif /* itkTimeVaryingBSplineVelocityFieldTransformParametersAdaptor_h */
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
void PrintSelf(std::ostream &os, Indent indent) const override
typename TransformType::TimeVaryingVelocityFieldControlPointLatticeType TimeVaryingVelocityFieldControlPointLatticeType
typename TimeVaryingVelocityFieldControlPointLatticeType::DirectionType DirectionType
typename TimeVaryingVelocityFieldControlPointLatticeType::Pointer TimeVaryingVelocityFieldControlPointLatticePointer
void SetRequiredFixedParameters(const FixedParametersType) override
typename TimeVaryingVelocityFieldControlPointLatticeType::SizeValueType SizeValueType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....