DGtal 2.0.0
Loading...
Searching...
No Matches
DGtal::CellGeometryFunctions< TKSpace, 2, 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, 2, 2 >

Specialization for 2-cells in 2D.

Template Parameters
TKSpacean arbitrary model of CCellularGridSpaceND.

Definition at line 702 of file CellGeometry.h.

Member Typedef Documentation

◆ Cell

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

Definition at line 708 of file CellGeometry.h.

◆ KSpace

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

Definition at line 706 of file CellGeometry.h.

◆ Space

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

Definition at line 707 of file CellGeometry.h.

Member Function Documentation

◆ BOOST_CONCEPT_ASSERT()

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

◆ BOOST_STATIC_ASSERT()

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

◆ getIncidentCellsToPointels()

template<typename TKSpace >
template<typename PointelIterator >
static std::unordered_set< typename KSpace::Cell > DGtal::CellGeometryFunctions< TKSpace, 2, 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 2-cells to the given range of pointels [itB, itE).

Definition at line 718 of file CellGeometry.h.

720 {
721 std::unordered_set<typename KSpace::Cell> cells;
722 for ( auto it = itB; it != itE; ++it )
723 {
724 auto pointel = *it;
725 auto linelxp = K.uIncident( pointel, 0, true );
726 auto linelxm = K.uIncident( pointel, 0, false );
727 cells.insert( K.uIncident( linelxp, 1, true ) );
728 cells.insert( K.uIncident( linelxp, 1, false ) );
729 cells.insert( K.uIncident( linelxm, 1, true ) );
730 cells.insert( K.uIncident( linelxm, 1, false ) );
731 }
732 return cells;
733 }
KSpace K

References K.

◆ getIncidentCellsToPoints()

template<typename TKSpace >
template<typename PointIterator >
static std::unordered_set< typename KSpace::Cell > DGtal::CellGeometryFunctions< TKSpace, 2, 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 2-cells to the given range of points [itB, itE).
Note
General method. Note as efficient as specializations.

Definition at line 744 of file CellGeometry.h.

746 {
747 std::cout << "<2,2> specialization" << std::endl;
748 std::unordered_set<typename KSpace::Cell> cells;
749 for ( auto it = itB; it != itE; ++it )
750 {
751 auto pointel = K.uPointel( *it );
752 auto linelxp = K.uIncident( pointel, 0, true );
753 auto linelxm = K.uIncident( pointel, 0, false );
754 cells.insert( K.uIncident( linelxp, 1, true ) );
755 cells.insert( K.uIncident( linelxp, 1, false ) );
756 cells.insert( K.uIncident( linelxm, 1, true ) );
757 cells.insert( K.uIncident( linelxm, 1, false ) );
758 }
759 return cells;
760 }

References K.

◆ getIncidentKPointsToPoints()

template<typename TKSpace >
template<typename PointIterator >
static UnorderedSetByBlock< typename KSpace::Point, Splitter< typename KSpace::Point, uint64_t > > DGtal::CellGeometryFunctions< TKSpace, 2, 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 2-kpoints to the given range of points [itB, itE).

Definition at line 771 of file CellGeometry.h.

773 {
774 UnorderedSetByBlock< typename KSpace::Point,
775 Splitter< typename KSpace::Point, uint64_t> > kpoints;
776 for ( auto it = itB; it != itE; ++it )
777 {
778 auto kp = K.uKCoords( K.uPointel( *it ) );
779 kpoints.emplace( kp[ 0 ] - 1, kp[ 1 ] - 1 );
780 kpoints.emplace( kp[ 0 ] + 1, kp[ 1 ] - 1 );
781 kpoints.emplace( kp[ 0 ] - 1, kp[ 1 ] + 1 );
782 kpoints.emplace( kp[ 0 ] + 1, kp[ 1 ] + 1 );
783 }
784 return kpoints;
785 }
PointVector< dim, Integer > Point

References K.


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