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

itk::AutomaticTopologyMeshSource< TOutputMesh > Class Template Reference

#include <itkAutomaticTopologyMeshSource.h>

Inheritance diagram for itk::AutomaticTopologyMeshSource< TOutputMesh >:

Inheritance graph
[legend]
Collaboration diagram for itk::AutomaticTopologyMeshSource< TOutputMesh >:

Collaboration graph
[legend]
List of all members.

Detailed Description

template<class TOutputMesh>
class itk::AutomaticTopologyMeshSource< TOutputMesh >

Convenience class for generating meshes.

This generates an N-dimensional mesh consisting of some combination of vertices, line segments, triangles, quadrilaterals, tetrahedra, and hexahedra. Identifiers for the cells are automatically added, and topological connectivity is automatically computed. When a cell is added, all of its boundary features are determined and added as well.

The main methods are of the form AddThing, where Thing can be Point, Vertex, Triangle, Quadrilateral, Tetrahedron, or Hexahedron. Each of these methods has several overloaded forms, permitting multiple ways to specify the object being added. When called, each of these methods first checks to see if the object has already been added. If it has not, then a new identifier is generated (the smallest one so far unused), the object is added with that identifier, and the ID is returned. If the object has already been added, then the ID it already has is returned and nothing else is done.

When a cell is added, all of its boundary elements are also added, and boundary assignments are set. A cell can be specified using IDs of points already added, or using Point objects that may or may not already be in the mesh. If a cell is specified using Point objects, then the points are added to the mesh if necessary.

The different ways of specifying a cell are

  1. An IdentifierArrayType (= itk::Array<IdentifierType>) of point identifiers. These point identifiers are the ones returned by calls to AddPoint().
  2. A parameter list of point identifiers (for instance, this->AddLine(0, 1), if 0 and 1 are point identifiers).
  3. A parameter list of itk::Point objects (the function then generates the identifiers).
  4. A parameter list of C-style arrays, with each such array giving the coordinates of one point. This form is useful for copying in geometry from foreign data structures.

For meshes generated using this filter, only one cell can be added for any given set of vertices. If a, b, c, and d are identifiers for four points in R^3, then (a, b, c, d) and (a, c, d, b) determine two different quadrilaterals (at least one of which is either degenerate or nonplanar). If you call AddQuadrilateral(a, b, c, d); AddQuadrilateral(a, c, d, b); then only the first quadrilateral will actually be added.

To add the topological information to an already constructed mesh (for efficiency of traversal), use this class to generate a copy of the original mesh.

Example: The following code generates a mesh consisting of two triangles sharing an edge.

  typedef itk::AutomaticTopologyMeshSource< MeshType >  MeshSourceType;
  MeshSourceType::Pointer meshSource = MeshSourceType::New();
  meshSource->AddTriangle(
    meshSource->AddPoint(0, 0, 0),
    meshSource->AddPoint(1, 0, 0),
    meshSource->AddPoint(0, 1, 0) );
  meshSource->AddTriangle(
    meshSource->AddPoint(0, 0, 0),
    meshSource->AddPoint(1, 0, 0),
    meshSource->AddPoint(0, 0, 1) );

This class inherits from itk::MeshSource so it fits conveniently into a pipeline, but GetOutput() is always valid after every Add[Something]() call, and Update() is a no-op. It is not thread safe.

Definition at line 111 of file itkAutomaticTopologyMeshSource.h.

Public Types

typedef CellType::CellAutoPointer CellAutoPointer
typedef MeshType::CellType CellType
typedef SmartPointer< const
Self
ConstPointer
typedef PointType::CoordRepType CoordinateType
typedef DataObject::Pointer DataObjectPointer
typedef std::vector< DataObjectPointerDataObjectPointerArray
typedef HexahedronCell< CellTypeHexahedronCell
typedef Array< IdentifierTypeIdentifierArrayType
typedef unsigned long IdentifierType
typedef LineCell< CellTypeLineCell
typedef MeshType::Pointer MeshPointer
typedef TOutputMesh MeshType
typedef OutputMeshType::Pointer OutputMeshPointer
typedef TOutputMesh OutputMeshType
typedef SmartPointer< SelfPointer
typedef itk::hash_map< PointType,
IdentifierType, StructHashFunction<
PointType > > 
PointHashMap
typedef MeshType::PointType PointType
typedef QuadrilateralCell<
CellType
QuadrilateralCell
typedef AutomaticTopologyMeshSource Self
typedef MeshSource< TOutputMesh > Superclass
typedef TetrahedronCell< CellTypeTetrahedronCell
typedef TriangleCell< CellTypeTriangleCell
typedef VertexCell< CellTypeVertexCell

Public Member Functions

