ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkThinPlateSplineKernelTransform.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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 __itkThinPlateSplineKernelTransform_h
19 #define __itkThinPlateSplineKernelTransform_h
20 
21 #include "itkKernelTransform.h"
22 
23 namespace itk
24 {
33 template< class TScalarType, // Data type for scalars (float or double)
34  unsigned int NDimensions = 3 >
35 // Number of dimensions
37  public KernelTransform< TScalarType, NDimensions >
38 {
39 public:
45 
47  itkNewMacro(Self);
48 
51 
53  typedef typename Superclass::ScalarType ScalarType;
54 
56  typedef typename Superclass::ParametersType ParametersType;
57 
59  typedef typename Superclass::JacobianType JacobianType;
60 
62  itkStaticConstMacro(SpaceDimension, unsigned int, Superclass::SpaceDimension);
63 
65  typedef typename Superclass::InputPointType InputPointType;
66  typedef typename Superclass::OutputPointType OutputPointType;
67  typedef typename Superclass::InputVectorType InputVectorType;
68  typedef typename Superclass::OutputVectorType OutputVectorType;
69  typedef typename Superclass::InputCovariantVectorType InputCovariantVectorType;
70  typedef typename Superclass::OutputCovariantVectorType OutputCovariantVectorType;
71  typedef typename Superclass::PointsIterator PointsIterator;
72 
73 protected:
76 
78  typedef typename Superclass::GMatrixType GMatrixType;
79 
88  virtual void ComputeG(const InputVectorType & landmarkVector, GMatrixType & gmatrix) const;
89 
92  virtual void ComputeDeformationContribution(const InputPointType & inputPoint,
93  OutputPointType & result) const;
94 
95 private:
96  ThinPlateSplineKernelTransform(const Self &); //purposely not implemented
97  void operator=(const Self &); //purposely not implemented
98 };
99 } // namespace itk
100 
101 #ifndef ITK_MANUAL_INSTANTIATION
102 #include "itkThinPlateSplineKernelTransform.hxx"
103 #endif
104 
105 #endif // __itkThinPlateSplineKernelTransform_h
106