|
Ponca
7d8ac87a7de01d881c9fde3c42e397b44bffb901
Point Cloud Analysis library
|
Input iterator to read the KdTreeKNearestQueryBase object.
More...
#include <kdTreeKNearestIterator.h>
Collaboration diagram for Ponca::KdTreeKNearestIterator< Index, DataPoint >:Public Types | |
| using | iterator_category = std::input_iterator_tag |
| using | difference_type = std::ptrdiff_t |
| using | value_type = Index |
| using | pointer = Index * |
| using | reference = const Index & |
| using | Scalar = typename DataPoint::Scalar |
| using | Iterator = typename limited_priority_queue< IndexSquaredDistance< Index, Scalar > >::iterator |
Public Member Functions | |
| KdTreeKNearestIterator (const Iterator &iterator) | |
| bool | operator!= (const KdTreeKNearestIterator &other) const |
| Inequality operand. | |
| bool | operator== (const KdTreeKNearestIterator &other) const |
| Equality operand. | |
| KdTreeKNearestIterator & | operator++ () |
| Prefix increment. | |
| KdTreeKNearestIterator | operator++ (int) |
| Postfix increment. | |
| void | operator+= (int i) |
| Value increment. | |
| reference | operator* () const |
| Dereference operator. | |
Protected Attributes | |
| Iterator | m_iterator |
Input iterator to read the KdTreeKNearestQueryBase object.
As this is an input iterator, we don't guarantee anything other than reading the values with it. If you need to operate on the values of this iterator with algorithms that relies on forward iterator functionalities, you should copy the index values in an STL-like container.
Definition at line 26 of file kdTreeKNearestIterator.h.
| using Ponca::KdTreeKNearestIterator< Index, DataPoint >::difference_type = std::ptrdiff_t |
Definition at line 30 of file kdTreeKNearestIterator.h.
| using Ponca::KdTreeKNearestIterator< Index, DataPoint >::Iterator = typename limited_priority_queue<IndexSquaredDistance<Index, Scalar> >::iterator |
Definition at line 36 of file kdTreeKNearestIterator.h.
| using Ponca::KdTreeKNearestIterator< Index, DataPoint >::iterator_category = std::input_iterator_tag |
Definition at line 29 of file kdTreeKNearestIterator.h.
| using Ponca::KdTreeKNearestIterator< Index, DataPoint >::pointer = Index* |
Definition at line 32 of file kdTreeKNearestIterator.h.
| using Ponca::KdTreeKNearestIterator< Index, DataPoint >::reference = const Index& |
Definition at line 33 of file kdTreeKNearestIterator.h.
| using Ponca::KdTreeKNearestIterator< Index, DataPoint >::Scalar = typename DataPoint::Scalar |
Definition at line 35 of file kdTreeKNearestIterator.h.
| using Ponca::KdTreeKNearestIterator< Index, DataPoint >::value_type = Index |
Definition at line 31 of file kdTreeKNearestIterator.h.
|
inline |
Definition at line 39 of file kdTreeKNearestIterator.h.
|
inline |
Inequality operand.
Definition at line 44 of file kdTreeKNearestIterator.h.
|
inline |
Dereference operator.
Definition at line 74 of file kdTreeKNearestIterator.h.
|
inline |
Prefix increment.
Definition at line 56 of file kdTreeKNearestIterator.h.
|
inline |
Postfix increment.
Definition at line 63 of file kdTreeKNearestIterator.h.
|
inline |
Value increment.
Definition at line 71 of file kdTreeKNearestIterator.h.
|
inline |
Equality operand.
Definition at line 50 of file kdTreeKNearestIterator.h.
|
protected |
Definition at line 77 of file kdTreeKNearestIterator.h.