virtual void AbortGenerateDataOff ()
virtual void AbortGenerateDataOn ()
IdentifierType AddHexahedron (const CoordinateType *p0, const CoordinateType *p1, const CoordinateType *p2, const CoordinateType *p3, const CoordinateType *p4, const CoordinateType *p5, const CoordinateType *p6, const CoordinateType *p7)
IdentifierType AddHexahedron (const PointType &p0, const PointType &p1, const PointType &p2, const PointType &p3, const PointType &p4, const PointType &p5, const PointType &p6, const PointType &p7)
IdentifierType AddHexahedron (IdentifierType pointId0, IdentifierType pointId1, IdentifierType pointId2, IdentifierType pointId3, IdentifierType pointId4, IdentifierType pointId5, IdentifierType pointId6, IdentifierType pointId7)
IdentifierType AddLine (const CoordinateType *p0, const CoordinateType *p1)
IdentifierType AddLine (const PointType &p0, const PointType &p1)
IdentifierType AddLine (IdentifierType pointId0, IdentifierType pointId1)
Add the line specified by
the two and return its ID
*The endpoints and their associated
vertices are associated to
the *line in the order that
they are specified the first
time the *function is called
*IdentifierType 
AddLine (const IdentifierArrayType &pointIds)
IdentifierType AddPoint (CoordinateType x0=0, CoordinateType x1=0, CoordinateType x2=0, CoordinateType x3=0, CoordinateType x4=0, CoordinateType x5=0)
IdentifierType AddPoint (const CoordinateType *p0)
Add the point p0 if it s not
already and return its ID
*IdentifierType 
AddPoint (const PointType &p0)
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 p7 **In if
the points are connected topologically
as follows verbatim p4 p5
p0 p1 p2 p3 p6 p7 endverbatim
*then you would for *< tt
> meshSource 
AddQuadrilateral (p0, p1, p2, p3, p4, p5, p6,*p7)</tt >.*/IdentifierType AddHexahedron(const IdentifierArrayType &pointIds)
IdentifierType AddQuadrilateral (const CoordinateType *p0, const CoordinateType *p1, const CoordinateType *p2, const CoordinateType *p3)
IdentifierType AddQuadrilateral (const PointType &p0, const PointType &p1, const PointType &p2, const PointType &p3)
IdentifierType AddQuadrilateral (IdentifierType pointId0, IdentifierType pointId1, IdentifierType pointId2, IdentifierType pointId3)
IdentifierType AddQuadrilateral (const IdentifierArrayType &pointIds)
IdentifierType AddTetrahedron (const CoordinateType *p0, const CoordinateType *p1, const CoordinateType *p2, const CoordinateType *p3)
IdentifierType AddTetrahedron (const PointType &p0, const PointType &p1, const PointType &p2, const PointType &p3)
IdentifierType AddTetrahedron (IdentifierType pointId0, IdentifierType pointId1, IdentifierType pointId2, IdentifierType pointId3)
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 *p3
**IdentifierType 
AddTetrahedron (const IdentifierArrayType &pointIds)
IdentifierType AddTriangle (const CoordinateType *p0, const CoordinateType *p1, const CoordinateType *p2)
IdentifierType AddTriangle (const PointType &p0, const PointType &p1, const PointType &p2)
IdentifierType AddTriangle (IdentifierType pointId0, IdentifierType pointId1, IdentifierType pointId2)
Add the triangle specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p2 p0 **IdentifierType 
AddTriangle (const IdentifierArrayType &pointIds)
IdentifierType AddVertex (const CoordinateType *p0)
IdentifierType AddVertex (const PointType &p0)
IdentifierType AddVertex (IdentifierType pointId0)
Add a vertex located at the
given and return its ID *IdentifierType 
AddVertex (const IdentifierArrayType &pointIds)
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional 
cells (represented here as ordered tuples) are created *(if they don't already exist) and associated as boundaries
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional 
cells (represented here as ordered tuples) are created *(if they don't already exist) and associated as boundaries
Add the triangle specified
by the three and return its
*ID If the points are and
then the following *additional 
cells (represented here as ordered tuples) are created *(if they don't already exist) and associated as boundaries
virtual LightObject::Pointer CreateAnother () const
virtual void DebugOff () const
virtual void DebugOn () const
virtual void Delete ()
virtual void EnlargeOutputRequestedRegion (DataObject *)
virtual const bool & GetAbortGenerateData ()
CommandGetCommand (unsigned long tag)
bool GetDebug () const
DataObjectPointerArrayGetInputs ()
const MetaDataDictionaryGetMetaDataDictionary (void) const
MetaDataDictionaryGetMetaDataDictionary (void)
virtual unsigned long GetMTime () const
MultiThreaderGetMultiThreader ()
virtual const char * GetNameOfClass () const
std::vector< DataObjectPointer
>::size_type 
GetNumberOfInputs () const
std::vector< DataObjectPointer
>::size_type 
GetNumberOfOutputs () const
virtual const int & GetNumberOfThreads ()
virtual std::vector< DataObjectPointer
>::size_type 
GetNumberOfValidRequiredInputs () const
OutputMeshTypeGetOutput (unsigned int idx)
Get the mesh output of this
process object *OutputMeshType
GetOutput (void)
Return an array with all the
outputs of this process object
*This is useful for tracing
forward in the pipeline to
contruct *graphs etc *DataObjectPointerArray
GetOutputs ()
virtual const float & GetProgress ()
virtual int GetReferenceCount () const
virtual const bool & GetReleaseDataBeforeUpdateFlag ()
virtual bool GetReleaseDataFlag () const
virtual void GraftNthOutput (unsigned int idx, DataObject *output)
****this GraftOutput (lastFilterInMiniPipeline->GetOutput())
****lastFilterInMiniPipeline GraftOutput (this->GetOutput())
bool HasObserver (const EventObject &event) const
void InvokeEvent (const EventObject &) const
void InvokeEvent (const EventObject &)
 itkStaticConstMacro (MaxTopologicalDimension, unsigned int, MeshType::MaxTopologicalDimension)
The dimension of the output
mesh * 
itkStaticConstMacro (PointDimension, unsigned int, MeshType::PointDimension)
Graft the specified DataObject
onto this ProcessObject s
output *This method grabs
a handle to the specified
DataObject s bulk *data to
used as its output s own bulk
data It also copies the *region 
ivars (RequestedRegion, BufferedRegion,*LargestPossibleRegion) and meta-data(Spacing
virtual DataObjectPointer MakeOutput (unsigned int idx)
virtual void Modified () const
virtual void PrepareOutputs ()
void Print (std::ostream &os, Indent indent=0) const
virtual void PropagateRequestedRegion (DataObject *output)
virtual void Register () const
virtual void ReleaseDataBeforeUpdateFlagOff ()
virtual void ReleaseDataBeforeUpdateFlagOn ()
void ReleaseDataFlagOff ()
void ReleaseDataFlagOn ()
void RemoveAllObservers ()
void RemoveObserver (unsigned long tag)
virtual void ResetPipeline ()
virtual void SetAbortGenerateData (bool _arg)
void SetDebug (bool debugFlag) const
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
Get Set the number of threads
to create when executing
*virtual void 
SetNumberOfThreads (int _arg)
void SetOutput (TOutputMesh *output)
virtual void SetProgress (float _arg)
virtual void SetReferenceCount (int)
Turn on off the flags to control
whether the bulk data belonging
*to the outputs of this ProcessObject
are released after being
*used by a downstream ProcessObject
Default value is off Another
*options for controlling memory
utilization is the *ReleaseDataBeforeUpdateFlag
*virtual void 
SetReleaseDataFlag (bool flag)
virtual void UnRegister () const
***lastFilterInMiniPipeline Update ()
virtual void UpdateLargestPossibleRegion ()
virtual void UpdateOutputData (DataObject *output)
virtual void UpdateOutputInformation ()
void UpdateProgress (float amount)

Static Public Member Functions

static void BreakOnError ()
static bool GetGlobalWarningDisplay ()
static void GlobalWarningDisplayOff ()
static void GlobalWarningDisplayOn ()
static Pointer New ()
This is a global flag that
controls whether any warning
*or error messages are displayed
*static void 
SetGlobalWarningDisplay (bool flag)

Public Attributes

Allow people to add remove
invoke observers(callbacks)
to any ITK *object.This is
an implementation of the subject/observer design *pattern.An
observer is added by specifying
an event to respond to *and
an itk unsigned lon 
AddObserver )(const EventObject &event, Command *) const
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 p7 **In if
the points are connected topologically
as follows verbatim p4 p5
p0 p1 p2 p3 p6 p7 endverbatim
*then you would 
call
This is a global flag that
controls whether any 
debug
*endcode **For proper pipeline execution
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order 
given: * * Vertices: (p0)
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order 
given: * * Vertices: (p0)
Add the triangle specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order 
given: * * Vertices: (p0)
Graft the specified DataObject
onto this ProcessObject s
output *This method grabs
a handle to the specified
DataObject s bulk *data to
used as its output s own bulk
data It also copies the *region
Origin from the *specified
data object into this filter
s output data object Most 
however
Graft the specified DataObject
onto this ProcessObject s
output *This method grabs
a handle to the specified
DataObject s bulk *data to
used as its output s own bulk
data It also copies the *region
Origin from the *specified
data object into this filter
s output data object Most * 
importantly
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 p7 **In if
the points are connected topologically
as follows verbatim p4 p5
p0 p1 p2 p3 p6 p7 endverbatim
*then you would for 
instance
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 ** 
Lines: (p0
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 ** 
Lines: (p0
Add the triangle specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p2 ** 
Lines: (p0
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p0
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p0
Add the hexahedron specified
by the four and return its
*ID If the points are 
p0
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 
p0
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 
p0
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 
p0
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 
p0
Add the tetrahedron specified
by the three and return its
*ID If the points are 
p0
Add the triangle specified
by the three and return its
*ID If the points are 
p0
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p1
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p1
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p1
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order 
p1
Add the hexahedron specified
by the four and return its
*ID If the points are 
p1
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 
p1
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 
p1
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 
p1
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 
p1
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 
p1
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 
p1
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order 
p1
Add the tetrahedron specified
by the three and return its
*ID If the points are 
p1
Add the triangle specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p2 
p1
Add the triangle specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p2 
p1
Add the triangle specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order 
p1
Add the triangle specified
by the three and return its
*ID If the points are 
p1
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p2
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p2
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p2
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order 
p2
Add the hexahedron specified
by the four and return its
*ID If the points are 
p2
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 
p2
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 
p2
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 
p2
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 
p2
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 
p2
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 
p2
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order 
p2
Add the tetrahedron specified
by the three and return its
*ID If the points are and 
p2
Add the triangle specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p2 
p2
Add the triangle specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p2 
p2
Add the triangle specified
by the three and return its
*ID If the points are and 
p2
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p3
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7
p3
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p3
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order 
p3
Add the hexahedron specified
by the four and return its
*ID If the points are and 
p3
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 
p3
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 
p3
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 
p3
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 
p3
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p4
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p4
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p4
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order 
p4
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p5
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p5
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p5
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order 
p5
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p6
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p6
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p6
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order 
p6
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p7
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 
p7
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 p7 **In 
particular
Add a vertex located at the
given 
point
Add the hexahedron specified
by the four 
points
Add the tetrahedron specified
by the three 
points
Add the triangle specified
by the three 
points
Add the line specified by
the two 
points
Add the hexahedron specified
by the four and return its
*ID If the points are and
then the following *additional
in *the order p7 p7 ** 
Quadrilaterals: (0
Add the point p0 if it s not
already 
there
Add the tetrahedron specified
by the three and return its
*ID If the points are and
then the following *additional
in *the order p3 p3 ** 
Triangles: (p0

Protected Member Functions

virtual void AddInput (DataObject *input)
virtual void AddOutput (DataObject *output)
 AutomaticTopologyMeshSource ()
virtual void CacheInputReleaseDataFlags ()
void GenerateData ()
void GenerateInputRequestedRegion ()
virtual void GenerateOutputInformation ()
virtual void GenerateOutputRequestedRegion (DataObject *output)
const DataObjectGetInput (unsigned int idx) const
Method used internally for
getting an input *DataObject
GetInput (unsigned int idx)
virtual const unsigned int & GetNumberOfRequiredInputs ()
virtual const unsigned int & GetNumberOfRequiredOutputs ()
const DataObjectGetOutput (unsigned int idx) const
virtual void PopBackInput ()
virtual void PopFrontInput ()
bool PrintObservers (std::ostream &os, Indent indent) const
void PrintSelf (std::ostream &os, Indent indent) const
virtual void PrintTrailer (std::ostream &os, Indent indent) const
virtual void PropagateResetPipeline ()
Push Pop an input of this
process object These methods
allow a *filter to model its
input vector as a queue or
stack These *routines may
not be appropriate for all
especially *filters with different
types of inputs These routines
follow *the semantics of STL
*virtual void 
PushBackInput (const DataObject *input)
virtual void PushFrontInput (const DataObject *input)
virtual void ReleaseInputs ()
virtual void RemoveInput (DataObject *input)
virtual void RemoveOutput (DataObject *output)
virtual void RestoreInputReleaseDataFlags ()
Protected methods for setting
inputs *Subclasses make use
of them for setting input
*virtual void 
SetNthInput (unsigned int num, DataObject *input)
Protected methods for setting
outputs *Subclasses make use
of them for getting output
*virtual void 
SetNthOutput (unsigned int num, DataObject *output)
void SetNumberOfInputs (unsigned int num)
void SetNumberOfOutputs (unsigned int num)
virtual void SetNumberOfRequiredInputs (unsigned int _arg)
virtual void SetNumberOfRequiredOutputs (unsigned int _arg)
 ~AutomaticTopologyMeshSource ()

Protected Attributes

Push Pop an input of this
process object These methods
allow a *filter to model its
input vector as a queue or
stack These *routines may
not be appropriate for all 
filters
TimeStamp m_OutputInformationMTime
int m_ReferenceCount
SimpleFastMutexLock m_ReferenceCountLock
bool m_Updating
Methods invoked by virtual
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.*/virtual
void PrintSelf(std voi 
PrintHeader )(std::ostream &os, Indent indent) const

Classes

class  IdentifierArrayEqualsFunction
class  IdentifierArrayHashFunction


Member Typedef Documentation

template<class TOutputMesh>
typedef CellType::CellAutoPointer itk::AutomaticTopologyMeshSource< TOutputMesh >::CellAutoPointer
 

Definition at line 126 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef MeshType::CellType itk::AutomaticTopologyMeshSource< TOutputMesh >::CellType
 

Definition at line 123 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef SmartPointer<const Self> itk::AutomaticTopologyMeshSource< TOutputMesh >::ConstPointer
 

Reimplemented from itk::MeshSource< TOutputMesh >.

Definition at line 118 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef PointType::CoordRepType itk::AutomaticTopologyMeshSource< TOutputMesh >::CoordinateType
 

Definition at line 125 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef DataObject::Pointer itk::MeshSource< TOutputMesh >::DataObjectPointer [inherited]
 

Some convenient typedefs.

Reimplemented from itk::ProcessObject.

Reimplemented in itk::SpatialObjectToPointSetFilter< TInputSpatialObject, TOutputPointSet >.

Definition at line 56 of file itkMeshSource.h.

typedef std::vector<DataObjectPointer> itk::ProcessObject::DataObjectPointerArray [inherited]
 

STL Array of SmartPointers to DataObjects

Definition at line 103 of file itkProcessObject.h.

template<class TOutputMesh>
typedef HexahedronCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::HexahedronCell
 

Definition at line 134 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef Array< IdentifierType > itk::AutomaticTopologyMeshSource< TOutputMesh >::IdentifierArrayType
 

Array of IdentifierType objects used to specify cells.

Definition at line 141 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef unsigned long itk::AutomaticTopologyMeshSource< TOutputMesh >::IdentifierType
 

This class requires that the mesh being built use unsigned long as the identifier type for all its elements.

Definition at line 138 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef LineCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::LineCell
 

Definition at line 130 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef MeshType::Pointer itk::AutomaticTopologyMeshSource< TOutputMesh >::MeshPointer
 

Definition at line 124 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef TOutputMesh itk::AutomaticTopologyMeshSource< TOutputMesh >::MeshType
 

Hold on to the type information specified by the template parameters.

Definition at line 121 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef OutputMeshType::Pointer itk::MeshSource< TOutputMesh >::OutputMeshPointer [inherited]
 

Reimplemented in itk::BalloonForceFilter< TInputMesh, TOutputMesh >, itk::BinaryMask3DMeshSource< TInputImage, TOutputMesh >, itk::ConnectedRegionsMeshFilter< TInputMesh, TOutputMesh >, itk::DeformableMesh3DFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DBalloonForceFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DGradientConstraintForceFilter, itk::RegularSphereMeshSource< TOutputMesh >, itk::SphereMeshSource< TOutputMesh >, itk::BinaryMaskToNarrowBandPointSetFilter< TInputImage, TOutputMesh >, itk::ImageToMeshFilter< TInputImage, TOutputMesh >, itk::ImageToParametricSpaceFilter< TInputImage, TOutputMesh >, itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >, itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >, itk::SimplexMeshAdaptTopologyFilter< TInputMesh, TOutputMesh >, itk::TransformMeshFilter< TInputMesh, TOutputMesh, TTransform >, itk::TriangleMeshToSimplexMeshFilter< TInputMesh, TOutputMesh >, and itk::WarpMeshFilter< TInputMesh, TOutputMesh, TDeformationField >.

Definition at line 61 of file itkMeshSource.h.

template<class TOutputMesh>
typedef TOutputMesh itk::MeshSource< TOutputMesh >::OutputMeshType [inherited]
 

Reimplemented in itk::BalloonForceFilter< TInputMesh, TOutputMesh >, itk::BinaryMask3DMeshSource< TInputImage, TOutputMesh >, itk::ConnectedRegionsMeshFilter< TInputMesh, TOutputMesh >, itk::DeformableMesh3DFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DBalloonForceFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DGradientConstraintForceFilter, itk::RegularSphereMeshSource< TOutputMesh >, itk::SphereMeshSource< TOutputMesh >, itk::BinaryMaskToNarrowBandPointSetFilter< TInputImage, TOutputMesh >, itk::ImageToMeshFilter< TInputImage, TOutputMesh >, itk::ImageToParametricSpaceFilter< TInputImage, TOutputMesh >, itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >, itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >, itk::SimplexMeshAdaptTopologyFilter< TInputMesh, TOutputMesh >, itk::TransformMeshFilter< TInputMesh, TOutputMesh, TTransform >, and itk::WarpMeshFilter< TInputMesh, TOutputMesh, TDeformationField >.

Definition at line 60 of file itkMeshSource.h.

template<class TOutputMesh>
typedef SmartPointer<Self> itk::AutomaticTopologyMeshSource< TOutputMesh >::Pointer
 

Reimplemented from itk::MeshSource< TOutputMesh >.

Definition at line 117 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef itk::hash_map< PointType, IdentifierType, StructHashFunction< PointType > > itk::AutomaticTopologyMeshSource< TOutputMesh >::PointHashMap
 

hash_map typedefs.

Definition at line 148 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef MeshType::PointType itk::AutomaticTopologyMeshSource< TOutputMesh >::PointType
 

Definition at line 122 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef QuadrilateralCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::QuadrilateralCell
 

Definition at line 132 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef AutomaticTopologyMeshSource itk::AutomaticTopologyMeshSource< TOutputMesh >::Self
 

Standard "Self" typedef.

Reimplemented from itk::MeshSource< TOutputMesh >.

Definition at line 115 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef MeshSource<TOutputMesh> itk::AutomaticTopologyMeshSource< TOutputMesh >::Superclass
 

Reimplemented from itk::MeshSource< TOutputMesh >.

Definition at line 116 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef TetrahedronCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::TetrahedronCell
 

Definition at line 133 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef TriangleCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::TriangleCell
 

Definition at line 131 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef VertexCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::VertexCell
 

Different kinds of cells.

Definition at line 129 of file itkAutomaticTopologyMeshSource.h.


Constructor & Destructor Documentation

template<class TOutputMesh>
itk::AutomaticTopologyMeshSource< TOutputMesh >::AutomaticTopologyMeshSource  )  [protected]
 

template<class TOutputMesh>
itk::AutomaticTopologyMeshSource< TOutputMesh >::~AutomaticTopologyMeshSource  )  [protected]
 


Member Function Documentation

virtual void itk::ProcessObject::AbortGenerateDataOff  )  [virtual, inherited]
 

virtual void itk::ProcessObject::AbortGenerateDataOn  )  [virtual, inherited]
 

Turn on and off the AbortGenerateData flag.

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddHexahedron const CoordinateType p0,
const CoordinateType p1,
const CoordinateType p2,
const CoordinateType p3,
const CoordinateType p4,
const CoordinateType p5,
const CoordinateType p6,
const CoordinateType p7
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddHexahedron const PointType p0,
const PointType p1,
const PointType p2,
const PointType p3,
const PointType p4,
const PointType p5,
const PointType p6,
const PointType p7
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddHexahedron IdentifierType  pointId0,
IdentifierType  pointId1,
IdentifierType  pointId2,
IdentifierType  pointId3,
IdentifierType  pointId4,
IdentifierType  pointId5,
IdentifierType  pointId6,
IdentifierType  pointId7
 

virtual void itk::ProcessObject::AddInput DataObject input  )  [protected, virtual, inherited]
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddLine const CoordinateType p0,
const CoordinateType p1
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddLine const PointType p0,
const PointType p1
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddLine IdentifierType  pointId0,
IdentifierType  pointId1
 

template<class TOutputMesh>
Add the line specified by the two and return its ID* The endpoints and their associated vertices are associated to the* line in the order that they are specified the first time the* function is called* IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddLine const IdentifierArrayType pointIds  ) 
 

virtual void itk::ProcessObject::AddOutput DataObject output  )  [protected, virtual, inherited]
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddPoint CoordinateType  x0 = 0,
CoordinateType  x1 = 0,
CoordinateType  x2 = 0,
CoordinateType  x3 = 0,
CoordinateType  x4 = 0,
CoordinateType  x5 = 0
 

Add the point with coordinates (x0, ..., xN) where N = PointDimension - 1. If N < 5, then any parameters after xN are ignored. If PointDimension > 6, then a point is generated with the first six coordinates equal to x0, ..., x5, and the rest set to 0.

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddPoint const CoordinateType p0  ) 
 

