Tagged Questions
0
votes
2answers
43 views
KD Tree alternative/variant for weighted data
I'm using a static KD-Tree for nearest neighbor search in 3D space. However, the client's specifications have now changed so that I'll need a weighted nearest neighbor search instead. For example, ...
0
votes
1answer
54 views
return n indices of non-identical nearest neighbor vectors
In a set of D dimension vectors, the nearest neighbor algorithm can efficiently acquire the n nearest neighbors for each vector in the entire set.
However, in such set, if there are multiple ...
25
votes
12answers
5k views
Nearest neighbors in high-dimensional data?
I have asked a question a few days back on how to find the nearest neighbors for a given vector. My vector is now 21 dimensions and before I proceed further, because I am not from the domain of ...
1
vote
1answer
629 views
How to implement nearest neighbor search using KDTrees?
So, I'm implementing a KD-Tree to do a nearest neighbor search. I've got the building the tree part working, but I don't think I understand the search part completely.
About traversing the tree to ...
5
votes
2answers
2k views
Is k-d tree efficient for kNN search. k nearest neighbors search
I have to implement k nearest neighbors search for 10 dimensional data in kd-tree.
But problem is that my algorithm is very fast for k=1, but as much as 2000x slower for k>1 (k=2,5,10,20,100)
Is ...
5
votes
10answers
4k views
How to find k nearest neighbors to the median of n distinct numbers in O(n) time?
I can use the median of medians selection algorithm to find the median in O(n). Also, I know that after the algorithm is done, all the elements to the left of the median are less that the median and ...