|
DGtal 1.4.2
|
#include <DGtal/topology/ExplicitDigitalSurface.h>
Public Types | |
| typedef Tracker | Self |
| typedef ExplicitDigitalSurface< TKSpace, TSurfelPredicate > | DigitalSurfaceContainer |
| typedef TKSpace::SCell | Surfel |
| typedef TKSpace | KSpace |
| typedef SurfelNeighborhood< KSpace > | Neighborhood |
Public Member Functions | |
| Tracker (ConstAlias< DigitalSurfaceContainer > aSurface, const Surfel &s) | |
| Tracker (const Tracker &other) | |
| ~Tracker () | |
| const DigitalSurfaceContainer & | surface () const |
| const Surfel & | current () const |
| Dimension | orthDir () const |
| void | move (const Surfel &s) |
| uint8_t | adjacent (Surfel &s, Dimension d, bool pos) const |
Private Attributes | |
| const DigitalSurfaceContainer & | mySurface |
| Neighborhood | myNeighborhood |
A model of CDigitalSurfaceTracker for ExplicitDigitalSurface.
Definition at line 88 of file ExplicitDigitalSurface.h.
| ExplicitDigitalSurface<TKSpace,TSurfelPredicate> DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::DigitalSurfaceContainer |
Definition at line 94 of file ExplicitDigitalSurface.h.
| TKSpace DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::KSpace |
Definition at line 98 of file ExplicitDigitalSurface.h.
| SurfelNeighborhood<KSpace> DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::Neighborhood |
Definition at line 99 of file ExplicitDigitalSurface.h.
| Tracker DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::Self |
Definition at line 92 of file ExplicitDigitalSurface.h.
| TKSpace::SCell DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::Surfel |
Definition at line 95 of file ExplicitDigitalSurface.h.
| DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::Tracker | ( | ConstAlias< DigitalSurfaceContainer > | aSurface, |
| const Surfel & | s ) |
Constructor from surface container and surfel.
| aSurface | the container describing the surface. |
| s | the surfel on which the tracker is initialized. |
| DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::Tracker | ( | const Tracker & | other | ) |
Copy constructor.
| other | the object to clone. |
| DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::~Tracker | ( | ) |
Destructor.
| uint8_t DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::adjacent | ( | Surfel & | s, |
| Dimension | d, | ||
| bool | pos ) const |
Computes the surfel adjacent to 'current()' in the direction [d] along orientation [pos].
| s | (modified) set to the adjacent surfel in the specified direction d and orientation pos if it exists. Otherwise unchanged (method returns 0 in this case). |
| d | any direction different from 'orthDir()'. |
| pos | when 'true' look in positive direction along [track_dir] axis, 'false' look in negative direction. |
| const Surfel & DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::current | ( | ) | const |
| void DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::move | ( | const Surfel & | s | ) |
Moves the tracker to the given valid surfel.
| s | the surfel on which the tracker is moved. |
| Dimension DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::orthDir | ( | ) | const |
| const DigitalSurfaceContainer & DGtal::ExplicitDigitalSurface< TKSpace, TSurfelPredicate >::Tracker::surface | ( | ) | const |
|
private |
the current surfel neighborhood, the object that holds the necessary information for determining neighbors.
Definition at line 159 of file ExplicitDigitalSurface.h.
|
private |
a reference to the digital surface container on which is the tracker.
Definition at line 156 of file ExplicitDigitalSurface.h.