template<class TOutputMesh>
Add the point p0 if it s not already and return its ID* IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddPoint const PointType p0  ) 
 

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 p7 * * In if the points are connected topologically as follows verbatim p4 p5 p0 p1 p2 p3 p6 p7 endverbatim* then you would for *<tt> meshSource itk::AutomaticTopologyMeshSource< TOutputMesh >::AddQuadrilateral p0  ,
p1  ,
p2  ,
p3  ,
p4  ,
p5  ,
p6  ,
p7
const
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddQuadrilateral const CoordinateType p0,
const CoordinateType p1,
const CoordinateType p2,
const CoordinateType p3
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddQuadrilateral const PointType p0,
const PointType p1,
const PointType p2,
const PointType p3
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddQuadrilateral IdentifierType  pointId0,
IdentifierType  pointId1,
IdentifierType  pointId2,
IdentifierType  pointId3
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddQuadrilateral const IdentifierArrayType pointIds  ) 
 

Add the quadrilateral specified by the four points, and return its ID. If the points are p0, p1, p2, and p3, then the following additional cells (represented here as ordered tuples) are created (if they don't already exist) and associated as boundaries, in the order given:

Vertices: (p0), (p1), (p2), (p3).

Lines: (p0, p1), (p2, p3), (p0, p2), (p1, p3).

In particular, if the points are arranged geometrically as follows

     p0  p1

     p2  p3
   

then you would call, for instance, meshSource->AddQuadrilateral(p0, p1, p2, p3).

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddTetrahedron const CoordinateType p0,
const CoordinateType p1,
const CoordinateType p2,
const CoordinateType p3
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddTetrahedron const PointType p0,
const PointType p1,
const PointType p2,
const PointType p3
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddTetrahedron IdentifierType  pointId0,
IdentifierType  pointId1,
IdentifierType  pointId2,
IdentifierType  pointId3
 

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 * p3* * IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddTetrahedron const IdentifierArrayType pointIds  ) 
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddTriangle const CoordinateType p0,
const CoordinateType p1,
const CoordinateType p2
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddTriangle const PointType p0,
const PointType p1,
const PointType p2
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddTriangle IdentifierType  pointId0,
IdentifierType  pointId1,
IdentifierType  pointId2
 

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are and then the following* additional in* the order p2 p0* * IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddTriangle const IdentifierArrayType pointIds  ) 
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddVertex const CoordinateType p0  ) 
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddVertex const PointType p0  ) 
 

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddVertex IdentifierType  pointId0  ) 
 

template<class TOutputMesh>
Add a vertex located at the given and return its ID* IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddVertex const IdentifierArrayType pointIds  ) 
 

static void itk::LightObject::BreakOnError  )  [static, inherited]
 

This method is called when itkExceptionMacro executes. It allows the debugger to break on error.

virtual void itk::ProcessObject::CacheInputReleaseDataFlags  )  [protected, virtual, inherited]
 

Cache the state of any ReleaseDataFlag's on the inputs. While the filter is executing, we need to set the ReleaseDataFlag's on the inputs to false in case the current filter is implemented using a mini-pipeline (which will try to release the inputs). After the filter finishes, we restore the state of the ReleaseDataFlag's before the call to ReleaseInputs().

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional itk::AutomaticTopologyMeshSource< TOutputMesh >::cells represented here as ordered  tuples  ) 
 

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional itk::AutomaticTopologyMeshSource< TOutputMesh >::cells represented here as ordered  tuples  ) 
 

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are and then the following* additional itk::AutomaticTopologyMeshSource< TOutputMesh >::cells represented here as ordered  tuples  ) 
 

virtual LightObject::Pointer itk::Object::CreateAnother  )  const [virtual, inherited]
 

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::LightObject.

virtual void itk::Object::DebugOff  )  const [virtual, inherited]
 

Turn debugging output off.

virtual void itk::Object::DebugOn  )  const [virtual, inherited]
 

Turn debugging output on.

virtual void itk::LightObject::Delete  )  [virtual, inherited]
 

Delete an itk object. This method should always be used to delete an object when the new operator was used to create it. Using the C delete method will not work with reference counting.

virtual void itk::ProcessObject::EnlargeOutputRequestedRegion DataObject  )  [inline, virtual, inherited]
 

Give the process object a chance to indictate that it will produce more output than it was requested to produce. For example, many imaging filters must compute the entire output at once or can only produce output in complete slices. Such filters cannot handle smaller requested regions. These filters must provide an implementation of this method, setting the output requested region to the size they will produce. By default, a process object does not modify the size of the output requested region.

