Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkElasticBodyReciprocalSplineKernelTransform.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkElasticBodyReciprocalSplineKernelTransform.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-10-07 12:03:53 $
00007   Version:   $Revision: 1.14 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 #ifndef __itkElasticBodyReciprocalSplineKernelTransform_h
00018 #define __itkElasticBodyReciprocalSplineKernelTransform_h
00019 
00020 #include "itkKernelTransform.h"
00021 
00022 
00023 namespace itk
00024 {
00025 
00038 template <class TScalarType = double,   // Data type for scalars (float or double)
00039           unsigned int NDimensions = 3>          // Number of dimensions
00040 class ITK_EXPORT ElasticBodyReciprocalSplineKernelTransform : 
00041           public KernelTransform<  TScalarType, NDimensions>
00042 {
00043 public:
00045   typedef ElasticBodyReciprocalSplineKernelTransform   Self;
00046   typedef KernelTransform<  TScalarType, 
00047                             NDimensions> Superclass;
00048 
00049   typedef SmartPointer<Self>        Pointer;
00050   typedef SmartPointer<const Self>  ConstPointer;
00051     
00053   itkTypeMacro( ElasticBodyReciprocalSplineKernelTransform, KernelTransform );
00054 
00056   itkNewMacro( Self );
00057 
00059   typedef typename Superclass::ScalarType  ScalarType;
00060 
00062   typedef typename Superclass::ParametersType  ParametersType;
00063 
00065   typedef typename Superclass::JacobianType  JacobianType;
00066 
00068   itkStaticConstMacro(SpaceDimension, unsigned int,Superclass::SpaceDimension);
00069 
00073   itkSetMacro( Alpha, TScalarType );
00074 
00076   itkGetMacro( Alpha, TScalarType );
00077 
00080   typedef typename Superclass::InputPointType            InputPointType;
00081   typedef typename Superclass::OutputPointType           OutputPointType;
00082   typedef typename Superclass::InputVectorType           InputVectorType;
00083   typedef typename Superclass::OutputVectorType          OutputVectorType;
00084   typedef typename Superclass::InputCovariantVectorType  InputCovariantVectorType;
00085   typedef typename Superclass::OutputCovariantVectorType OutputCovariantVectorType;
00086 
00087 
00088 protected:
00089   ElasticBodyReciprocalSplineKernelTransform();
00090   virtual ~ElasticBodyReciprocalSplineKernelTransform();
00091   void PrintSelf(std::ostream& os, Indent indent) const;
00092   
00095   typedef typename Superclass::GMatrixType GMatrixType;
00096 
00107   virtual void ComputeG(const InputVectorType& landmarkVector, GMatrixType & gmatrix) const;
00108 
00112   itkLegacyMacro( virtual const GMatrixType & ComputeG(const InputVectorType& landmarkVector) const );
00113 
00115   TScalarType m_Alpha;
00116 
00117 private:
00118   ElasticBodyReciprocalSplineKernelTransform(const Self&); //purposely not implemented
00119   void operator=(const Self&); //purposely not implemented
00120 
00121 };
00122 
00123 } // namespace itk
00124 
00125 // Define instantiation macro for this template.
00126 #define ITK_TEMPLATE_ElasticBodyReciprocalSplineKernelTransform(_, EXPORT, x, y) namespace itk { \
00127   _(2(class EXPORT ElasticBodyReciprocalSplineKernelTransform< ITK_TEMPLATE_2 x >)) \
00128   namespace Templates { typedef ElasticBodyReciprocalSplineKernelTransform< ITK_TEMPLATE_2 x > \
00129                                ElasticBodyReciprocalSplineKernelTransform##y; } \
00130   }
00131 
00132 #if ITK_TEMPLATE_EXPLICIT
00133 # include "Templates/itkElasticBodyReciprocalSplineKernelTransform+-.h"
00134 #endif
00135 
00136 #if ITK_TEMPLATE_TXX
00137 # include "itkElasticBodyReciprocalSplineKernelTransform.txx"
00138 #endif
00139 
00140 #endif // __itkElasticBodyReciprocalSplineKernelTransform_h
00141 

Generated at Sat Feb 28 12:21:14 2009 for ITK by doxygen 1.5.6 written by Dimitri van Heesch, © 1997-2000