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

itkVolumeSplineKernelTransform.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkVolumeSplineKernelTransform.h,v $
00005   Language:  C++
00006   Date:      $Date: 2007/01/30 20:56:09 $
00007   Version:   $Revision: 1.9 $
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 __itkVolumeSplineKernelTransform_h
00018 #define __itkVolumeSplineKernelTransform_h
00019 
00020 #include "itkKernelTransform.h"
00021 
00022 namespace itk
00023 {
00032 template <class TScalarType,         // Data type for scalars (float or double)
00033           unsigned int NDimensions = 3>          // Number of dimensions
00034 class ITK_EXPORT VolumeSplineKernelTransform : 
00035                 public KernelTransform<   TScalarType, NDimensions>
00036 {
00037 public:
00039   typedef VolumeSplineKernelTransform                 Self;
00040   typedef KernelTransform<TScalarType, NDimensions>   Superclass;
00041   typedef SmartPointer<Self>                          Pointer;
00042   typedef SmartPointer<const Self>                    ConstPointer;
00043 
00045   itkNewMacro( Self );
00046 
00048   itkTypeMacro( VolumeSplineKernelTransform, KernelTransform );
00049 
00051   typedef typename Superclass::ScalarType  ScalarType;
00052 
00054   typedef typename Superclass::ParametersType  ParametersType;
00055 
00057   typedef typename Superclass::JacobianType  JacobianType;
00058 
00060   itkStaticConstMacro(SpaceDimension, unsigned int,Superclass::SpaceDimension);
00061 
00064   typedef typename Superclass::InputPointType     InputPointType;
00065   typedef typename Superclass::OutputPointType    OutputPointType;
00066   typedef typename Superclass::InputVectorType    InputVectorType;
00067   typedef typename Superclass::OutputVectorType   OutputVectorType;
00068   typedef typename Superclass::InputCovariantVectorType  
00069                                                   InputCovariantVectorType;
00070   typedef typename Superclass::OutputCovariantVectorType 
00071                                                   OutputCovariantVectorType;
00072   typedef typename Superclass::PointsIterator     PointsIterator;
00073 
00074 
00075 protected:
00076   VolumeSplineKernelTransform() {};
00077   virtual ~VolumeSplineKernelTransform() {}
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   VolumeSplineKernelTransform(const Self&); //purposely not implemented
00101   void operator=(const Self&); //purposely not implemented
00102 
00103 };
00104 
00105 } // namespace itk
00106 
00107 // Define instantiation macro for this template.
00108 #define ITK_TEMPLATE_VolumeSplineKernelTransform(_, EXPORT, x, y) namespace itk { \
00109   _(2(class EXPORT VolumeSplineKernelTransform< ITK_TEMPLATE_2 x >)) \
00110   namespace Templates { typedef VolumeSplineKernelTransform< ITK_TEMPLATE_2 x > \
00111                                                   VolumeSplineKernelTransform##y; } \
00112   }
00113 
00114 #if ITK_TEMPLATE_EXPLICIT
00115 # include "Templates/itkVolumeSplineKernelTransform+-.h"
00116 #endif
00117 
00118 #if ITK_TEMPLATE_TXX
00119 # include "itkVolumeSplineKernelTransform.txx"
00120 #endif
00121 
00122 #endif // __itkVolumeSplineKernelTransform_h
00123 

Generated at Sun Sep 23 14:40:09 2007 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000