![]() |
ACloudViewer
3.9.4
A Modern Library for 3D Data Processing
|
#include <cstring>#include <cassert>#include <cmath>#include "FLANN/util/matrix.h"#include "FLANN/algorithms/nn_index.h"#include "FLANN/util/result_set.h"#include "FLANN/util/logger.h"#include "FLANN/util/timer.h"

Go to the source code of this file.
Namespaces | |
| flann | |
Functions | |
| int | flann::countCorrectMatches (size_t *neighbors, size_t *groundTruth, int n) |
| template<typename Distance > | |
| Distance::ResultType | flann::computeDistanceRaport (const Matrix< typename Distance::ElementType > &inputData, typename Distance::ElementType *target, size_t *neighbors, size_t *groundTruth, int veclen, int n, const Distance &distance) |
| template<typename Index , typename Distance > | |
| float | flann::search_with_ground_truth (Index &index, const Matrix< typename Distance::ElementType > &inputData, const Matrix< typename Distance::ElementType > &testData, const Matrix< size_t > &matches, int nn, int checks, float &time, typename Distance::ResultType &dist, const Distance &distance, int skipMatches) |
| template<typename Index , typename Distance > | |
| float | flann::test_index_checks (Index &index, const Matrix< typename Distance::ElementType > &inputData, const Matrix< typename Distance::ElementType > &testData, const Matrix< size_t > &matches, int checks, float &precision, const Distance &distance, int nn=1, int skipMatches=0) |
| template<typename Index , typename Distance > | |
| float | flann::test_index_precision (Index &index, const Matrix< typename Distance::ElementType > &inputData, const Matrix< typename Distance::ElementType > &testData, const Matrix< size_t > &matches, float precision, int &checks, const Distance &distance, int nn=1, int skipMatches=0) |
| template<typename Index , typename Distance > | |
| void | flann::test_index_precisions (Index &index, const Matrix< typename Distance::ElementType > &inputData, const Matrix< typename Distance::ElementType > &testData, const Matrix< int > &matches, float *precisions, int precisions_length, const Distance &distance, int nn=1, int skipMatches=0, float maxTime=0) |