Reimplemented in itk::CurvatureFlowImageFilter< TInputImage, TOutputImage >, itk::ExtensionVelocitiesImageFilter< TLevelSet, TAuxValue, VAuxDimension >, itk::FastMarchingExtensionImageFilter< TLevelSet, TAuxValue, VAuxDimension, TSpeedImage >, itk::FastMarchingImageFilter< TLevelSet, TSpeedImage >, itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >, itk::IsoContourDistanceImageFilter< TInputImage, TOutputImage >, itk::IsolatedWatershedImageFilter< TInputImage, TOutputImage >, itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >, itk::MRFImageFilter< TInputImage, TClassifiedImage >, itk::MultiResolutionPDEDeformableRegistration< TFixedImage, TMovingImage, TDeformationField >, itk::ReinitializeLevelSetImageFilter< TLevelSet >, itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >, itk::WatershedImageFilter< TInputImage >, itk::BlackTopHatImageFilter< TInputImage, TOutputImage, TKernel >, itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >, itk::ClosingByReconstructionImageFilter< TInputImage, TOutputImage, TKernel >, itk::ConfidenceConnectedImageFilter< TInputImage, TOutputImage >, itk::ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::ConnectedThresholdImageFilter< TInputImage, TOutputImage >, itk::ContourDirectedMeanDistanceImageFilter< TInputImage1, TInputImage2 >, itk::ContourMeanDistanceImageFilter< TInputImage1, TInputImage2 >, itk::DirectedHausdorffDistanceImageFilter< TInputImage1, TInputImage2 >, itk::DoubleThresholdImageFilter< TInputImage, TOutputImage >, itk::ExtractOrthogonalSwath2DImageFilter< TImage >, itk::GradientMagnitudeRecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::GradientRecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::GrayscaleConnectedClosingImageFilter< TInputImage, TOutputImage >, itk::GrayscaleConnectedOpeningImageFilter< TInputImage, TOutputImage >, itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >, itk::GrayscaleGeodesicDilateImageFilter< TInputImage, TOutputImage >, itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >, itk::GrayscaleGrindPeakImageFilter< TInputImage, TOutputImage >, itk::GrayscaleMorphologicalClosingImageFilter< TInputImage, TOutputImage, TKernel >, itk::GrayscaleMorphologicalOpeningImageFilter< TInputImage, TOutputImage, TKernel >, itk::HausdorffDistanceImageFilter< TInputImage1, TInputImage2 >, itk::HConcaveImageFilter< TInputImage, TOutputImage >, itk::HConvexImageFilter< TInputImage, TOutputImage >, itk::HessianRecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::HMaximaImageFilter< TInputImage, TOutputImage >, itk::HMinimaImageFilter< TInputImage, TOutputImage >, itk::HoughTransform2DCirclesImageFilter< TInputPixelType, TOutputPixelType >, itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >, itk::ImportImageFilter< TPixel, VImageDimension >, itk::IsolatedConnectedImageFilter< TInputImage, TOutputImage >, itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >, itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::MinimumMaximumImageFilter< TInputImage >, itk::NeighborhoodConnectedImageFilter< TInputImage, TOutputImage >, itk::OpeningByReconstructionImageFilter< TInputImage, TOutputImage, TKernel >, itk::OrientImageFilter< TInputImage, TOutputImage >, itk::ReconstructionByDilationImageFilter< TInputImage, TOutputImage >, itk::ReconstructionByErosionImageFilter< TInputImage, TOutputImage >, itk::RecursiveSeparableImageFilter< TInputImage, TOutputImage >, itk::RegionOfInterestImageFilter< TInputImage, TOutputImage >, itk::SimilarityIndexImageFilter< TInputImage1, TInputImage2 >, itk::SmoothingRecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::StatisticsImageFilter< TInputImage >, itk::TobogganImageFilter< TInputImage >, itk::VectorConfidenceConnectedImageFilter< TInputImage, TOutputImage >, itk::WhiteTopHatImageFilter< TInputImage, TOutputImage, TKernel >, itk::ImageFileReader< TOutputImage, ConvertPixelTraits >, itk::ImageSeriesReader< TOutputImage >, and itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage >.

Definition at line 222 of file itkProcessObject.h.

template<class TOutputMesh>
void itk::AutomaticTopologyMeshSource< TOutputMesh >::GenerateData void   )  [inline, protected, virtual]
 

This method causes the filter to generate its output.

Reimplemented from itk::ProcessObject.

Definition at line 380 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
void itk::MeshSource< TOutputMesh >::GenerateInputRequestedRegion  )  [protected, virtual, inherited]
 

Requested region of Mesh is specified as i of N unstructured regions. Since all DataObjects should be able to set the requested region in unstructured form, just copy output->RequestedRegion all inputs.

Reimplemented from itk::ProcessObject.

virtual void itk::ProcessObject::GenerateOutputInformation  )  [protected, virtual, inherited]
 

Generate the information decribing the output data. The default implementation of this method will copy information from the input to the output. A filter may override this method if its output will have different information than its input. For instance, a filter that shrinks an image will need to provide an implementation for this method that changes the spacing of the pixels. Such filters should call their superclass' implementation of this method prior to changing the information values they need (i.e. GenerateOutputInformation() should call Superclass::GenerateOutputInformation() prior to changing the information.

Reimplemented in itk::BayesianClassifierInitializationImageFilter< TInputImage, TProbabilityPrecisionType >, itk::BinaryMask3DMeshSource< TInputImage, TOutputMesh >, itk::FastMarchingExtensionImageFilter< TLevelSet, TAuxValue, VAuxDimension, TSpeedImage >, itk::FastMarchingImageFilter< TLevelSet, TSpeedImage >, itk::FFTComplexConjugateToRealImageFilter< TPixel, Dimension >, itk::FFTRealToComplexConjugateImageFilter< TPixel, Dimension >, itk::MRFImageFilter< TInputImage, TClassifiedImage >, itk::MultiResolutionPDEDeformableRegistration< TFixedImage, TMovingImage, TDeformationField >, itk::MultiResolutionPyramidImageFilter< TInputImage, TOutputImage >, itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::VoronoiDiagram2DGenerator< TCoordType >, itk::AccumulateImageFilter< TInputImage, TOutputImage >, itk::BinaryMaskToNarrowBandPointSetFilter< TInputImage, TOutputMesh >, itk::ChangeInformationImageFilter< TInputImage >, itk::CropImageFilter< TInputImage, TOutputImage >, itk::DeformationFieldSource< TOutputImage >, itk::ExpandImageFilter< TInputImage, TOutputImage >, itk::ExtractImageFilter< TInputImage, TOutputImage >, itk::ExtractOrthogonalSwath2DImageFilter< TImage >, itk::FlipImageFilter< TImage >, itk::GaussianImageSource< TOutputImage >, itk::GradientImageToBloxBoundaryPointImageFilter< TInputImage >, itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >, itk::ImageToMeshFilter< TInputImage, TOutputMesh >, itk::ImageToParametricSpaceFilter< TInputImage, TOutputMesh >, itk::ImportImageFilter< TPixel, VImageDimension >, itk::InterpolateImagePointsFilter< TInputImage, TOutputImage, TCoordType, InterpolatorType >, itk::InverseDeformationFieldImageFilter< TInputImage, TOutputImage >, itk::JoinSeriesImageFilter< TInputImage, TOutputImage >, itk::NonThreadedShrinkImageFilter< TInputImage, TOutputImage >, itk::OrientImageFilter< TInputImage, TOutputImage >, itk::PadImageFilter< TInputImage, TOutputImage >, itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >, itk::PathToImageFilter< TInputPath, TOutputImage >, itk::PermuteAxesImageFilter< TImage >, itk::PointSetToImageFilter< TInputPointSet, TOutputImage >, itk::RandomImageSource< TOutputImage >, itk::RegionOfInterestImageFilter< TInputImage, TOutputImage >, itk::ResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, itk::ShrinkImageFilter< TInputImage, TOutputImage >, itk::SpatialObjectToImageFilter< TInputSpatialObject, TOutputImage >, itk::SpatialObjectToPointSetFilter< TInputSpatialObject, TOutputPointSet >, itk::TileImageFilter< TInputImage, TOutputImage >, itk::TriangleMeshToBinaryImageFilter, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >, itk::VectorExpandImageFilter< TInputImage, TOutputImage >, itk::VectorResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, itk::VTKImageImport< TOutputImage >, itk::WarpImageFilter< TInputImage, TOutputImage, TDeformationField >, itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDeformationField >, itk::ImageFileReader< TOutputImage, ConvertPixelTraits >, itk::ImageSeriesReader< TOutputImage >, itk::HistogramToImageFilter< THistogram, TFunction >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::Atan< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::Cos< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::Acos< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::InvertIntensityTransform< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::ChangeLabel< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< FeatureImageType, ImageType, Functor::Cast< FeatureImageType::PixelType, ImageType::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::Log< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::Abs< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::Exp< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::ComplexToReal< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::Cast< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::BoundedReciprocal< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::Sigmoid< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::VectorCast< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::VectorMagnitudeLinearTransform< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::IntensityLinearTransform< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::ComplexToModulus< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::IntensityWindowingTransform< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::NOT< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::Tan< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::ExpNegative< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::ComplexToPhase< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::ThresholdLabeler< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::SymmetricEigenAnalysisFunction< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::Sin< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::RGBToLuminance< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::TensorRelativeAnisotropyFunction< TInputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::MatrixIndexSelection< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::Sqrt< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::BinaryThreshold< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::Log10< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::AccessorFunctor< TInputImage::PixelType, TAccessor > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::ModulusTransform< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::TensorFractionalAnisotropyFunction< TInputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::Asin< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::EdgePotential< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::Square< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::VectorIndexSelectionCast< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::GradientMagnitude< TInputImage::PixelType, TOutputImage::PixelType > >, itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, Function::ComplexToImaginary< TInputImage::PixelType, TOutputImage::PixelType > >, itk::HistogramToImageFilter< THistogram, Function::HistogramEntropyFunction< unsigned long > >, itk::HistogramToImageFilter< THistogram, Function::HistogramLogProbabilityFunction< unsigned long > >, itk::HistogramToImageFilter< THistogram, Function::HistogramProbabilityFunction< unsigned long > >, and itk::HistogramToImageFilter< THistogram, Function::HistogramIntensityFunction< unsigned long > >.

virtual void itk::ProcessObject::GenerateOutputRequestedRegion DataObject output  )  [protected, virtual, inherited]
 

Given one output whose requested region has been set, how should the requested regions for the remaining outputs of the process object be set? By default, all the outputs are set to the same requested region. If a filter needs to produce different requested regions for each output, for instance an image processing filter producing several outputs at different resolutions, then that filter may override this method and set the requested regions appropriatedly.

Note that a filter producing multiple outputs of different types is required to override this method. The default implementation can only correctly handle multiple outputs of the same type.

Reimplemented in itk::MultiResolutionPyramidImageFilter< TInputImage, TOutputImage >, itk::RecursiveMultiResolutionPyramidImageFilter< TInputImage, TOutputImage >, itk::watershed::BoundaryResolver< TPixelType, TDimension >, itk::watershed::EquivalenceRelabeler< TScalarType, TImageDimension >, itk::watershed::Relabeler< TScalarType, TImageDimension >, itk::watershed::Segmenter< TInputImage >, itk::watershed::SegmentTreeGenerator< TScalarType >, itk::watershed::Relabeler< ScalarType, itkGetStaticConstMacro(ImageDimension)>, and itk::watershed::SegmentTreeGenerator< ScalarType >.

virtual const bool& itk::ProcessObject::GetAbortGenerateData  )  [virtual, inherited]
 

