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 98 99 100 101 102 103 104 105 106 107 108 109
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkInteriorExteriorMeshFilter.h,v $
Language: C++
Date: $Date: 2005-06-13 16:31:49 $
Version: $Revision: 1.10 $
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 __itkInteriorExteriorMeshFilter_h
#define __itkInteriorExteriorMeshFilter_h
#include "itkMeshToMeshFilter.h"
#include "itkDataObjectDecorator.h"
namespace itk
{
/** \class InteriorExteriorMeshFilter
* \brief
*
* InteriorExteriorMeshFilter takes an itk::Mesh and extracts from it a Sub-Mesh
* such that all its points Evaluate > 0 in an itk::SpatialFunction provided
* by the user.
*
* This filter is templated over the Input Mesh type, the Output Mesh type
* and the SpatialFunctionType. However the only requirement for the Spatial
* function is to support SmartPointers and to provide an Execute() method,
* along with a typedef for OutputType (for the type returned by Execute() ).
*
* The additional content of the mesh is passed untouched. Including the
* connectivity and the additional information contained on cells and points.
* However, attention should be paid to the cells because some of their points
* could not exist in the output mesh, if they did not satisfy the criterion
* imposed by the spatial function.
*
* \ingroup MeshFilters
*/
template <class TInputMesh, class TOutputMesh, class TSpatialFunction >
class ITK_EXPORT InteriorExteriorMeshFilter :
public MeshToMeshFilter<TInputMesh,TOutputMesh>
{
public:
/** Standard class typedefs. */
typedef InteriorExteriorMeshFilter 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 TSpatialFunction SpatialFunctionType;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(InteriorExteriorMeshFilter,MeshToMeshFilter);
/** Set the spatial function. */
itkSetObjectMacro( SpatialFunction, SpatialFunctionType );
/** Get the spatial function. */
itkGetObjectMacro( SpatialFunction, SpatialFunctionType );
typedef DataObjectDecorator< SpatialFunctionType >
SpatialFunctionDataObjectType;
typedef typename SpatialFunctionDataObjectType::Pointer
SpatialFunctionDataObjectPointer;
protected:
InteriorExteriorMeshFilter();
~InteriorExteriorMeshFilter() {};
void PrintSelf(std::ostream& os, Indent indent) const;
/** Generate requested data. */
virtual void GenerateData( void );
/** Transform applied to all the mesh points. */
typename SpatialFunctionType::Pointer m_SpatialFunction;
private:
InteriorExteriorMeshFilter(const InteriorExteriorMeshFilter&); //purposely not implemented
void operator=(const InteriorExteriorMeshFilter&); //purposely not implemented
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkInteriorExteriorMeshFilter.txx"
#endif
#endif
|