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 "MockMatrix.hpp"
7
8#include "distances.hpp"
9#include "L2Normalized.hpp"
10
11#include "Bruteforce.hpp"
12#include "Vptree.hpp"
13#include "Kmknn.hpp"
15
26namespace knncolle {}
27
28#endif
29
Implements a brute-force search for nearest neighbors.
Interface to build nearest-neighbor indices.
Implements the k-means with k-nearest neighbors (KMKNN) algorithm.
Wrapper for L2 normalization prior to search.
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:22