uvgVPCCenc 1.0.0
uvgVPCCenc is an open-source real-time V-PCC encoder library written in C++ from scratch.
|
#include <nanoflann.hpp>
Public Member Functions | |
ResultItem ()=default | |
ResultItem (const IndexType index, const DistanceType distance) | |
Public Attributes | |
IndexType | first |
Index of the sample in the dataset. | |
DistanceType | second |
Distance from sample to query point. | |
Each result element in RadiusResultSet. Note that distances and indices are named first
and second
to keep backward-compatibility with the std::pair<>
type used in the past. In contrast, this structure is ensured to be std::is_standard_layout
so it can be used in wrappers to other languages. See: https://github.com/jlblancoc/nanoflann/issues/166
|
default |
|
inline |
IndexType nanoflann::ResultItem< IndexType, DistanceType >::first |
Index of the sample in the dataset.
DistanceType nanoflann::ResultItem< IndexType, DistanceType >::second |
Distance from sample to query point.