ITK
4.4.0
Insight Segmentation and Registration Toolkit
|
#include <itkSparseFieldLayer.h>
A very simple linked list that is used to manage nodes in a layer of a sparse field level-set solver.
Definition at line 152 of file itkSparseFieldLayer.h.
Classes | |
struct | RegionType |
Public Types | |
typedef ConstSparseFieldLayerIterator < NodeType > | ConstIterator |
typedef SmartPointer< const Self > | ConstPointer |
typedef SparseFieldLayerIterator < NodeType > | Iterator |
typedef TNodeType | NodeType |
typedef SmartPointer< Self > | Pointer |
typedef std::vector< RegionType > | RegionListType |
typedef SparseFieldLayer | Self |
typedef Object | Superclass |
typedef NodeType | ValueType |
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 | |
Iterator | Begin () |
ConstIterator | Begin () const |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
Iterator | End () |
ConstIterator | End () const |
NodeType * | Front () |
const NodeType * | Front () const |
virtual const char * | GetNameOfClass () const |
void | PopFront () |
void | PushFront (NodeType *n) |
unsigned int | Size () const |
RegionListType | SplitRegions (int num) const |
void | Unlink (NodeType *n) |
bool | Empty () const |
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 |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool flag) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Protected Member Functions | |
virtual void | PrintSelf (std::ostream &os, Indent indent) const |
SparseFieldLayer () | |
~SparseFieldLayer () | |
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 () |
Private Member Functions | |
void | operator= (const Self &) |
SparseFieldLayer (const Self &) | |
Private Attributes | |
NodeType * | m_HeadNode |
unsigned int | m_Size |
Additional Inherited Members | |
Protected Types inherited from itk::LightObject | |
typedef int | InternalReferenceCountType |
Protected Attributes inherited from itk::LightObject | |
InternalReferenceCountType | m_ReferenceCount |
SimpleFastMutexLock | m_ReferenceCountLock |
typedef ConstSparseFieldLayerIterator< NodeType > itk::SparseFieldLayer< TNodeType >::ConstIterator |
Const iterator type for the list.
Definition at line 179 of file itkSparseFieldLayer.h.
typedef SmartPointer< const Self > itk::SparseFieldLayer< TNodeType >::ConstPointer |
Definition at line 160 of file itkSparseFieldLayer.h.
typedef SparseFieldLayerIterator< NodeType > itk::SparseFieldLayer< TNodeType >::Iterator |
Iterator type for the list.
Definition at line 176 of file itkSparseFieldLayer.h.
typedef TNodeType itk::SparseFieldLayer< TNodeType >::NodeType |
Type of node stored in the linked list.
Definition at line 166 of file itkSparseFieldLayer.h.
typedef SmartPointer< Self > itk::SparseFieldLayer< TNodeType >::Pointer |
Definition at line 159 of file itkSparseFieldLayer.h.
typedef std::vector< RegionType > itk::SparseFieldLayer< TNodeType >::RegionListType |
Definition at line 187 of file itkSparseFieldLayer.h.
typedef SparseFieldLayer itk::SparseFieldLayer< TNodeType >::Self |
Standard typedefs.
Definition at line 157 of file itkSparseFieldLayer.h.
typedef Object itk::SparseFieldLayer< TNodeType >::Superclass |
Definition at line 158 of file itkSparseFieldLayer.h.
typedef NodeType itk::SparseFieldLayer< TNodeType >::ValueType |
Alias for the type of value stored in the list. Conforms to Standard Template Library vocabulary.
Definition at line 173 of file itkSparseFieldLayer.h.
|
protected |
|
protected |
|
private |
|
inline |
Returns an iterator pointing to the first node in the list.
Definition at line 225 of file itkSparseFieldLayer.h.
|
inline |
Returns a const iterator pointing to the first node in the list.
Definition at line 230 of file itkSparseFieldLayer.h.
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Object.
|
inline |
Returns TRUE if the list is empty, FALSE otherwise. Executes in constant time.
Definition at line 243 of file itkSparseFieldLayer.h.
|
inline |
Returns an iterator pointing one node past the end of the list.
Definition at line 234 of file itkSparseFieldLayer.h.
|
inline |
Returns a const iterator pointing one node past the end of the list.
Definition at line 238 of file itkSparseFieldLayer.h.
|
inline |
Returns a pointer to the first node in the list. Constant time.
Definition at line 191 of file itkSparseFieldLayer.h.
|
inline |
Returns a const pointer to the first node in the list. Constant time.
Definition at line 195 of file itkSparseFieldLayer.h.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::Object.
|
static |
Method for creation through the object factory.
|
private |
|
inline |
Unlinks the first node from the list. Constant time.
Definition at line 199 of file itkSparseFieldLayer.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::Object.
|
inline |
Links a node into the front of the list. Constant time.
Definition at line 207 of file itkSparseFieldLayer.h.
unsigned int itk::SparseFieldLayer< TNodeType >::Size | ( | ) | const |
Returns the number of elements in the list. Size() executes in constant time.
RegionListType itk::SparseFieldLayer< TNodeType >::SplitRegions | ( | int | num | ) | const |
Returns pointers to first and last+1 elements of num partitions of the itkSparseFieldLayer
|
inline |
Unlinks a node from the list
Definition at line 217 of file itkSparseFieldLayer.h.
|
private |
The anchor node of the list. m_HeadNode->Next is the first node in the list. If m_HeadNode->Next == m_HeadNode, then the list is empty.
Definition at line 269 of file itkSparseFieldLayer.h.
|
private |
Definition at line 270 of file itkSparseFieldLayer.h.