ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkWatershedSegmentTree.h>
A data structure for storing segment merge information used in filters of the watershed segmentation algorithm. See itk::WatershedImageFilter for an overview.
Definition at line 47 of file itkWatershedSegmentTree.h.
Classes | |
struct | merge_comp |
struct | merge_t |
struct | sort_comp |
Public Types | |
typedef DequeType::const_iterator | ConstIterator |
typedef std::deque< merge_t > | DequeType |
typedef DequeType::iterator | Iterator |
typedef DequeType::value_type | ValueType |
Public Types inherited from itk::DataObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef std::string | DataObjectIdentifierType |
typedef std::vector< Pointer > ::size_type | DataObjectPointerArraySizeType |
typedef SmartPointer< Self > | Pointer |
typedef DataObject | Self |
typedef Object | Superclass |
Public Types inherited from itk::Object | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef Object | Self |
typedef LightObject | Superclass |
Public Types inherited from itk::LightObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef LightObject | Self |
Public Member Functions | |
const merge_t & | Back () const |
merge_t & | Back () |
Iterator | Begin () |
ConstIterator | Begin () const |
void | Clear () |
bool | Empty () const |
Iterator | End () |
ConstIterator | End () const |
const merge_t & | Front () const |
merge_t & | Front () |
void | Initialize () |
void | PopBack () |
void | PopFront () |
void | PushBack (const ValueType &t) |
void | PushFront (const ValueType &t) |
DequeType::size_type | Size () const |
Public Member Functions inherited from itk::DataObject | |
virtual void | CopyInformation (const DataObject *) |
virtual void | DataHasBeenGenerated () |
void | DisconnectPipeline () |
bool | GetDataReleased () const |
virtual const bool & | GetReleaseDataFlag () |
SmartPointerForwardReference < ProcessObject > | GetSource () const |
DataObjectPointerArraySizeType | GetSourceOutputIndex () const |
const DataObjectIdentifierType & | GetSourceOutputName () const |
virtual ModifiedTimeType | GetUpdateMTime () const |
virtual void | Graft (const DataObject *) |
virtual void | PrepareForNewData () |
virtual void | PropagateRequestedRegion () |
void | ReleaseData () |
virtual void | ReleaseDataFlagOff () |
virtual void | ReleaseDataFlagOn () |
virtual bool | RequestedRegionIsOutsideOfTheBufferedRegion () |
virtual void | ResetPipeline () |
void | SetReleaseDataFlag (bool flag) |
virtual void | SetRequestedRegion (const DataObject *) |
virtual void | SetRequestedRegionToLargestPossibleRegion () |
bool | ShouldIReleaseData () const |
virtual void | Update () |
virtual void | UpdateOutputData () |
virtual void | UpdateOutputInformation () |
virtual bool | VerifyRequestedRegion () |
void | SetPipelineMTime (ModifiedTimeType time) |
virtual const ModifiedTimeType & | GetPipelineMTime () |
virtual void | SetRealTimeStamp (RealTimeStamp _arg) |
virtual const RealTimeStamp & | GetRealTimeStamp () |
Public Member Functions inherited from itk::Object | |
unsigned long | AddObserver (const EventObject &event, Command *) |
unsigned long | AddObserver (const EventObject &event, Command *) const |
virtual void | DebugOff () const |
virtual void | DebugOn () const |
Command * | GetCommand (unsigned long tag) |
bool | GetDebug () const |
MetaDataDictionary & | GetMetaDataDictionary (void) |
const MetaDataDictionary & | GetMetaDataDictionary (void) const |
virtual ModifiedTimeType | GetMTime () const |
virtual const TimeStamp & | GetTimeStamp () const |
bool | HasObserver (const EventObject &event) const |
void | InvokeEvent (const EventObject &) |
void | InvokeEvent (const EventObject &) const |
virtual void | Modified () const |
virtual void | Register () const |
void | RemoveAllObservers () |
void | RemoveObserver (unsigned long tag) |
void | SetDebug (bool debugFlag) const |
void | SetMetaDataDictionary (const MetaDataDictionary &rhs) |
virtual void | SetReferenceCount (int) |
virtual void | UnRegister () const |
Public Member Functions inherited from itk::LightObject | |
virtual void | Delete () |
virtual int | GetReferenceCount () const |
itkCloneMacro (Self) | |
void | Print (std::ostream &os, Indent indent=0) const |
Protected Member Functions | |
void | operator= (const Self &) |
void | PrintSelf (std::ostream &os, Indent indent) const |
SegmentTree () | |
SegmentTree (const Self &) | |
virtual | ~SegmentTree () |
Protected Member Functions inherited from itk::DataObject | |
DataObject () | |
virtual void | PropagateResetPipeline () |
~DataObject () | |
Protected Member Functions inherited from itk::Object | |
Object () | |
bool | PrintObservers (std::ostream &os, Indent indent) const |
virtual void | SetTimeStamp (const TimeStamp &time) |
virtual | ~Object () |
Protected Member Functions inherited from itk::LightObject | |
virtual LightObject::Pointer | InternalClone () const |
LightObject () | |
virtual void | PrintHeader (std::ostream &os, Indent indent) const |
virtual void | PrintTrailer (std::ostream &os, Indent indent) const |
virtual | ~LightObject () |
Protected Attributes | |
DequeType | m_Deque |
typedef SegmentTree | Self |
typedef DataObject | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef TScalarType | ScalarType |
static Pointer | New () |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
virtual const char * | GetNameOfClass () const |
Additional Inherited Members | |
Static Public Member Functions inherited from itk::DataObject | |
static bool | GetGlobalReleaseDataFlag () |
static void | GlobalReleaseDataFlagOff () |
static void | GlobalReleaseDataFlagOn () |
static void | SetGlobalReleaseDataFlag (bool val) |
Protected Types inherited from itk::LightObject | |
typedef int | InternalReferenceCountType |
typedef DequeType::const_iterator itk::watershed::SegmentTree< TScalarType >::ConstIterator |
Definition at line 73 of file itkWatershedSegmentTree.h.
typedef SmartPointer< const Self > itk::watershed::SegmentTree< TScalarType >::ConstPointer |
Define itk Smart Pointers for this object
Definition at line 54 of file itkWatershedSegmentTree.h.
typedef std::deque< merge_t > itk::watershed::SegmentTree< TScalarType >::DequeType |
Define the container type used in this list data structure
Definition at line 71 of file itkWatershedSegmentTree.h.
typedef DequeType::iterator itk::watershed::SegmentTree< TScalarType >::Iterator |
Definition at line 72 of file itkWatershedSegmentTree.h.
typedef SmartPointer< Self > itk::watershed::SegmentTree< TScalarType >::Pointer |
Define itk Smart Pointers for this object
Definition at line 53 of file itkWatershedSegmentTree.h.
typedef TScalarType itk::watershed::SegmentTree< TScalarType >::ScalarType |
Define itk Smart Pointers for this object
Definition at line 56 of file itkWatershedSegmentTree.h.
typedef SegmentTree itk::watershed::SegmentTree< TScalarType >::Self |
Define itk Smart Pointers for this object
Definition at line 51 of file itkWatershedSegmentTree.h.
typedef DataObject itk::watershed::SegmentTree< TScalarType >::Superclass |
Define itk Smart Pointers for this object
Definition at line 52 of file itkWatershedSegmentTree.h.
typedef DequeType::value_type itk::watershed::SegmentTree< TScalarType >::ValueType |
Definition at line 74 of file itkWatershedSegmentTree.h.
|
inlineprotected |
Definition at line 166 of file itkWatershedSegmentTree.h.
|
inlineprotectedvirtual |
Definition at line 167 of file itkWatershedSegmentTree.h.
|
inlineprotected |
Definition at line 168 of file itkWatershedSegmentTree.h.
|
inline |
Returns a const reference to the back of the list (node with the greatest saliency value).
Definition at line 112 of file itkWatershedSegmentTree.h.
|
inline |
Returns a reference to the back of the list
Definition at line 120 of file itkWatershedSegmentTree.h.
|
inline |
Returns an iterator pointing to the first element in the list.
Definition at line 140 of file itkWatershedSegmentTree.h.
|
inline |
Returns a const iterator pointing to the first element in the list.
Definition at line 144 of file itkWatershedSegmentTree.h.
|
inline |
Clears the Deque completely
Definition at line 158 of file itkWatershedSegmentTree.h.
|
virtual |
Define itk Smart Pointers for this object
Reimplemented from itk::Object.
|
inline |
Returns TRUE if the SegmentTree is empty, FALSE if the SegmentTree is not empty.
Definition at line 102 of file itkWatershedSegmentTree.h.
|
inline |
Returns an iterator pointing one element past the last element in the list.
Definition at line 149 of file itkWatershedSegmentTree.h.
|
inline |
Returns a const iterator pointing one element past the last element in the list.
Definition at line 154 of file itkWatershedSegmentTree.h.
|
inline |
Returns a const reference to the front of the list (node with the least saliency value).
Definition at line 107 of file itkWatershedSegmentTree.h.
|
inline |
Returns a reference to the front of the list
Definition at line 116 of file itkWatershedSegmentTree.h.
|
virtual |
Define itk Smart Pointers for this object
Reimplemented from itk::DataObject.
|
virtual |
Standard DataObject routine to initialize. Returns the segment tree to a default state, deallocating memory.
Reimplemented from itk::DataObject.
|
static |
Define itk Smart Pointers for this object
|
inlineprotected |
Definition at line 169 of file itkWatershedSegmentTree.h.
|
inline |
Erases the node at the back of the list.
Definition at line 136 of file itkWatershedSegmentTree.h.
|
inline |
Erases the node at the front of the list.
Definition at line 132 of file itkWatershedSegmentTree.h.
|
protectedvirtual |
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::DataObject.
|
inline |
Inserts a node at the back of the list
Definition at line 128 of file itkWatershedSegmentTree.h.
|
inline |
Inserts a node at the front of the list.
Definition at line 124 of file itkWatershedSegmentTree.h.
|
inline |
Returns the size of the list.
Definition at line 97 of file itkWatershedSegmentTree.h.
|
protected |
Definition at line 172 of file itkWatershedSegmentTree.h.