Get the AbortGenerateData flag for the process object. Process objects may handle premature termination of execution in different ways.

Command* itk::Object::GetCommand unsigned long  tag  )  [inherited]
 

Get the command associated with the given tag. NOTE: This returns a pointer to a Command, but it is safe to asign this to a Command::Pointer. Since Command inherits from LightObject, at this point in the code, only a pointer or a reference to the Command can be used.

bool itk::Object::GetDebug  )  const [inherited]
 

Get the value of the debug flag.

static bool itk::Object::GetGlobalWarningDisplay  )  [static, inherited]
 

const DataObject* itk::ProcessObject::GetInput unsigned int  idx  )  const [protected, inherited]
 

Method used internally for getting an input* DataObject* itk::ProcessObject::GetInput unsigned int  idx  )  [protected, inherited]
 

Reimplemented in itk::ImageToMeshFilter< TInputImage, TOutputMesh >, itk::PathToImageFilter< TInputPath, TOutputImage >, itk::PointSetToImageFilter< TInputPointSet, TOutputImage >, itk::SpatialObjectToImageFilter< TInputSpatialObject, TOutputImage >, itk::SpatialObjectToPointSetFilter< TInputSpatialObject, TOutputPointSet >, itk::TriangleMeshToBinaryImageFilter, itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::MeshToMeshFilter< TInputMesh, TOutputMesh >, itk::PathToPathFilter< TInputPath, TOutputPath >, itk::ImageFileWriter, itk::ImageSeriesWriter, itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TSpeedImage, TLevelSet >, itk::ImageToImageFilter< TDeformationField, TDeformationField >, itk::ImageToImageFilter< TInputImage, TInputImage >, itk::ImageToImageFilter< TInputImage1, Functor::MakeJoin< TInputImage1, TInputImage2 >::ImageType >, itk::ImageToImageFilter< TInputImage, TSparseOutputImage >, itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TDataType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, BloxBoundaryPointImage< ::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< Image< SymmetricSecondRankTensor< double, 3 >, 3 >, Image< TPixel, 3 > >, itk::ImageToImageFilter< TInputImage, Image< unsigned long,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TSourceImage, BloxBoundaryProfileImage< ::itk::GetImageDimension< TSourceImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TOutputImage >, itk::ImageToImageFilter< FeatureImageType, ImageType >, itk::ImageToImageFilter< TImageType, TImageType >, itk::ImageToImageFilter< TInputImage, Image< unsigned char,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< BloxBoundaryPointImage< dim >, BloxCoreAtomImage< dim > >, itk::ImageToImageFilter< TInputImage, VectorImage< TProbabilityPrecisionType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TOutputValueType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, TClassifiedImage >, itk::ImageToImageFilter< TInputImage, TEigenValueImage >, itk::ImageToImageFilter< TInputVectorImage, Image< TLabelsType,::itk::GetImageDimension< TInputVectorImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TInputImage1 >, itk::ImageToImageFilter< ImageType, ImageType >, itk::ImageToImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TLevelSet, TLevelSet >, itk::ImageToImageFilter< TMovingImage, TFixedImage >, itk::ImageToImageFilter< Image< TPixel, Dimension >, Image< std::complex< TPixel >, Dimension > >, itk::ImageToImageFilter< TImage, TImage >, itk::ImageToImageFilter< Image< std::complex< TPixel >, Dimension >, Image< TPixel, Dimension > >, itk::ImageToImageFilter< TInputImageType, TSparseOutputImageType >, itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >, itk::ImageToImageFilter< TImage, TImage >, itk::ImageToImageFilter< ImageType, ImageType >, itk::PathToPathFilter< TInputPath, TOutputChainCodePath >, itk::PathToPathFilter< TInputChainCodePath, TOutputFourierSeriesPath >, and itk::PathToPathFilter< TFourierSeriesPath, OrthogonallyCorrected2DParametricPath >.

Referenced by itk::watershed::EquivalenceRelabeler< TScalarType, TImageDimension >::GetEquivalencyTable(), itk::watershed::SegmentTreeGenerator< ScalarType >::GetInputEquivalencyTable(), itk::watershed::Segmenter< TInputImage >::GetInputImage(), itk::watershed::Relabeler< ScalarType, itkGetStaticConstMacro(ImageDimension)>::GetInputImage(), itk::watershed::EquivalenceRelabeler< TScalarType, TImageDimension >::GetInputImage(), itk::watershed::SegmentTreeGenerator< ScalarType >::GetInputSegmentTable(), itk::watershed::Relabeler< ScalarType, itkGetStaticConstMacro(ImageDimension)>::GetInputSegmentTree(), and itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetLabelInput().

DataObjectPointerArray& itk::ProcessObject::GetInputs  )  [inline, inherited]
 

Return an array with all the inputs of this process object. This is useful for tracing back in the pipeline to construct graphs etc.

Definition at line 108 of file itkProcessObject.h.

const MetaDataDictionary& itk::Object::GetMetaDataDictionary void   )  const [inherited]
 

Returns:
A constant reference to this objects MetaDataDictionary.

MetaDataDictionary& itk::Object::GetMetaDataDictionary void   )  [inherited]
 

Returns:
A reference to this objects MetaDataDictionary.
Warning:
This reference may be changed.

virtual unsigned long itk::Object::GetMTime  )  const [virtual, inherited]
 

Return this objects modified time.

Reimplemented in itk::ImageRegistrationMethod< TFixedImage, TMovingImage >, itk::DeformationFieldSource< TOutputImage >, itk::InverseDeformationFieldImageFilter< TInputImage, TOutputImage >, itk::ResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, itk::VectorResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, itk::BoundingBox< TPointIdentifier, VPointDimension, TCoordRep, TPointsContainer >, itk::SceneSpatialObject< SpaceDimension >, and itk::SceneSpatialObject< NDimensions >.

MultiThreader* itk::ProcessObject::GetMultiThreader  )  [inline, inherited]
 

Return the multithreader used by this class.

Definition at line 281 of file itkProcessObject.h.

template<class TOutputMesh>
virtual const char* itk::AutomaticTopologyMeshSource< TOutputMesh >::GetNameOfClass  )  const [virtual]
 

Run-time type information (and related methods).

Reimplemented from itk::MeshSource< TOutputMesh >.

std::vector<DataObjectPointer>::size_type itk::ProcessObject::GetNumberOfInputs  )  const [inline, inherited]
 

Get the size of the input vector. This is merely the size of the input vector, not the number of inputs that have valid DataObject's assigned. Use GetNumberOfValidRequiredInputs() to determine how many inputs are non-null.

Definition at line 115 of file itkProcessObject.h.

std::vector<DataObjectPointer>::size_type itk::ProcessObject::GetNumberOfOutputs  )  const [inline, inherited]
 

Definition at line 132 of file itkProcessObject.h.

virtual const unsigned int& itk::ProcessObject::GetNumberOfRequiredInputs  )  [protected, virtual, inherited]
 

virtual const unsigned int& itk::ProcessObject::GetNumberOfRequiredOutputs  )  [protected, virtual, inherited]
 

virtual const int& itk::ProcessObject::GetNumberOfThreads  )  [virtual, inherited]
 

virtual std::vector<DataObjectPointer>::size_type itk::ProcessObject::GetNumberOfValidRequiredInputs  )  const [virtual, inherited]
 

Get the number of valid inputs. This is the number of non-null entries in the input vector in the first NumberOfRequiredInputs slots. This method is used to determine whether the necessary required inputs have been set. Subclasses of ProcessObject may override this implementation if the required inputs are not the first slots in input vector.

Reimplemented in itk::MultiResolutionPDEDeformableRegistration< TFixedImage, TMovingImage, TDeformationField >, and itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

const DataObject* itk::ProcessObject::GetOutput unsigned int  idx  )  const [protected, inherited]
 

template<class TOutputMesh>
OutputMeshType* itk::MeshSource< TOutputMesh >::GetOutput unsigned int  idx  )  [inherited]
 

Reimplemented from itk::ProcessObject.

template<class TOutputMesh>
Get the mesh output of this process object* OutputMeshType* itk::MeshSource< TOutputMesh >::GetOutput void   )  [inherited]
 

Reimplemented in itk::ImageToMeshFilter< TInputImage, TOutputMesh >.

Return an array with all the outputs of this process object* This is useful for tracing forward in the pipeline to contruct* graphs etc* DataObjectPointerArray& itk::ProcessObject::GetOutputs  )  [inline, inherited]
 

Definition at line 130 of file itkProcessObject.h.

virtual const float& itk::ProcessObject::GetProgress  )  [virtual, inherited]
 

Get the execution progress of a process object. The progress is a floating number in [0,1] with 0 meaning no progress and 1 meaning the filter has completed execution.

virtual int itk::LightObject::GetReferenceCount  )  const [inline, virtual, inherited]
 

Gets the reference count on this object.

Definition at line 98 of file itkLightObject.h.

virtual const bool& itk::ProcessObject::GetReleaseDataBeforeUpdateFlag  )  [virtual, inherited]
 

virtual bool itk::ProcessObject::GetReleaseDataFlag  )  const [virtual, inherited]
 

static void itk::Object::GlobalWarningDisplayOff  )  [inline, static, inherited]
 

Definition at line 100 of file itkObject.h.

References itk::Object::SetGlobalWarningDisplay().

static void itk::Object::GlobalWarningDisplayOn  )  [inline, static, inherited]
 

Definition at line 98 of file itkObject.h.

References itk::Object::SetGlobalWarningDisplay().

template<class TOutputMesh>
virtual void itk::MeshSource< TOutputMesh >::GraftNthOutput unsigned int  idx,
DataObject output
[virtual, inherited]
 

template<class TOutputMesh>
* * * * this itk::MeshSource< TOutputMesh >::GraftOutput lastFilterInMiniPipeline->  GetOutput()  )  [inherited]
 

template<class TOutputMesh>
* * * * lastFilterInMiniPipeline itk::MeshSource< TOutputMesh >::GraftOutput this->  GetOutput()  )  [inherited]
 

bool itk::Object::HasObserver const EventObject event  )  const [inherited]
 

Return true if an observer is registered for this event.

void itk::Object::InvokeEvent const EventObject  )  const [inherited]
 

Call Execute on all the Commands observing this event id. The actions triggered by this call doesn't modify this object.

void itk::Object::InvokeEvent const EventObject  )  [inherited]
 

Call Execute on all the Commands observing this event id.

template<class TOutputMesh>
itk::AutomaticTopologyMeshSource< TOutputMesh >::itkStaticConstMacro MaxTopologicalDimension  ,
unsigned  int,
MeshType::MaxTopologicalDimension 
 

template<class TOutputMesh>
The dimension of the output mesh* itk::AutomaticTopologyMeshSource< TOutputMesh >::itkStaticConstMacro PointDimension  ,
unsigned  int,
MeshType::PointDimension 
 

