-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbrute_force_search.cpp
73 lines (64 loc) · 2.57 KB
/
brute_force_search.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* brute_force_search.cpp
*
* Author: Fabian Meyer
* Created On: 31 Oct 2019
*/
#include <iostream>
#include <knncpp.h>
typedef Eigen::MatrixXd Matrix;
typedef knncpp::Matrixi Matrixi;
int main()
{
// Define some data points, which should be searched.
// Each column defines one datapoint.
Matrix dataPoints(3, 9);
dataPoints << 1, 2, 3, 1, 2, 3, 1, 2, 3,
2, 1, 0, 3, 2, 1, 0, 3, 4,
3, 1, 3, 1, 3, 4, 4, 2, 1;
// Create a BruteForce object and set the data points.
// Data is not copied by default, You can also pass an additional bool flag
// to create a data copy.
// You can also use the setData() method to set the data at a later point.
// The distance type is defined by the second template parameter.
// Currently ManhattenDistance, EuclideanDistance, ChebyshevDistance,
// MinkowskiDistance and HammingDistance are available.
knncpp::BruteForce<double, knncpp::EuclideanDistance<double>> bruteforce(dataPoints);
// Set if the resulting neighbors should be sorted in ascending order after
// a successfull search.
// This consumes some time during the query.
// Default is true.
bruteforce.setSorted(true);
// Set if the root should be taken of the distances after a successful search.
// This consumes some time during the query.
// Default is false.
bruteforce.setTakeRoot(true);
// Set the maximum inclusive distance for the query. Set to 0 or negative
// to disable maximum distances.
// Default is 0.
bruteforce.setMaxDistance(2.5 * 2.5);
// Set how many threads should be used during the query. Set to 0 or
// negative to autodetect the optimal number of threads (OpenMP only).
// Default is 1.
bruteforce.setThreads(2);
// Create a querypoint. We will search for this points nearest neighbors.
Matrix queryPoints(3, 1);
queryPoints << 0, 1, 0;
Matrixi indices;
Matrix distances;
// Search for 3 nearest neighbors.
// The matrices indices and distances hold the index and distance of the
// respective nearest neighbors.
// Their value is set to -1 if no further neighbor was found.
bruteforce.query(queryPoints, 3, indices, distances);
// Do something with the results.
std::cout
<< "Data points:" << std::endl
<< dataPoints << std::endl
<< "Query points:" << std::endl
<< queryPoints << std::endl
<< "Neighbor indices:" << std::endl
<< indices << std::endl
<< "Neighbor distances:" << std::endl
<< distances << std::endl;
return 0;
}