author | Dmitriy Morozov <dmitriy@mrzv.org> |
Thu, 18 Jun 2009 13:03:18 -0700 (2009-06-18) | |
changeset 4 | d88e548a9aeb |
parent 2 | cbe1fa5e2993 |
child 5 | 4aed2049d9cc |
permissions | -rw-r--r-- |
0 | 1 |
#include <boost/python.hpp> |
2 |
#include <boost/python/stl_iterator.hpp> |
|
3 |
#include <boost/shared_ptr.hpp> |
|
4 |
#include <boost/functional/hash.hpp> |
|
5 |
namespace bp = boost::python; |
|
6 |
||
7 |
#include <ANN/ANN.h> |
|
8 |
#include <iostream> |
|
9 |
||
10 |
// Constructor from list TODO: change to iterator |
|
11 |
boost::shared_ptr<ANNkd_tree> init_from_list(bp::list lst) |
|
12 |
{ |
|
13 |
int dimension = bp::len(lst[0]); |
|
14 |
int npts = bp::len(lst); |
|
15 |
ANNpointArray dataPts = annAllocPts(npts, dimension); |
|
16 |
||
17 |
// Convert points from Python list to ANNpointArray |
|
18 |
for (unsigned p = 0; p < bp::len(lst); ++p) |
|
19 |
{ |
|
20 |
ANNpoint& pt = dataPts[p]; |
|
21 |
for (unsigned c = 0; c < dimension; ++c) |
|
22 |
pt[c] = bp::extract<ANNcoord>(lst[p][c]); |
|
23 |
} |
|
24 |
||
25 |
boost::shared_ptr<ANNkd_tree> p(new ANNkd_tree(dataPts, npts, dimension)); |
|
26 |
return p; |
|
27 |
} |
|
28 |
||
1
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
29 |
bp::tuple search(ANNkd_tree& kdtree, bp::list q, int k, double eps, bool priority = false) |
0 | 30 |
{ |
31 |
ANNpoint annq = annAllocPt(bp::len(q)); |
|
32 |
for (unsigned c = 0; c < bp::len(q); ++c) |
|
33 |
annq[c] = bp::extract<ANNcoord>(q[c]); |
|
34 |
||
35 |
ANNidxArray nn_idx = new ANNidx[k]; |
|
36 |
ANNdistArray dists = new ANNdist[k]; |
|
37 |
||
1
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
38 |
if (priority) |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
39 |
kdtree.annkPriSearch(annq, k, nn_idx, dists, eps); |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
40 |
else |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
41 |
kdtree.annkSearch(annq, k, nn_idx, dists, eps); |
0 | 42 |
|
43 |
bp::list indices, distances; |
|
44 |
for (unsigned i = 0; i < k; ++i) |
|
45 |
{ |
|
46 |
indices.append(nn_idx[i]); |
|
47 |
distances.append(dists[i]); |
|
48 |
} |
|
49 |
||
50 |
delete nn_idx; delete dists; |
|
51 |
return bp::make_tuple(indices, distances); |
|
52 |
} |
|
53 |
||
4
d88e548a9aeb
Removed unnecessary priority parameter from fixed radius search
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
2
diff
changeset
|
54 |
bp::tuple k_fixed_radius_search(ANNkd_tree& kdtree, bp::list q, double sqRad, int k, double eps) |
2
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
55 |
{ |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
56 |
ANNpoint annq = annAllocPt(bp::len(q)); |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
57 |
for (unsigned c = 0; c < bp::len(q); ++c) |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
58 |
annq[c] = bp::extract<ANNcoord>(q[c]); |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
59 |
|
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
60 |
ANNidxArray nn_idx = new ANNidx[k]; |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
61 |
ANNdistArray dists = new ANNdist[k]; |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
62 |
|
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
63 |
int kball = kdtree.annkFRSearch(annq, k, sqRad, nn_idx, dists, eps); |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
64 |
|
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
65 |
bp::list indices, distances; |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
66 |
for (unsigned i = 0; i < k; ++i) |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
67 |
{ |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
68 |
if (nn_idx[i] != ANN_NULL_IDX) |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
69 |
indices.append(nn_idx[i]); |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
70 |
if (dists[i] != ANN_DIST_INF) |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
71 |
distances.append(dists[i]); |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
72 |
} |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
73 |
|
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
74 |
delete nn_idx; delete dists; |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
75 |
return bp::make_tuple(indices, distances, kball); |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
76 |
} |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
77 |
|
1
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
78 |
bp::tuple ksearch(ANNkd_tree& kdtree, bp::list q, int k, double eps) |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
79 |
{ |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
80 |
return search(kdtree, q, k, eps, false); |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
81 |
} |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
82 |
|
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
83 |
bp::tuple k_priority_search(ANNkd_tree& kdtree, bp::list q, int k, double eps) |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
84 |
{ |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
85 |
return search(kdtree, q, k, eps, true); |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
86 |
} |
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
87 |
|
0 | 88 |
|
89 |
void export_ann_kd_tree() |
|
90 |
{ |
|
91 |
bp::class_<ANNkd_tree>("KDTree") |
|
92 |
.def("__init__", bp::make_constructor(&init_from_list)) |
|
93 |
||
2
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
94 |
.def("kSearch", &ksearch) |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
95 |
.def("kPriSearch", &k_priority_search) |
cbe1fa5e2993
Added fixed radius search, and renamed methods to match C++ names
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
1
diff
changeset
|
96 |
.def("kFRSearch", &k_fixed_radius_search) |
1
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
97 |
|
0 | 98 |
.def("__len__", &ANNkd_tree::nPoints) |
99 |
.def("dim", &ANNkd_tree::theDim) |
|
100 |
; |
|
1
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
101 |
|
d6060e9b11c4
Added k_priority_search and max_pts_visit
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
102 |
bp::def("max_pts_visit", &annMaxPtsVisit); |
0 | 103 |
} |