template<class TOutputMesh>
Graft the specified DataObject onto this ProcessObject s output* This method grabs a handle to the specified DataObject s bulk* data to used as its output s own bulk data It also copies the* region itk::MeshSource< TOutputMesh >::ivars RequestedRegion  ,
BufferedRegion  ,
LargestPossibleRegion
[inherited]
 

template<class TOutputMesh>
virtual DataObjectPointer itk::MeshSource< TOutputMesh >::MakeOutput unsigned int  idx  )  [virtual, inherited]
 

Make a DataObject of the correct type to used as the specified output. Every ProcessObject subclass must be able to create a DataObject that can be used as a specified output. This method is automatically called when DataObject::DisconnectPipeline() is called. DataObject::DisconnectPipeline, disconnects a data object from being an output of its current source. When the data object is disconnected, the ProcessObject needs to construct a replacement output data object so that the ProcessObject is in a valid state. So DataObject::DisconnectPipeline eventually calls ProcessObject::MakeOutput. Note that MakeOutput always returns a SmartPointer to a DataObject. If a subclass of MeshSource has multiple outputs of different types, then that class must provide an implementation of MakeOutput().

Reimplemented from itk::ProcessObject.

Reimplemented in itk::ImageToMeshFilter< TInputImage, TOutputMesh >.

virtual void itk::Object::Modified  )  const [virtual, inherited]
 

Update the modification time for this object. Many filters rely on the modification time to determine if they need to recompute their data.

Referenced by itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetCenter(), itk::HistogramAlgorithmBase< TInputHistogram >::SetInputHistogram(), itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetMatrix(), itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetOffset(), itk::ThresholdLabelerImageFilter< TInputImage, TOutputImage >::SetRealThresholds(), itk::CollidingFrontsImageFilter< TInputImage, TOutputImage >::SetSeedPoints1(), itk::CollidingFrontsImageFilter< TInputImage, TOutputImage >::SetSeedPoints2(), itk::NonUniformBSpline< TDimension >::SetSplineOrder(), itk::ThresholdLabelerImageFilter< TInputImage, TOutputImage >::SetThresholds(), itk::Statistics::GoodnessOfFitFunctionBase< typename ComponentType::HistogramType >::SetTotalObservedScale(), and itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetTranslation().

template<class TOutputMesh>
static Pointer itk::AutomaticTopologyMeshSource< TOutputMesh >::New  )  [static]
 

Method for creation through the object factory.

Reimplemented from itk::MeshSource< TOutputMesh >.

virtual void itk::ProcessObject::PopBackInput  )  [protected, virtual, inherited]
 

Reimplemented in itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TSpeedImage, TLevelSet >, itk::ImageToImageFilter< TDeformationField, TDeformationField >, itk::ImageToImageFilter< TInputImage, TInputImage >, itk::ImageToImageFilter< TInputImage1, Functor::MakeJoin< TInputImage1, TInputImage2 >::ImageType >, itk::ImageToImageFilter< TInputImage, TSparseOutputImage >, itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TDataType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, BloxBoundaryPointImage< ::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< Image< SymmetricSecondRankTensor< double, 3 >, 3 >, Image< TPixel, 3 > >, itk::ImageToImageFilter< TInputImage, Image< unsigned long,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TSourceImage, BloxBoundaryProfileImage< ::itk::GetImageDimension< TSourceImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TOutputImage >, itk::ImageToImageFilter< FeatureImageType, ImageType >, itk::ImageToImageFilter< TImageType, TImageType >, itk::ImageToImageFilter< TInputImage, Image< unsigned char,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< BloxBoundaryPointImage< dim >, BloxCoreAtomImage< dim > >, itk::ImageToImageFilter< TInputImage, VectorImage< TProbabilityPrecisionType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TOutputValueType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, TClassifiedImage >, itk::ImageToImageFilter< TInputImage, TEigenValueImage >, itk::ImageToImageFilter< TInputVectorImage, Image< TLabelsType,::itk::GetImageDimension< TInputVectorImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TInputImage1 >, itk::ImageToImageFilter< ImageType, ImageType >, itk::ImageToImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TLevelSet, TLevelSet >, itk::ImageToImageFilter< TMovingImage, TFixedImage >, itk::ImageToImageFilter< Image< TPixel, Dimension >, Image< std::complex< TPixel >, Dimension > >, itk::ImageToImageFilter< TImage, TImage >, itk::ImageToImageFilter< Image< std::complex< TPixel >, Dimension >, Image< TPixel, Dimension > >, itk::ImageToImageFilter< TInputImageType, TSparseOutputImageType >, itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >, itk::ImageToImageFilter< TImage, TImage >, and itk::ImageToImageFilter< ImageType, ImageType >.

virtual void itk::ProcessObject::PopFrontInput  )  [protected, virtual, inherited]
 

Reimplemented in itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TSpeedImage, TLevelSet >, itk::ImageToImageFilter< TDeformationField, TDeformationField >, itk::ImageToImageFilter< TInputImage, TInputImage >, itk::ImageToImageFilter< TInputImage1, Functor::MakeJoin< TInputImage1, TInputImage2 >::ImageType >, itk::ImageToImageFilter< TInputImage, TSparseOutputImage >, itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TDataType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, BloxBoundaryPointImage< ::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< Image< SymmetricSecondRankTensor< double, 3 >, 3 >, Image< TPixel, 3 > >, itk::ImageToImageFilter< TInputImage, Image< unsigned long,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TSourceImage, BloxBoundaryProfileImage< ::itk::GetImageDimension< TSourceImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TOutputImage >, itk::ImageToImageFilter< FeatureImageType, ImageType >, itk::ImageToImageFilter< TImageType, TImageType >, itk::ImageToImageFilter< TInputImage, Image< unsigned char,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< BloxBoundaryPointImage< dim >, BloxCoreAtomImage< dim > >, itk::ImageToImageFilter< TInputImage, VectorImage< TProbabilityPrecisionType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TOutputValueType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, TClassifiedImage >, itk::ImageToImageFilter< TInputImage, TEigenValueImage >, itk::ImageToImageFilter< TInputVectorImage, Image< TLabelsType,::itk::GetImageDimension< TInputVectorImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TInputImage1 >, itk::ImageToImageFilter< ImageType, ImageType >, itk::ImageToImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TLevelSet, TLevelSet >, itk::ImageToImageFilter< TMovingImage, TFixedImage >, itk::ImageToImageFilter< Image< TPixel, Dimension >, Image< std::complex< TPixel >, Dimension > >, itk::ImageToImageFilter< TImage, TImage >, itk::ImageToImageFilter< Image< std::complex< TPixel >, Dimension >, Image< TPixel, Dimension > >, itk::ImageToImageFilter< TInputImageType, TSparseOutputImageType >, itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >, itk::ImageToImageFilter< TImage, TImage >, and itk::ImageToImageFilter< ImageType, ImageType >.

virtual void itk::ProcessObject::PrepareOutputs  )  [virtual, inherited]
 

An opportunity to deallocate a ProcessObject's bulk data storage. Some filters may wish to reuse existing bulk data storage to avoid unnecessary deallocation/allocation sequences. The default implementation calls Initialize() on each output. DataObject::Initialize() frees its bulk data by default.

Reimplemented in itk::WatershedImageFilter< TInputImage >.

void itk::LightObject::Print std::ostream &  os,
Indent  indent = 0
const [inherited]
 

Cause the object to print itself out.

bool itk::Object::PrintObservers std::ostream &  os,
Indent  indent
const [protected, inherited]
 

template<class TOutputMesh>
void itk::MeshSource< TOutputMesh >::PrintSelf std::ostream &  os,
Indent  indent
const [protected, virtual, inherited]
 

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::ProcessObject.

Reimplemented in itk::BalloonForceFilter< TInputMesh, TOutputMesh >, itk::BinaryMask3DMeshSource< TInputImage, TOutputMesh >, itk::ConnectedRegionsMeshFilter< TInputMesh, TOutputMesh >, itk::DeformableMesh3DFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DBalloonForceFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DGradientConstraintForceFilter, itk::SphereMeshSource< TOutputMesh >, itk::VoronoiDiagram2DGenerator< TCoordType >, itk::BinaryMaskToNarrowBandPointSetFilter< TInputImage, TOutputMesh >, itk::ImageToMeshFilter< TInputImage, TOutputMesh >, itk::ImageToParametricSpaceFilter< TInputImage, TOutputMesh >, itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >, itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >, itk::SimplexMeshAdaptTopologyFilter< TInputMesh, TOutputMesh >, itk::SimplexMeshToTriangleMeshFilter< TInputMesh, TOutputMesh >, itk::SpatialObjectToPointSetFilter< TInputSpatialObject, TOutputPointSet >, itk::TransformMeshFilter< TInputMesh, TOutputMesh, TTransform >, itk::TriangleMeshToSimplexMeshFilter< TInputMesh, TOutputMesh >, and itk::WarpMeshFilter< TInputMesh, TOutputMesh, TDeformationField >.

virtual void itk::LightObject::PrintTrailer std::ostream &  os,
Indent  indent
const [protected, virtual, inherited]
 

virtual void itk::ProcessObject::PropagateRequestedRegion DataObject output  )  [virtual, inherited]
 

Send the requested region information back up the pipeline (to the filters that preceed this one).

Reimplemented in itk::VTKImageImport< TOutputImage >.

virtual void itk::ProcessObject::PropagateResetPipeline  )  [protected, virtual, inherited]
 

Propagate a call to ResetPipeline() up the pipeline. Called only from DataObject.

Push Pop an input of this process object These methods allow a* filter to model its input vector as a queue or stack These* routines may not be appropriate for all especially* filters with different types of inputs These routines follow* the semantics of STL* virtual void itk::ProcessObject::PushBackInput const DataObject input  )  [protected, virtual, inherited]
 

Reimplemented in itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TSpeedImage, TLevelSet >, itk::ImageToImageFilter< TDeformationField, TDeformationField >, itk::ImageToImageFilter< TInputImage, TInputImage >, itk::ImageToImageFilter< TInputImage1, Functor::MakeJoin< TInputImage1, TInputImage2 >::ImageType >, itk::ImageToImageFilter< TInputImage, TSparseOutputImage >, itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TDataType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, BloxBoundaryPointImage< ::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< Image< SymmetricSecondRankTensor< double, 3 >, 3 >, Image< TPixel, 3 > >, itk::ImageToImageFilter< TInputImage, Image< unsigned long,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TSourceImage, BloxBoundaryProfileImage< ::itk::GetImageDimension< TSourceImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TOutputImage >, itk::ImageToImageFilter< FeatureImageType, ImageType >, itk::ImageToImageFilter< TImageType, TImageType >, itk::ImageToImageFilter< TInputImage, Image< unsigned char,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< BloxBoundaryPointImage< dim >, BloxCoreAtomImage< dim > >, itk::ImageToImageFilter< TInputImage, VectorImage< TProbabilityPrecisionType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TOutputValueType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, TClassifiedImage >, itk::ImageToImageFilter< TInputImage, TEigenValueImage >, itk::ImageToImageFilter< TInputVectorImage, Image< TLabelsType,::itk::GetImageDimension< TInputVectorImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TInputImage1 >, itk::ImageToImageFilter< ImageType, ImageType >, itk::ImageToImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TLevelSet, TLevelSet >, itk::ImageToImageFilter< TMovingImage, TFixedImage >, itk::ImageToImageFilter< Image< TPixel, Dimension >, Image< std::complex< TPixel >, Dimension > >, itk::ImageToImageFilter< TImage, TImage >, itk::ImageToImageFilter< Image< std::complex< TPixel >, Dimension >, Image< TPixel, Dimension > >, itk::ImageToImageFilter< TInputImageType, TSparseOutputImageType >, itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >, itk::ImageToImageFilter< TImage, TImage >, and itk::ImageToImageFilter< ImageType, ImageType >.

