|
Ponca
7d8ac87a7de01d881c9fde3c42e397b44bffb901
Point Cloud Analysis library
|
Variant to the KdTree Traits type that uses pointers as internal storage instead of an STL-like container. More...
#include <kdTreeTraits.h>
Collaboration diagram for Ponca::KdTreePointerTraits< _DataPoint, _NodeType >:Public Types | |
| enum | { MAX_DEPTH = 32 } |
| using | DataPoint = _DataPoint |
| The type used to store point data. | |
| using | IndexType = int |
| using | LeafSizeType = unsigned short |
| using | PointContainer = DataPoint * |
| using | IndexContainer = IndexType * |
| using | NodeIndexType = std::size_t |
| using | NodeType = _NodeType< IndexType, NodeIndexType, DataPoint, LeafSizeType > |
| using | NodeContainer = NodeType * |
Variant to the KdTree Traits type that uses pointers as internal storage instead of an STL-like container.
| _NodeType | Type used to store nodes, set by default to #KdTreeDefaultNode |
Definition at line 353 of file kdTreeTraits.h.
| using Ponca::KdTreePointerTraits< _DataPoint, _NodeType >::DataPoint = _DataPoint |
The type used to store point data.
Must provide Scalar and VectorType aliases.
VectorType must provide a squaredNorm() function returning a Scalar, as well as a maxCoeff(int*) function returning the dimension index of its largest scalar in its output parameter (e.g. 0 for x, 1 for y, etc.).
Definition at line 372 of file kdTreeTraits.h.
| using Ponca::KdTreePointerTraits< _DataPoint, _NodeType >::IndexContainer = IndexType* |
Definition at line 378 of file kdTreeTraits.h.
| using Ponca::KdTreePointerTraits< _DataPoint, _NodeType >::IndexType = int |
Definition at line 373 of file kdTreeTraits.h.
| using Ponca::KdTreePointerTraits< _DataPoint, _NodeType >::LeafSizeType = unsigned short |
Definition at line 374 of file kdTreeTraits.h.
| using Ponca::KdTreePointerTraits< _DataPoint, _NodeType >::NodeContainer = NodeType* |
Definition at line 383 of file kdTreeTraits.h.
| using Ponca::KdTreePointerTraits< _DataPoint, _NodeType >::NodeIndexType = std::size_t |
Definition at line 381 of file kdTreeTraits.h.
| using Ponca::KdTreePointerTraits< _DataPoint, _NodeType >::NodeType = _NodeType<IndexType, NodeIndexType, DataPoint, LeafSizeType> |
Definition at line 382 of file kdTreeTraits.h.
| using Ponca::KdTreePointerTraits< _DataPoint, _NodeType >::PointContainer = DataPoint* |
Definition at line 377 of file kdTreeTraits.h.