00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkThinPlateR2LogRSplineKernelTransform_h
00018 #define __itkThinPlateR2LogRSplineKernelTransform_h
00019
00020 #include "itkKernelTransform.h"
00021
00022 namespace itk
00023 {
00034 template <class TScalarType,
00035 unsigned int NDimensions = 3>
00036 class ITK_EXPORT ThinPlateR2LogRSplineKernelTransform :
00037 public KernelTransform< TScalarType, NDimensions>
00038 {
00039 public:
00041 typedef ThinPlateR2LogRSplineKernelTransform Self;
00042 typedef KernelTransform< TScalarType, NDimensions> Superclass;
00043 typedef SmartPointer<Self> Pointer;
00044 typedef SmartPointer<const Self> ConstPointer;
00045
00047 itkNewMacro( Self );
00048
00050 itkTypeMacro( ThinPlateR2LogRSplineKernelTransform, KernelTransform );
00051
00053 typedef typename Superclass::ScalarType ScalarType;
00054
00056 typedef typename Superclass::ParametersType ParametersType;
00057
00059 typedef typename Superclass::JacobianType JacobianType;
00060
00062 itkStaticConstMacro(SpaceDimension, unsigned int,Superclass::SpaceDimension);
00063
00066 typedef typename Superclass::InputPointType InputPointType;
00067 typedef typename Superclass::OutputPointType OutputPointType;
00068 typedef typename Superclass::InputVectorType InputVectorType;
00069 typedef typename Superclass::OutputVectorType OutputVectorType;
00070 typedef typename Superclass::InputCovariantVectorType InputCovariantVectorType;
00071 typedef typename Superclass::OutputCovariantVectorType OutputCovariantVectorType;
00072 typedef typename Superclass::PointsIterator PointsIterator;
00073
00074
00075 protected:
00076 ThinPlateR2LogRSplineKernelTransform() {};
00077 virtual ~ThinPlateR2LogRSplineKernelTransform() {}
00078
00081 typedef typename Superclass::GMatrixType GMatrixType;
00082
00091 const GMatrixType & ComputeG(const InputVectorType & x) const;
00092
00093
00096 virtual void ComputeDeformationContribution( const InputPointType & inputPoint,
00097 OutputPointType & result ) const;
00098
00099 private:
00100 ThinPlateR2LogRSplineKernelTransform(const Self&);
00101 void operator=(const Self&);
00102
00103 };
00104
00105 }
00106
00107
00108 #define ITK_TEMPLATE_ThinPlateR2LogRSplineKernelTransform(_, EXPORT, x, y) namespace itk { \
00109 _(2(class EXPORT ThinPlateR2LogRSplineKernelTransform< ITK_TEMPLATE_2 x >)) \
00110 namespace Templates { typedef ThinPlateR2LogRSplineKernelTransform< ITK_TEMPLATE_2 x > \
00111 ThinPlateR2LogRSplineKernelTransform##y; } \
00112 }
00113
00114 #if ITK_TEMPLATE_EXPLICIT
00115 # include "Templates/itkThinPlateR2LogRSplineKernelTransform+-.h"
00116 #endif
00117
00118 #if ITK_TEMPLATE_TXX
00119 # include "itkThinPlateR2LogRSplineKernelTransform.txx"
00120 #endif
00121
00122 #endif // __itkThinPlateR2LogRSplineKernelTransform_h
00123