virtual void itk::ProcessObject::PushFrontInput const DataObject input  )  [protected, virtual, inherited]
 

Reimplemented in itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TSpeedImage, TLevelSet >, itk::ImageToImageFilter< TDeformationField, TDeformationField >, itk::ImageToImageFilter< TInputImage, TInputImage >, itk::ImageToImageFilter< TInputImage1, Functor::MakeJoin< TInputImage1, TInputImage2 >::ImageType >, itk::ImageToImageFilter< TInputImage, TSparseOutputImage >, itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TDataType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, BloxBoundaryPointImage< ::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< Image< SymmetricSecondRankTensor< double, 3 >, 3 >, Image< TPixel, 3 > >, itk::ImageToImageFilter< TInputImage, Image< unsigned long,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TSourceImage, BloxBoundaryProfileImage< ::itk::GetImageDimension< TSourceImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TOutputImage >, itk::ImageToImageFilter< FeatureImageType, ImageType >, itk::ImageToImageFilter< TImageType, TImageType >, itk::ImageToImageFilter< TInputImage, Image< unsigned char,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< BloxBoundaryPointImage< dim >, BloxCoreAtomImage< dim > >, itk::ImageToImageFilter< TInputImage, VectorImage< TProbabilityPrecisionType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TOutputValueType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, TClassifiedImage >, itk::ImageToImageFilter< TInputImage, TEigenValueImage >, itk::ImageToImageFilter< TInputVectorImage, Image< TLabelsType,::itk::GetImageDimension< TInputVectorImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TInputImage1 >, itk::ImageToImageFilter< ImageType, ImageType >, itk::ImageToImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TLevelSet, TLevelSet >, itk::ImageToImageFilter< TMovingImage, TFixedImage >, itk::ImageToImageFilter< Image< TPixel, Dimension >, Image< std::complex< TPixel >, Dimension > >, itk::ImageToImageFilter< TImage, TImage >, itk::ImageToImageFilter< Image< std::complex< TPixel >, Dimension >, Image< TPixel, Dimension > >, itk::ImageToImageFilter< TInputImageType, TSparseOutputImageType >, itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >, itk::ImageToImageFilter< TImage, TImage >, and itk::ImageToImageFilter< ImageType, ImageType >.

virtual void itk::Object::Register  )  const [virtual, inherited]
 

Increase the reference count (mark as used by another object).

Reimplemented from itk::LightObject.

virtual void itk::ProcessObject::ReleaseDataBeforeUpdateFlagOff  )  [virtual, inherited]
 

virtual void itk::ProcessObject::ReleaseDataBeforeUpdateFlagOn  )  [virtual, inherited]
 

void itk::ProcessObject::ReleaseDataFlagOff  )  [inline, inherited]
 

Definition at line 254 of file itkProcessObject.h.

void itk::ProcessObject::ReleaseDataFlagOn  )  [inline, inherited]
 

Definition at line 253 of file itkProcessObject.h.

virtual void itk::ProcessObject::ReleaseInputs  )  [protected, virtual, inherited]
 

A filter may need to release its input's bulk data after it has finished calculating a new output. The filter may need to release the inputs because the user has turned on the ReleaseDataFlag or it may need to release the inputs because the filter is an "in place" filter and it has overwritten its input with its output data. The implementation here simply checks the ReleaseDataFlag of the inputs. InPlaceImageFilter overrides this method so release the input it has overwritten.

See also:
InPlaceImageFilter::ReleaseInputs()

Reimplemented in itk::InPlaceImageFilter< TInputImage, TOutputImage >, itk::InPlaceImageFilter< TInputImage, TOutputImage >, itk::InPlaceImageFilter< TDeformationField, TDeformationField >, itk::InPlaceImageFilter< TInputImage >, itk::InPlaceImageFilter< TInputImage, TSparseOutputImage >, itk::InPlaceImageFilter< TInputImage1, TOutputImage >, itk::InPlaceImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::InPlaceImageFilter< FeatureImageType, ImageType >, itk::InPlaceImageFilter< TInputImage1, Functor::MakeJoin< TInputImage1, TInputImage2 >::ImageType >, itk::InPlaceImageFilter< TInputImageType, TSparseOutputImageType >, and itk::InPlaceImageFilter< TImage, TImage >.

void itk::Object::RemoveAllObservers  )  [inherited]
 

Remove all observers .

virtual void itk::ProcessObject::RemoveInput DataObject input  )  [protected, virtual, inherited]
 

void itk::Object::RemoveObserver unsigned long  tag  )  [inherited]
 

Remove the observer with this tag value.

virtual void itk::ProcessObject::RemoveOutput DataObject output  )  [protected, virtual, inherited]
 

virtual void itk::ProcessObject::ResetPipeline  )  [virtual, inherited]
 

Reset the pipeline. If an exception is thrown during an Update(), the pipeline may be in an inconsistent state. This method clears the internal state of the pipeline so Update() can be called.

virtual void itk::ProcessObject::RestoreInputReleaseDataFlags  )  [protected, virtual, inherited]
 

Restore the cached input ReleaseDataFlags.

virtual void itk::ProcessObject::SetAbortGenerateData bool  _arg  )  [virtual, inherited]
 

Set the AbortGenerateData flag for the process object. Process objects may handle premature termination of execution in different ways.

void itk::Object::SetDebug bool  debugFlag  )  const [inherited]
 

Set the value of the debug flag. A non-zero value turns debugging on.

This is a global flag that controls whether any warning* or error messages are displayed* static void itk::Object::SetGlobalWarningDisplay bool  flag  )  [static, inherited]
 

Referenced by itk::Object::GlobalWarningDisplayOff(), and itk::Object::GlobalWarningDisplayOn().

void itk::Object::SetMetaDataDictionary const MetaDataDictionary rhs  )  [inherited]
 

Returns:
Set the MetaDataDictionary

Protected methods for setting inputs* Subclasses make use of them for setting input* virtual void itk::ProcessObject::SetNthInput unsigned int  num,
DataObject input
[protected, virtual, inherited]
 

Referenced by itk::watershed::BoundaryResolver< TPixelType, TDimension >::SetBoundaryA(), itk::watershed::BoundaryResolver< TPixelType, TDimension >::SetBoundaryB(), itk::watershed::EquivalenceRelabeler< TScalarType, TImageDimension >::SetEquivalencyTable(), itk::WatershedImageFilter< TInputImage >::SetInput(), itk::watershed::SegmentTreeGenerator< ScalarType >::SetInputEquivalencyTable(), itk::watershed::Segmenter< TInputImage >::SetInputImage(), itk::watershed::Relabeler< ScalarType, itkGetStaticConstMacro(ImageDimension)>::SetInputImage(), itk::watershed::EquivalenceRelabeler< TScalarType, TImageDimension >::SetInputImage(), itk::watershed::SegmentTreeGenerator< ScalarType >::SetInputSegmentTable(), itk::watershed::Relabeler< ScalarType, itkGetStaticConstMacro(ImageDimension)>::SetInputSegmentTree(), itk::ResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::SetReferenceImage(), itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType >::SetReferenceImage(), and itk::ChangeInformationImageFilter< TInputImage >::SetReferenceImage().

Protected methods for setting outputs* Subclasses make use of them for getting output* virtual void itk::ProcessObject::SetNthOutput unsigned int  num,
DataObject output
[protected, virtual, inherited]
 

Referenced by itk::watershed::BoundaryResolver< TPixelType, TDimension >::BoundaryResolver(), itk::watershed::EquivalenceRelabeler< TScalarType, TImageDimension >::EquivalenceRelabeler(), itk::watershed::Segmenter< TInputImage >::SetBoundary(), itk::watershed::BoundaryResolver< TPixelType, TDimension >::SetEquivalencyTable(), itk::watershed::Segmenter< TInputImage >::SetOutputImage(), itk::watershed::Relabeler< ScalarType, itkGetStaticConstMacro(ImageDimension)>::SetOutputImage(), itk::watershed::EquivalenceRelabeler< TScalarType, TImageDimension >::SetOutputImage(), and itk::watershed::Segmenter< TInputImage >::SetSegmentTable().

void itk::ProcessObject::SetNumberOfInputs unsigned int  num  )  [protected, inherited]
 

Called to allocate the input array. Copies old inputs.

void itk::ProcessObject::SetNumberOfOutputs unsigned int  num  )  [protected, inherited]
 

Called to allocate the output array. Copies old outputs.

virtual void itk::ProcessObject::SetNumberOfRequiredInputs unsigned int  _arg  )  [protected, virtual, inherited]
 

virtual void itk::ProcessObject::SetNumberOfRequiredOutputs unsigned int  _arg  )  [protected, virtual, inherited]
 

Get Set the number of threads to create when executing* virtual void itk::ProcessObject::SetNumberOfThreads int  _arg  )  [virtual, inherited]
 

template<class TOutputMesh>
void itk::MeshSource< TOutputMesh >::SetOutput TOutputMesh *  output  )  [inherited]
 

Set the mesh output of this process object. This call is slated to be removed from ITK. You should GraftOutput() and possible DataObject::DisconnectPipeline() to properly change the output.

virtual void itk::ProcessObject::SetProgress float  _arg  )  [virtual, inherited]
 

Set the execution progress of a process object. The progress is a floating number in [0,1] with 0 meaning no progress and 1 meaning the filter has completed execution. The ProgressEvent is NOT invoked.

virtual void itk::Object::SetReferenceCount int   )  [virtual, inherited]
 

Sets the reference count (use with care)

Reimplemented from itk::LightObject.

Turn on off the flags to control whether the bulk data belonging* to the outputs of this ProcessObject are released after being* used by a downstream ProcessObject Default value is off Another* options for controlling memory utilization is the* ReleaseDataBeforeUpdateFlag* virtual void itk::ProcessObject::SetReleaseDataFlag bool  flag  )  [virtual, inherited]
 

virtual void itk::Object::UnRegister  )  const [virtual, inherited]
 

Decrease the reference count (release by another object).

