/*========================================================================= Program: Insight Segmentation & Registration Toolkit Module: $RCSfile: itkElasticBodySplineKernelTransform2.h,v $ Language: C++ Date: $Date: 2003/09/10 14:29:06 $ Version: $Revision: 1.29 $ Copyright (c) Insight Software Consortium. All rights reserved. See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #ifndef __itkElasticBodySplineKernelTransform2_h #define __itkElasticBodySplineKernelTransform2_h #include "itkKernelTransform2.h" namespace itk { /** \class ElasticBodySplineKernelTransform2 * This class defines the elastic body spline (EBS) transformation. * It is implemented in as straightforward a manner as possible from * the IEEE TMI paper by Davis, Khotanzad, Flamig, and Harms, * Vol. 16 No. 3 June 1997 * Taken from the paper: * The EBS "is based on a physical model of a homogeneous, isotropic, * three-dimensional elastic body. The model can approximate the way * that some physical objects deform". * * \ingroup Transforms */ template // Number of dimensions class ITK_EXPORT ElasticBodySplineKernelTransform2 : public KernelTransform2< TScalarType, NDimensions> { public: /** Standard class typedefs. */ typedef ElasticBodySplineKernelTransform2 Self; typedef KernelTransform2< TScalarType, NDimensions> Superclass; typedef SmartPointer Pointer; typedef SmartPointer ConstPointer; /** Run-time type information (and related methods). */ itkTypeMacro( ElasticBodySplineKernelTransform2, KernelTransform2 ); /** New macro for creation of through a Smart Pointer */ itkNewMacro( Self ); /** Scalar type. */ typedef typename Superclass::ScalarType ScalarType; /** Parameters type. */ typedef typename Superclass::ParametersType ParametersType; /** Jacobian type. */ typedef typename Superclass::JacobianType JacobianType; /** Dimension of the domain space. */ itkStaticConstMacro(SpaceDimension, unsigned int,Superclass::SpaceDimension); /** Set alpha. Alpha is related to Poisson's Ratio (\f$\nu\f$) as * \f$\alpha = 12 ( 1 - \nu ) - 1\f$ */ //itkSetMacro( Alpha, TScalarType ); Cant use the macro because the matrices must be recomputed virtual void SetAlpha(TScalarType Alpha) {m_Alpha=Alpha; m_LMatrixComputed=false; m_LInverseComputed=false; m_WMatrixComputed=false; } /** Get alpha */ itkGetMacro( Alpha, TScalarType ); /** These (rather redundant) typedefs are needed because on SGI, typedefs * are not inherited */ typedef typename Superclass::InputPointType InputPointType; typedef typename Superclass::OutputPointType OutputPointType; typedef typename Superclass::InputVectorType InputVectorType; typedef typename Superclass::OutputVectorType OutputVectorType; typedef typename Superclass::InputCovariantVectorType InputCovariantVectorType; typedef typename Superclass::OutputCovariantVectorType OutputCovariantVectorType; protected: ElasticBodySplineKernelTransform2(); virtual ~ElasticBodySplineKernelTransform2(); void PrintSelf(std::ostream& os, Indent indent) const; /** These (rather redundant) typedefs are needed because on SGI, typedefs * are not inherited */ typedef typename Superclass::GMatrixType GMatrixType; /** Compute G(x) * For the elastic body spline, this is: * G(x) = [alpha*r(x)^2*I - 3*x*x']*r(x) * \f$ G(x) = [\alpha*r(x)^2*I - 3*x*x']*r(x) \f$ * where * \f$\alpha = 12 ( 1 - \nu ) - 1\f$ * \f$\nu\f$ is Poisson's Ratio * r(x) = Euclidean norm = sqrt[x1^2 + x2^2 + x3^2] * \f[ r(x) = \sqrt{ x_1^2 + x_2^2 + x_3^2 } \f] * I = identity matrix */ const GMatrixType & ComputeG(const InputVectorType& x) const; /** alpha, Alpha is related to Poisson's Ratio ($\nu$) as * $\alpha = 12 ( 1 - \nu ) - 1$ */ TScalarType m_Alpha; private: ElasticBodySplineKernelTransform2(const Self&); //purposely not implemented void operator=(const Self&); //purposely not implemented }; } // namespace itk #ifndef ITK_MANUAL_INSTANTIATION #include "itkElasticBodySplineKernelTransform2.txx" #endif #endif // __itkElasticBodySplineKernelTransform2_h