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

itkWarpMeshFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkWarpMeshFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2004/11/08 22:59:27 $
00007   Version:   $Revision: 1.1 $
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 __itkWarpMeshFilter_h
00018 #define __itkWarpMeshFilter_h
00019 
00020 #include "itkMeshToMeshFilter.h"
00021 
00022 namespace itk
00023 {
00024 
00040 template <class TInputMesh, class TOutputMesh, class TDeformationField>
00041 class ITK_EXPORT WarpMeshFilter : 
00042     public MeshToMeshFilter<TInputMesh,TOutputMesh>
00043 {
00044 public:
00046   typedef WarpMeshFilter  Self;
00047   typedef MeshToMeshFilter<TInputMesh,TOutputMesh> Superclass;
00048   typedef SmartPointer<Self>  Pointer;
00049   typedef SmartPointer<const Self>  ConstPointer;
00050 
00051   typedef TInputMesh InputMeshType;
00052   typedef TOutputMesh OutputMeshType;
00053   typedef typename InputMeshType::Pointer InputMeshPointer;
00054   typedef typename OutputMeshType::Pointer OutputMeshPointer;
00055   
00057   typedef typename TInputMesh::CoordRepType  CoordRepType;
00058 
00060   typedef TDeformationField    DeformationFieldType;
00061   typedef typename DeformationFieldType::ConstPointer  DeformationFieldPointer;
00062   typedef typename DeformationFieldType::PixelType DisplacementType;
00063 
00065   itkNewMacro(Self);
00066 
00068   itkTypeMacro(WarpMeshFilter,MeshToMeshFilter);
00069 
00071   void SetDeformationField( const DeformationFieldType * field );
00072 
00074   const DeformationFieldType * GetDeformationField(void) const;
00075 
00076 
00077 protected:
00078   WarpMeshFilter();
00079   ~WarpMeshFilter() {};
00080   void PrintSelf(std::ostream& os, Indent indent) const;
00081   
00083   virtual void GenerateData( void );
00084 
00085 private:
00086   WarpMeshFilter(const WarpMeshFilter&); //purposely not implemented
00087   void operator=(const WarpMeshFilter&); //purposely not implemented
00088   
00089 };
00090 
00091 } // end namespace itk
00092 
00093 #ifndef ITK_MANUAL_INSTANTIATION
00094 #include "itkWarpMeshFilter.txx"
00095 #endif
00096 
00097 #endif
00098 

Generated at Tue Jul 29 23:53:59 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000