Reimplemented from itk::LightObject.

template<class TOutputMesh>
* * * lastFilterInMiniPipeline itk::MeshSource< TOutputMesh >::Update  )  [virtual, inherited]
 

Bring this filter up-to-date. Update() checks modified times against last execution times, and re-executes objects if necessary. A side effect of this method is that the whole pipeline may execute in order to bring this filter up-to-date. This method updates the currently prescribed requested region. If no requested region has been set on the output, then the requested region will be set to the largest possible region. Once the requested region is set, Update() will make sure the specified requested region is up-to-date. This is a confusing side effect to users who are just calling Update() on a filter. A first call to Update() will cause the largest possible region to be updated. A second call to Update() will update that same region. If a modification to the upstream pipeline cause a filter to have a different largest possible region, this second call to Update() will not cause the output requested region to be reset to the new largest possible region. Instead, the output requested region will be the same as the last time Update() was called. To have a filter always to produce its largest possible region, users should call UpdateLargestPossibleRegion() instead.

Reimplemented from itk::ProcessObject.

virtual void itk::ProcessObject::UpdateLargestPossibleRegion  )  [virtual, inherited]
 

Like Update(), but sets the output requested region to the largest possible region for the output. This is the method users should call if they want the entire dataset to be processed. If a user wants to update the same output region as a previous call to Update() or a previous call to UpdateLargestPossibleRegion(), then they should call the method Update().

virtual void itk::ProcessObject::UpdateOutputData DataObject output  )  [virtual, inherited]
 

Actually generate new output

Reimplemented in itk::StreamingImageFilter< TInputImage, TOutputImage >.

virtual void itk::ProcessObject::UpdateOutputInformation  )  [virtual, inherited]
 

Update the information decribing the output data. This method transverses up the pipeline gathering modified time information. On the way back down the pipeline, this method calls GenerateOutputInformation() to set any necessary information about the output data objects. For instance, a filter that shrinks an image will need to provide an implementation for GenerateOutputInformation() that changes the spacing of the pixels. Such filters should call their superclass' implementation of GenerateOutputInformation prior to changing the information values they need (i.e. GenerateOutputInformation() should call Superclass::GenerateOutputInformation() prior to changing the information.

Reimplemented in itk::watershed::Segmenter< TInputImage >, and itk::VTKImageImport< TOutputImage >.

void itk::ProcessObject::UpdateProgress float  amount  )  [inherited]
 

Update the progress of the process object.

Sets the Progress ivar to amount and invokes any observers for the ProgressEvent. The parameter amount should be in [0,1] and is the cumulative (not incremental) progress.


Member Data Documentation

Allow people to add remove invoke observers (callbacks) to any ITK * object. This is an implementation of the subject/observer design * pattern. An observer is added by specifying an event to respond to * and an itk unsigned lon itk::Object::AddObserver)(const EventObject &event, Command *) const [inherited]
 

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 p7 * * In if the points are connected topologically as follows verbatim p4 p5 p0 p1 p2 p3 p6 p7 endverbatim* then you would itk::AutomaticTopologyMeshSource< TOutputMesh >::call
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

This is a global flag that controls whether any itk::Object::debug [inherited]
 

Definition at line 94 of file itkObject.h.

template<class TOutputMesh>
* endcode* * For proper pipeline itk::MeshSource< TOutputMesh >::execution [inherited]
 

Definition at line 100 of file itkMeshSource.h.

Push Pop an input of this process object These methods allow a* filter to model its input vector as a queue or stack These* routines may not be appropriate for all itk::ProcessObject::filters [protected, inherited]
 

Reimplemented in itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TSpeedImage, TLevelSet >, itk::ImageToImageFilter< TDeformationField, TDeformationField >, itk::ImageToImageFilter< TInputImage, TInputImage >, itk::ImageToImageFilter< TInputImage1, Functor::MakeJoin< TInputImage1, TInputImage2 >::ImageType >, itk::ImageToImageFilter< TInputImage, TSparseOutputImage >, itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TDataType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, BloxBoundaryPointImage< ::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< Image< SymmetricSecondRankTensor< double, 3 >, 3 >, Image< TPixel, 3 > >, itk::ImageToImageFilter< TInputImage, Image< unsigned long,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TSourceImage, BloxBoundaryProfileImage< ::itk::GetImageDimension< TSourceImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TOutputImage >, itk::ImageToImageFilter< FeatureImageType, ImageType >, itk::ImageToImageFilter< TImageType, TImageType >, itk::ImageToImageFilter< TInputImage, Image< unsigned char,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< BloxBoundaryPointImage< dim >, BloxCoreAtomImage< dim > >, itk::ImageToImageFilter< TInputImage, VectorImage< TProbabilityPrecisionType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TOutputValueType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, TClassifiedImage >, itk::ImageToImageFilter< TInputImage, TEigenValueImage >, itk::ImageToImageFilter< TInputVectorImage, Image< TLabelsType,::itk::GetImageDimension< TInputVectorImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage1, TInputImage1 >, itk::ImageToImageFilter< ImageType, ImageType >, itk::ImageToImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TLevelSet, TLevelSet >, itk::ImageToImageFilter< TMovingImage, TFixedImage >, itk::ImageToImageFilter< Image< TPixel, Dimension >, Image< std::complex< TPixel >, Dimension > >, itk::ImageToImageFilter< TImage, TImage >, itk::ImageToImageFilter< Image< std::complex< TPixel >, Dimension >, Image< TPixel, Dimension > >, itk::ImageToImageFilter< TInputImageType, TSparseOutputImageType >, itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >, itk::ImageToImageFilter< TImage, TImage >, and itk::ImageToImageFilter< ImageType, ImageType >.

Definition at line 303 of file itkProcessObject.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::given
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::given
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::given
 

Definition at line 202 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Graft the specified DataObject onto this ProcessObject s output* This method grabs a handle to the specified DataObject s bulk* data to used as its output s own bulk data It also copies the* region Origin from the* specified data object into this filter s output data object Most itk::MeshSource< TOutputMesh >::however [inherited]
 

Definition at line 79 of file itkMeshSource.h.

template<class TOutputMesh>
Graft the specified DataObject onto this ProcessObject s output* This method grabs a handle to the specified DataObject s bulk* data to used as its output s own bulk data It also copies the* region Origin from the* specified data object into this filter s output data object Most* itk::MeshSource< TOutputMesh >::importantly [inherited]
 

Definition at line 79 of file itkMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 p7 * * In if the points are connected topologically as follows verbatim p4 p5 p0 p1 p2 p3 p6 p7 endverbatim* then you would for itk::AutomaticTopologyMeshSource< TOutputMesh >::instance
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7* * itk::AutomaticTopologyMeshSource< TOutputMesh >::Lines
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3* * itk::AutomaticTopologyMeshSource< TOutputMesh >::Lines
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are and then the following* additional in* the order p2* * itk::AutomaticTopologyMeshSource< TOutputMesh >::Lines
 

Definition at line 202 of file itkAutomaticTopologyMeshSource.h.

TimeStamp itk::ProcessObject::m_OutputInformationMTime [protected, inherited]
 

Time when GenerateOutputInformation was last called.

Definition at line 428 of file itkProcessObject.h.

int itk::LightObject::m_ReferenceCount [mutable, protected, inherited]
 

Number of uses of this object by other objects.

Definition at line 119 of file itkLightObject.h.

SimpleFastMutexLock itk::LightObject::m_ReferenceCountLock [mutable, protected, inherited]
 

Mutex lock to protect modification to the reference count

Definition at line 122 of file itkLightObject.h.

bool itk::ProcessObject::m_Updating [protected, inherited]
 

This flag indicates when the pipeline is executing. It prevents infinite recursion when pipelines have loops.

Definition at line 425 of file itkProcessObject.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p0
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p0
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are itk::AutomaticTopologyMeshSource< TOutputMesh >::p0
 

Definition at line 272 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p0
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p0
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p0
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p0
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are itk::AutomaticTopologyMeshSource< TOutputMesh >::p0
 

Definition at line 248 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are itk::AutomaticTopologyMeshSource< TOutputMesh >::p0
 

Definition at line 196 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 272 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 248 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are and then the following* additional in* the order p2 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 202 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are and then the following* additional in* the order p2 itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 202 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 202 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are itk::AutomaticTopologyMeshSource< TOutputMesh >::p1
 

Definition at line 196 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 272 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 248 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are and then the following* additional in* the order p2 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 202 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are and then the following* additional in* the order p2 itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 202 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three and return its* ID If the points are and itk::AutomaticTopologyMeshSource< TOutputMesh >::p2
 

Definition at line 196 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p3
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 * itk::AutomaticTopologyMeshSource< TOutputMesh >::p3
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p3
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::p3
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and itk::AutomaticTopologyMeshSource< TOutputMesh >::p3
 

Definition at line 272 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p3
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p3
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p3
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 itk::AutomaticTopologyMeshSource< TOutputMesh >::p3
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p4
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p4
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p4
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::p4
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p5
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p5
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p5
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::p5
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p6
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p6
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p6
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order itk::AutomaticTopologyMeshSource< TOutputMesh >::p6
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p7
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 itk::AutomaticTopologyMeshSource< TOutputMesh >::p7
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 p7 * * In itk::AutomaticTopologyMeshSource< TOutputMesh >::particular
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add a vertex located at the given itk::AutomaticTopologyMeshSource< TOutputMesh >::point
 

Definition at line 177 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the hexahedron specified by the four itk::AutomaticTopologyMeshSource< TOutputMesh >::points
 

Definition at line 272 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three itk::AutomaticTopologyMeshSource< TOutputMesh >::points
 

Definition at line 248 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the triangle specified by the three itk::AutomaticTopologyMeshSource< TOutputMesh >::points
 

Definition at line 196 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the line specified by the two itk::AutomaticTopologyMeshSource< TOutputMesh >::points
 

Definition at line 184 of file itkAutomaticTopologyMeshSource.h.

Methods invoked by virtual 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. */ virtual void PrintSelf(std voi itk::LightObject::PrintHeader)(std::ostream &os, Indent indent) const [protected, inherited]
 

template<class TOutputMesh>
Add the hexahedron specified by the four and return its* ID If the points are and then the following* additional in* the order p7 p7* * itk::AutomaticTopologyMeshSource< TOutputMesh >::Quadrilaterals
 

Definition at line 278 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the point p0 if it s not already itk::AutomaticTopologyMeshSource< TOutputMesh >::there
 

Definition at line 161 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
Add the tetrahedron specified by the three and return its* ID If the points are and then the following* additional in* the order p3 p3* * itk::AutomaticTopologyMeshSource< TOutputMesh >::Triangles
 

Definition at line 254 of file itkAutomaticTopologyMeshSource.h.


The documentation for this class was generated from the following file:
Generated at Sun Jul 9 18:52:49 2006 for ITK by doxygen 1.4.2 written by Dimitri van Heesch, © 1997-2000