knncolle
Collection of KNN methods in C++
Loading...
Searching...
No Matches
knncolle.hpp
Go to the documentation of this file.
1#ifndef KNNCOLLE_HPP
2#define KNNCOLLE_HPP
3
4#include "Builder.hpp"
5#include "Prebuilt.hpp"
6#include "Matrix.hpp"
7
8#include "distances.hpp"
9#include "L2Normalized.hpp"
10
11#include "Bruteforce.hpp"
12#include "Vptree.hpp"
13
15#include "load_prebuilt.hpp"
16
17#include "NumericType.hpp"
18
29namespace knncolle {}
30
31#endif
32
Implements a brute-force search for nearest neighbors.
Interface to build nearest-neighbor indices.
Wrapper for L2 normalization prior to search.
Interface for the input matrix.
Preserve numeric types when saving prebuilt indices.
Interface for prebuilt nearest-neighbor indices.
Implements a vantage point (VP) tree to search for nearest neighbors.
Classes for distance calculations.
Find nearest neighbors from an existing index.
Load prebuilt search indices from disk.
Collection of KNN algorithms.
Definition Bruteforce.hpp:29