DGtal  1.2.0
Public Types | Public Member Functions | Static Public Member Functions
DGtal::CellGeometryFunctions< TKSpace, 1, 2 > Struct Template Reference

#include <DGtal/geometry/volumes/CellGeometry.h>

Public Types

typedef TKSpace KSpace
 
typedef KSpace::Space Space
 
typedef KSpace::Cell Cell
 

Public Member Functions

 BOOST_CONCEPT_ASSERT ((concepts::CCellularGridSpaceND< TKSpace >))
 
 BOOST_STATIC_ASSERT (TKSpace::dimension==2)
 

Static Public Member Functions

template<typename PointelIterator >
static std::unordered_set< typename KSpace::CellgetIncidentCellsToPointels (const KSpace &K, PointelIterator itB, PointelIterator itE)
 
template<typename PointIterator >
static std::unordered_set< typename KSpace::CellgetIncidentCellsToPoints (const KSpace &K, PointIterator itB, PointIterator itE)
 
template<typename PointIterator >
static UnorderedSetByBlock< typename KSpace::Point, Splitter< typename KSpace::Point, uint64_t > > getIncidentKPointsToPoints (const KSpace &K, PointIterator itB, PointIterator itE)
 

Detailed Description

template<typename TKSpace>
struct DGtal::CellGeometryFunctions< TKSpace, 1, 2 >

Specialization for 1-cells in 2D.

Template Parameters
TKSpacean arbitrary model of CCellularGridSpaceND.

Definition at line 501 of file CellGeometry.h.

Member Typedef Documentation

◆ Cell

template<typename TKSpace >
typedef KSpace::Cell DGtal::CellGeometryFunctions< TKSpace, 1, 2 >::Cell

Definition at line 507 of file CellGeometry.h.

◆ KSpace

template<typename TKSpace >
typedef TKSpace DGtal::CellGeometryFunctions< TKSpace, 1, 2 >::KSpace

Definition at line 505 of file CellGeometry.h.

◆ Space

template<typename TKSpace >
typedef KSpace::Space DGtal::CellGeometryFunctions< TKSpace, 1, 2 >::Space

Definition at line 506 of file CellGeometry.h.

Member Function Documentation

◆ BOOST_CONCEPT_ASSERT()

template<typename TKSpace >
DGtal::CellGeometryFunctions< TKSpace, 1, 2 >::BOOST_CONCEPT_ASSERT ( (concepts::CCellularGridSpaceND< TKSpace >)  )

◆ BOOST_STATIC_ASSERT()

template<typename TKSpace >
DGtal::CellGeometryFunctions< TKSpace, 1, 2 >::BOOST_STATIC_ASSERT ( TKSpace::dimension  = =2)

◆ getIncidentCellsToPointels()

template<typename TKSpace >
template<typename PointelIterator >
static std::unordered_set<typename KSpace::Cell> DGtal::CellGeometryFunctions< TKSpace, 1, 2 >::getIncidentCellsToPointels ( const KSpace K,
PointelIterator  itB,
PointelIterator  itE 
)
inlinestatic
Template Parameters
PointelIteratorany model of forward iterator on pointels.
Parameters
Ka valid cellular grid space large enough to hold the cells.
itBthe start of a range of pointels.
itEpast the end of a range of pointels.
Returns
the incident 1-cells to the given range of pointels [itB, itE).

Definition at line 517 of file CellGeometry.h.

519  {
520  std::unordered_set<typename KSpace::Cell> cells;
521  for ( auto it = itB; it != itE; ++it )
522  {
523  auto pointel = *it;
524  cells.insert( K.uIncident( pointel, 0, true ) );
525  cells.insert( K.uIncident( pointel, 0, false ) );
526  cells.insert( K.uIncident( pointel, 1, true ) );
527  cells.insert( K.uIncident( pointel, 1, false ) );
528  }
529  return cells;
530  }
KSpace K

References K.

◆ getIncidentCellsToPoints()

template<typename TKSpace >
template<typename PointIterator >
static std::unordered_set<typename KSpace::Cell> DGtal::CellGeometryFunctions< TKSpace, 1, 2 >::getIncidentCellsToPoints ( const KSpace K,
PointIterator  itB,
PointIterator  itE 
)
inlinestatic
Template Parameters
PointIteratorany model of forward iterator on points.
Parameters
Ka valid cellular grid space large enough to hold the cells.
itBthe start of a range of points.
itEpast the end of a range of points.
Returns
the incident 1-cells to the given range of points [itB, itE).

Definition at line 540 of file CellGeometry.h.

542  {
543  std::unordered_set<typename KSpace::Cell> cells;
544  for ( auto it = itB; it != itE; ++it )
545  {
546  auto pointel = K.uPointel( *it );
547  cells.insert( K.uIncident( pointel, 0, true ) );
548  cells.insert( K.uIncident( pointel, 0, false ) );
549  cells.insert( K.uIncident( pointel, 1, true ) );
550  cells.insert( K.uIncident( pointel, 1, false ) );
551  }
552  return cells;
553  }

References K.

◆ getIncidentKPointsToPoints()

template<typename TKSpace >
template<typename PointIterator >
static UnorderedSetByBlock< typename KSpace::Point, Splitter< typename KSpace::Point, uint64_t > > DGtal::CellGeometryFunctions< TKSpace, 1, 2 >::getIncidentKPointsToPoints ( const KSpace K,
PointIterator  itB,
PointIterator  itE 
)
inlinestatic
Template Parameters
PointIteratorany model of forward iterator on points.
Parameters
Ka valid cellular grid space large enough to hold the cells.
itBthe start of a range of points.
itEpast the end of a range of points.
Returns
the incident 1-kpoints to the given range of points [itB, itE).

Definition at line 564 of file CellGeometry.h.

566  {
567  UnorderedSetByBlock< typename KSpace::Point,
568  Splitter< typename KSpace::Point, uint64_t > > kpoints;
569  for ( auto it = itB; it != itE; ++it )
570  {
571  auto kp = K.uKCoords( K.uPointel( *it ) );
572  kpoints.emplace( kp[ 0 ] , kp[ 1 ] - 1 );
573  kpoints.emplace( kp[ 0 ] - 1, kp[ 1 ] );
574  kpoints.emplace( kp[ 0 ] + 1, kp[ 1 ] );
575  kpoints.emplace( kp[ 0 ] , kp[ 1 ] + 1 );
576  }
577  return kpoints;
578  }
MyPointD Point
Definition: testClone2.cpp:383

References K.


The documentation for this struct was generated from the following file: