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"
14
25namespace knncolle {}
26
27#endif
28
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.
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.
Collection of KNN algorithms.
Definition Bruteforce.hpp:23