1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkWarpMeshFilter.h,v $
Language: C++
Date: $Date: 2004-11-08 22:59:27 $
Version: $Revision: 1.1 $
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 __itkWarpMeshFilter_h
#define __itkWarpMeshFilter_h
#include "itkMeshToMeshFilter.h"
namespace itk
{
/** \class WarpMeshFilter
* \brief
*
* WarpMeshFilter applies a deformation field to all the points of a mesh.
* The deformation field is represented as an image of Vectors.
*
* The additional content of the mesh is passed untouched. Including the
* connectivity and the additional information contained on cells and points.
*
* Meshes that have added information like normal vector on the points, will
* have to take care of transforming this data by other means.
*
* \ingroup MeshFilters
* \sa TransformMeshFilter
*/
template <class TInputMesh, class TOutputMesh, class TDeformationField>
class ITK_EXPORT WarpMeshFilter :
public MeshToMeshFilter<TInputMesh,TOutputMesh>
{
public:
/** Standard class typedefs. */
typedef WarpMeshFilter Self;
typedef MeshToMeshFilter<TInputMesh,TOutputMesh> Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
typedef TInputMesh InputMeshType;
typedef TOutputMesh OutputMeshType;
typedef typename InputMeshType::Pointer InputMeshPointer;
typedef typename OutputMeshType::Pointer OutputMeshPointer;
/** Type for representing coordinates. */
typedef typename TInputMesh::CoordRepType CoordRepType;
/** Deformation field typedef support. */
typedef TDeformationField DeformationFieldType;
typedef typename DeformationFieldType::ConstPointer DeformationFieldPointer;
typedef typename DeformationFieldType::PixelType DisplacementType;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(WarpMeshFilter,MeshToMeshFilter);
/** Set the deformation field. */
void SetDeformationField( const DeformationFieldType * field );
/** Get a pointer the deformation field. */
const DeformationFieldType * GetDeformationField(void) const;
protected:
WarpMeshFilter();
~WarpMeshFilter() {};
void PrintSelf(std::ostream& os, Indent indent) const;
/** Generate Requested Data */
virtual void GenerateData( void );
private:
WarpMeshFilter(const WarpMeshFilter&); //purposely not implemented
void operator=(const WarpMeshFilter&); //purposely not implemented
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkWarpMeshFilter.txx"
#endif
#endif
|