ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBSplineDeformableTransform.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 itkBSplineDeformableTransform_h
19#define itkBSplineDeformableTransform_h
20
22
23namespace itk
24{
112template <typename TParametersValueType = double, unsigned int VDimension = 3, unsigned int VSplineOrder = 3>
113class ITK_TEMPLATE_EXPORT BSplineDeformableTransform
114 : public BSplineBaseTransform<TParametersValueType, VDimension, VSplineOrder>
115{
116public:
117 ITK_DISALLOW_COPY_AND_MOVE(BSplineDeformableTransform);
118
124
126 // Explicit New() method, used here because we need to split the itkNewMacro()
127 // in order to overload the CreateAnother() method so that we can copy the m_BulkTransform
128 // explicitly.
129 // TODO: shouldn't it be done with the Clone() method?
130 itkSimpleNewMacro(Self);
132 CreateAnother() const override
133 {
135 const Pointer copyPtr = Self::New().GetPointer();
136 // THE FOLLOWING LINE IS DIFFERENT FROM THE DEFAULT MACRO!
137 copyPtr->m_BulkTransform = this->GetBulkTransform();
138 smartPtr = static_cast<Pointer>(copyPtr);
139 return smartPtr;
140 }
141
144
146 itkOverrideGetNameOfClassMacro(BSplineDeformableTransform);
147
149 static constexpr unsigned int SpaceDimension = VDimension;
150
152 static constexpr unsigned int SplineOrder = VSplineOrder;
153
155 using ScalarType = TParametersValueType;
156
158 using typename Superclass::ParametersType;
159 using typename Superclass::ParametersValueType;
160 using typename Superclass::FixedParametersType;
162
164 using typename Superclass::JacobianType;
167
170
172 using typename Superclass::InputVectorType;
173 using typename Superclass::OutputVectorType;
174
178
180 using typename Superclass::InputVnlVectorType;
181 using typename Superclass::OutputVnlVectorType;
182
186
187
204 void
205 SetFixedParameters(const FixedParametersType & passedParameters) override;
206
208 using typename Superclass::ImageType;
209 using typename Superclass::ImagePointer;
211
223 void
225
227 using typename Superclass::RegionType;
228
229 using typename Superclass::IndexType;
230 using typename Superclass::SizeType;
231 using typename Superclass::SpacingType;
232 using typename Superclass::DirectionType;
233 using typename Superclass::OriginType;
234
236 using typename Superclass::WeightsFunctionType;
237
238 using typename Superclass::WeightsType;
239 using typename Superclass::ContinuousIndexType;
240
243
253 void
254 TransformPoint(const InputPointType & inputPoint,
255 OutputPointType & outputPoint,
256 WeightsType & weights,
257 ParameterIndexArrayType & indices,
258 bool & inside) const override;
259
260 void
262
265 GetNumberOfParameters() const override;
266
270
272 using typename Superclass::PixelType;
273
274 using typename Superclass::MeshSizeType;
275
277 virtual void
279
281 itkGetConstMacro(GridOrigin, OriginType);
282
284 virtual void
286
288 itkGetConstMacro(GridSpacing, SpacingType);
289
291 virtual void
293
295 itkGetConstMacro(GridDirection, DirectionType);
296
298 virtual void
300
302 itkGetConstMacro(GridRegion, RegionType);
303
310 itkSetConstObjectMacro(BulkTransform, BulkTransformType);
311 itkGetConstObjectMacro(BulkTransform, BulkTransformType);
314 itkGetConstReferenceMacro(ValidRegion, RegionType);
315
316protected:
318 void
319 PrintSelf(std::ostream & os, Indent indent) const override;
320
322 ~BSplineDeformableTransform() override = default;
323
324private:
326 void
328
330 void
332
334 void
336
338 void
340
342 void
344
346 bool
348
361
364
366
368 unsigned long m_Offset{};
372
373 void
375
376}; // class BSplineDeformableTransform
377} // namespace itk
378
379#ifndef ITK_MANUAL_INSTANTIATION
380# include "itkBSplineDeformableTransform.hxx"
381#endif
382
383#endif /* itkBSplineDeformableTransform_h */
CovariantVector< TParametersValueType, Self::SpaceDimension > InputCovariantVectorType
vnl_matrix_fixed< ParametersValueType, VOutputDimension, VInputDimension > JacobianPositionType
vnl_vector_fixed< TParametersValueType, SpaceDimension > OutputVnlVectorType
vnl_vector_fixed< TParametersValueType, SpaceDimension > InputVnlVectorType
BSplineInterpolationWeightFunction< ScalarType, Self::SpaceDimension, Self::SplineOrder > WeightsFunctionType
OutputPointType TransformPoint(const InputPointType &point) const override
vnl_matrix_fixed< ParametersValueType, VInputDimension, VOutputDimension > InverseJacobianPositionType
CovariantVector< TParametersValueType, Self::SpaceDimension > OutputCovariantVectorType
void SetCoefficientImages(const CoefficientImageArray &images) override
typename Superclass::SpacingType PhysicalDimensionsType
Point< TParametersValueType, Self::SpaceDimension > InputPointType
void SetFixedParametersGridSizeFromTransformDomainInformation() const override
void ComputeJacobianWithRespectToParameters(const InputPointType &, JacobianType &) const override
void TransformPoint(const InputPointType &inputPoint, OutputPointType &outputPoint, WeightsType &weights, ParameterIndexArrayType &indices, bool &inside) const override
BSplineBaseTransform< TParametersValueType, VDimension, VSplineOrder > Superclass
virtual void SetGridSpacing(const SpacingType &)
NumberOfParametersType GetNumberOfParameters() const override
static constexpr unsigned int SpaceDimension
itk::LightObject::Pointer CreateAnother() const override
Array2D< ParametersValueType > JacobianType
virtual void SetGridDirection(const DirectionType &)
virtual const BulkTransformType * GetBulkTransform() const
void SetFixedParameters(const FixedParametersType &passedParameters) override
void PrintSelf(std::ostream &os, Indent indent) const override
void SetFixedParametersGridDirectionFromTransformDomainInformation() const override
typename BulkTransformType::ConstPointer BulkTransformPointer
bool InsideValidRegion(ContinuousIndexType &) const override
void SetCoefficientImageInformationFromFixedParameters() override
virtual void SetGridOrigin(const OriginType &)
~BSplineDeformableTransform() override=default
Transform< TParametersValueType, Self::SpaceDimension, Self::SpaceDimension > BulkTransformType
virtual void SetGridRegion(const RegionType &)
Point< TParametersValueType, Self::SpaceDimension > OutputPointType
void SetFixedParametersGridSpacingFromTransformDomainInformation() const override
NumberOfParametersType GetNumberOfParametersPerDimension() const override
void SetFixedParametersGridOriginFromTransformDomainInformation() const override
Control indentation during Print() invocation.
Definition itkIndent.h:50
SmartPointer< Self > Pointer
A templated class holding a geometric point in n-Dimensional space.
Definition itkPoint.h:54
Implements transparent reference counting.
OptimizerParameters< ParametersValueType > ParametersType
IdentifierType NumberOfParametersType
OptimizerParameters< FixedParametersValueType > FixedParametersType
Transform points and vectors from an input space to an output space.
OptimizerParameters< FixedParametersValueType > FixedParametersType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....