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: itkTransformMeshFilter.h,v $
Language: C++
Date: $Date: 2003-09-10 14:28:58 $
Version: $Revision: 1.14 $
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 __itkTransformMeshFilter_h
#define __itkTransformMeshFilter_h
#include "itkMeshToMeshFilter.h"
#include "itkTransform.h"
namespace itk
{
/** \class TransformMeshFilter
* \brief
*
* TransformMeshFilter applies a transform to all the points
* of a mesh.
*
* 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
*/
template <class TInputMesh, class TOutputMesh, class TTransform>
class ITK_EXPORT TransformMeshFilter :
public MeshToMeshFilter<TInputMesh,TOutputMesh>
{
public:
/** Standard class typedefs. */
typedef TransformMeshFilter 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;
/** Type of the transform. */
typedef TTransform TransformType;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(TransformMeshFilter,MeshToMeshFilter);
/** Set transform. */
itkSetObjectMacro(Transform, TransformType);
/** Get transform. */
itkGetObjectMacro(Transform,TransformType);
protected:
TransformMeshFilter();
~TransformMeshFilter() {};
void PrintSelf(std::ostream& os, Indent indent) const;
/** Generate Requested Data */
virtual void GenerateData( void );
/** Transform to apply to all the mesh points. */
typename TransformType::Pointer m_Transform;
private:
TransformMeshFilter(const TransformMeshFilter&); //purposely not implemented
void operator=(const TransformMeshFilter&); //purposely not implemented
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkTransformMeshFilter.txx"
#endif
#endif
|