![]() |
ITK
5.4.0
Insight Toolkit
|
#include <itkSparseFieldLayer.h>
Classes | |
struct | RegionType |
Public Types | |
using | ConstIterator = ConstSparseFieldLayerIterator< NodeType > |
using | ConstPointer = SmartPointer< const Self > |
using | Iterator = SparseFieldLayerIterator< NodeType > |
using | NodeType = TNodeType |
using | Pointer = SmartPointer< Self > |
using | RegionListType = std::vector< RegionType > |
using | Self = SparseFieldLayer |
using | Superclass = Object |
using | ValueType = NodeType |
![]() | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = Object |
using | Superclass = LightObject |
![]() | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = LightObject |
Public Member Functions | |
Iterator | Begin () |
ConstIterator | Begin () 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 |
![]() | |
unsigned long | AddObserver (const EventObject &event, Command *) |
unsigned long | AddObserver (const EventObject &event, Command *) const |
unsigned long | AddObserver (const EventObject &event, std::function< void(const EventObject &)> function) const |
LightObject::Pointer | CreateAnother () const override |
virtual void | DebugOff () const |
virtual void | DebugOn () const |
Command * | GetCommand (unsigned long tag) |
bool | GetDebug () const |
MetaDataDictionary & | GetMetaDataDictionary () |
const MetaDataDictionary & | GetMetaDataDictionary () 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 |
void | Register () const override |
void | RemoveAllObservers () |
void | RemoveObserver (unsigned long tag) |
void | SetDebug (bool debugFlag) const |
void | SetReferenceCount (int) override |
void | UnRegister () const noexcept override |
void | SetMetaDataDictionary (const MetaDataDictionary &rhs) |
void | SetMetaDataDictionary (MetaDataDictionary &&rrhs) |
virtual void | SetObjectName (std::string _arg) |
virtual const std::string & | GetObjectName () const |
![]() | |
Pointer | Clone () const |
virtual void | Delete () |
virtual int | GetReferenceCount () const |
itkTypeMacroNoParent (LightObject) | |
void | Print (std::ostream &os, Indent indent=0) const |
Static Public Member Functions | |
static Pointer | New () |
![]() | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool val) |
![]() | |
static void | BreakOnError () |
static Pointer | New () |
Protected Member Functions | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
SparseFieldLayer () | |
~SparseFieldLayer () override | |
![]() | |
Object () | |
bool | PrintObservers (std::ostream &os, Indent indent) const |
virtual void | SetTimeStamp (const TimeStamp &timeStamp) |
~Object () override | |
![]() | |
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 Attributes | |
NodeType * | m_HeadNode {} |
unsigned int | m_Size {} |
Additional Inherited Members | |
![]() | |
std::atomic< int > | m_ReferenceCount {} |
A very simple linked list that is used to manage nodes in a layer of a sparse field level-set solver.
Definition at line 161 of file itkSparseFieldLayer.h.
using itk::SparseFieldLayer< TNodeType >::ConstIterator = ConstSparseFieldLayerIterator<NodeType> |
Const iterator type for the list.
Definition at line 189 of file itkSparseFieldLayer.h.
using itk::SparseFieldLayer< TNodeType >::ConstPointer = SmartPointer<const Self> |
Definition at line 170 of file itkSparseFieldLayer.h.
using itk::SparseFieldLayer< TNodeType >::Iterator = SparseFieldLayerIterator<NodeType> |
Iterator type for the list.
Definition at line 186 of file itkSparseFieldLayer.h.
using itk::SparseFieldLayer< TNodeType >::NodeType = TNodeType |
Type of node stored in the linked list.
Definition at line 179 of file itkSparseFieldLayer.h.
using itk::SparseFieldLayer< TNodeType >::Pointer = SmartPointer<Self> |
Definition at line 169 of file itkSparseFieldLayer.h.
using itk::SparseFieldLayer< TNodeType >::RegionListType = std::vector<RegionType> |
Definition at line 198 of file itkSparseFieldLayer.h.
using itk::SparseFieldLayer< TNodeType >::Self = SparseFieldLayer |
Standard type alias.
Definition at line 167 of file itkSparseFieldLayer.h.
using itk::SparseFieldLayer< TNodeType >::Superclass = Object |
Definition at line 168 of file itkSparseFieldLayer.h.
using itk::SparseFieldLayer< TNodeType >::ValueType = NodeType |
Alias for the type of value stored in the list. Conforms to Standard Template Library vocabulary.
Definition at line 183 of file itkSparseFieldLayer.h.
|
protected |
|
overrideprotected |
|
inline |
Returns an iterator pointing to the first node in the list.
Definition at line 246 of file itkSparseFieldLayer.h.
|
inline |
Returns a const iterator pointing to the first node in the list.
Definition at line 254 of file itkSparseFieldLayer.h.
|
inline |
Returns TRUE if the list is empty, FALSE otherwise. Executes in constant time.
Definition at line 276 of file itkSparseFieldLayer.h.
|
inline |
Returns an iterator pointing one node past the end of the list.
Definition at line 261 of file itkSparseFieldLayer.h.
|
inline |
Returns a const iterator pointing one node past the end of the list.
Definition at line 268 of file itkSparseFieldLayer.h.
|
inline |
Returns a pointer to the first node in the list. Constant time.
Definition at line 203 of file itkSparseFieldLayer.h.
|
inline |
Returns a const pointer to the first node in the list. Constant time.
Definition at line 210 of file itkSparseFieldLayer.h.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::Object.
|
static |
Method for creation through the object factory.
|
inline |
Unlinks the first node from the list. Constant time.
Definition at line 217 of file itkSparseFieldLayer.h.
|
overrideprotectedvirtual |
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 226 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 237 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 308 of file itkSparseFieldLayer.h.
|
private |
Definition at line 309 of file itkSparseFieldLayer.h.