ITK  4.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions
itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction > Class Template Reference

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. More...

#include <itkInteriorExteriorMeshFilter.h>

Inheritance diagram for itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >:
Collaboration diagram for itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef TInputMesh::CoordRepType CoordRepType
typedef InputMeshType::Pointer InputMeshPointer
typedef TInputMesh InputMeshType
typedef OutputMeshType::Pointer OutputMeshPointer
typedef TOutputMesh OutputMeshType
typedef SmartPointer< SelfPointer
typedef InteriorExteriorMeshFilter Self
typedef
SpatialFunctionDataObjectType::Pointer 
SpatialFunctionDataObjectPointer
typedef DataObjectDecorator
< SpatialFunctionType
SpatialFunctionDataObjectType
typedef TSpatialFunction SpatialFunctionType
typedef MeshToMeshFilter
< TInputMesh, TOutputMesh > 
Superclass

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual const char * GetNameOfClass () const
virtual SpatialFunctionTypeGetSpatialFunction ()
virtual void SetSpatialFunction (SpatialFunctionType *_arg)

Static Public Member Functions

static Pointer New ()

Protected Member Functions

virtual void GenerateData (void)
 InteriorExteriorMeshFilter ()
void PrintSelf (std::ostream &os, Indent indent) const
 ~InteriorExteriorMeshFilter ()
SpatialFunctionType::Pointer m_SpatialFunction
 InteriorExteriorMeshFilter (const InteriorExteriorMeshFilter &)
void operator= (const InteriorExteriorMeshFilter &)

Detailed Description

template<class TInputMesh, class TOutputMesh, class TSpatialFunction>
class itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >

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.

Definition at line 48 of file itkInteriorExteriorMeshFilter.h.


Member Typedef Documentation

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef SmartPointer< const Self > itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::ConstPointer
template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef TInputMesh::CoordRepType itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::CoordRepType

Type for representing coordinates.

Definition at line 64 of file itkInteriorExteriorMeshFilter.h.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef InputMeshType::Pointer itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::InputMeshPointer
template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef TInputMesh itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::InputMeshType

Some convenient typedefs.

Reimplemented from itk::MeshToMeshFilter< TInputMesh, TOutputMesh >.

Definition at line 58 of file itkInteriorExteriorMeshFilter.h.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef OutputMeshType::Pointer itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::OutputMeshPointer
template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef TOutputMesh itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::OutputMeshType
template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef SmartPointer< Self > itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::Pointer
template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef InteriorExteriorMeshFilter itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::Self

Standard class typedefs.

Reimplemented from itk::MeshToMeshFilter< TInputMesh, TOutputMesh >.

Definition at line 53 of file itkInteriorExteriorMeshFilter.h.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef SpatialFunctionDataObjectType::Pointer itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::SpatialFunctionDataObjectPointer

Definition at line 84 of file itkInteriorExteriorMeshFilter.h.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef DataObjectDecorator< SpatialFunctionType > itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::SpatialFunctionDataObjectType

Definition at line 79 of file itkInteriorExteriorMeshFilter.h.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef TSpatialFunction itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::SpatialFunctionType

Type of the transform.

Definition at line 67 of file itkInteriorExteriorMeshFilter.h.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
typedef MeshToMeshFilter< TInputMesh, TOutputMesh > itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::Superclass

Constructor & Destructor Documentation

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::InteriorExteriorMeshFilter ( ) [protected]
template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::~InteriorExteriorMeshFilter ( ) [inline, protected]

Definition at line 87 of file itkInteriorExteriorMeshFilter.h.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::InteriorExteriorMeshFilter ( const InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction > &  ) [private]

Transform applied to all the mesh points.


Member Function Documentation

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
virtual::itk::LightObject::Pointer itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::CreateAnother ( void  ) const [virtual]

Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.

Reimplemented from itk::MeshToMeshFilter< TInputMesh, TOutputMesh >.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
virtual void itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::GenerateData ( void  ) [protected, virtual]

Generate requested data.

Reimplemented from itk::ProcessObject.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
virtual const char* itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::GetNameOfClass ( ) const [virtual]

Run-time type information (and related methods).

Reimplemented from itk::MeshToMeshFilter< TInputMesh, TOutputMesh >.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
virtual SpatialFunctionType* itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::GetSpatialFunction ( ) [virtual]

Get the spatial function.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
static Pointer itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::New ( ) [static]

Method for creation through the object factory.

Reimplemented from itk::MeshToMeshFilter< TInputMesh, TOutputMesh >.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
void itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::operator= ( const InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction > &  ) [private]

Transform applied to all the mesh points.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
void itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [protected, virtual]

Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from itk::MeshSource< TOutputMesh >.

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
virtual void itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::SetSpatialFunction ( SpatialFunctionType _arg) [virtual]

Set the spatial function.


Member Data Documentation

template<class TInputMesh , class TOutputMesh , class TSpatialFunction >
SpatialFunctionType::Pointer itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >::m_SpatialFunction [protected]

Transform applied to all the mesh points.

Definition at line 94 of file itkInteriorExteriorMeshFilter.h.


The documentation for this class was generated from the following file: