knncolle
Collection of KNN methods in C++
|
Implements a brute-force search for nearest neighbors. More...
#include "distances.hpp"
#include "NeighborQueue.hpp"
#include "Searcher.hpp"
#include "Builder.hpp"
#include "Prebuilt.hpp"
#include "MockMatrix.hpp"
#include "report_all_neighbors.hpp"
#include <vector>
#include <type_traits>
#include <limits>
Go to the source code of this file.
Classes | |
class | knncolle::BruteforceSearcher< Distance_, Dim_, Index_, Store_, Float_ > |
Brute-force nearest neighbor searcher. More... | |
class | knncolle::BruteforcePrebuilt< Distance_, Dim_, Index_, Store_, Float_ > |
Index for a brute-force nearest neighbor search. More... | |
class | knncolle::BruteforceBuilder< Distance_, Matrix_, Float_ > |
Perform a brute-force nearest neighbor search. More... | |
Namespaces | |
namespace | knncolle |
Collection of KNN algorithms. | |
Implements a brute-force search for nearest neighbors.