2
votes
1answer
148 views

KNN search with signed metrics

I am looking for a C++ library that allows to efficiently find the k-nearest neighbors of a point in a point set, using the squared pseudo norm : where my third coordinate may or may not have a ...
0
votes
3answers
1k views

K-nearest neighbour C/C++ implementation

Where can I find an serial C/C++ implementation of the k-nearest neighbour algorithm? Do you know of any library that has this? I have found openCV but the implementation is already parallel. I want ...
3
votes
0answers
199 views

opencv knearest neighbor

I am using CVKnearest Class in opencv to classify 6 classes with 10 features as follows: CvKNearest knn(trainData, trainClasses, Mat(), false, K ); then I use : response = ...
0
votes
1answer
194 views

A nearest neighbour when edge costs are asymmetric, some doubts

To clarify my post, I have edited it based on comments. I was thinking how to implement a nearest neighbour search efficiently when edge costs are asymmetric. I'm thinking a range of cities something ...
2
votes
4answers
220 views

kNN with dynamic insertions in high-dim space

I am looking for a method to do fast nearest neighbour (hopefully O(log n)) for high dimensional points (typically ~11-13 dimensional). I would like it to behave optimally during insertions after ...
1
vote
2answers
483 views

How to calculate distance when we have sparse dataset in K nearest neighbour

I am implementing K nearest neighbour algorithm for a very sparse data. I want to calculate the distance between a test instance and each sample in the training set, but I am confused. Because most ...
3
votes
4answers
793 views

What data do I need to implement k nearest neighbor?

I currently have a reddit-clone type website. I'm trying to recommend posts based on the posts that my users have previously liked. It seems like K nearest neighbor or k means are the best way to do ...
6
votes
4answers
3k views

Efficient method for finding KNN of all nodes in a KD-Tree

I'm currently attempting to find K Nearest Neighbor of all nodes of a balanced KD-Tree (with K=2). My implementation is a variation of the code from the Wikipedia article and it's decently fast 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 ...