Tagged Questions
1
vote
1answer
220 views
Using Google's C KD Tree Library
Google has a KD Tree Library written in C: Here
As far as I can tell, you insert notes into the tree using one of it's functions, and then query the tree for nearest neighbors. It returns a pointer ...
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 ...
0
votes
2answers
359 views
Approximate for average distance to nearest neighbour?
And another algorithm I'm looking for: A free C/C++ implementation of the average distance to nearest neighbour problem.
So basically I have a cloud of points in 3D and I want the average over the ...
0
votes
3answers
354 views
Neighbor discovery C
I need to discover all network neighbors in Linux(they are running Linux too) and I need to get theirs IP addresses(3rd layer). Any ideas how to do that?
Btw, I need to do that in C, not in shell
...
6
votes
7answers
2k views
[OpenCL]nearest neighbour using euclidean distance
I'm using OpenCL to find the nearest neighbour between two set of 3D points.
Nearest Neighbour: For each point(x,y,z) in the DataSet I have to find the nearest one in the model. Squared distance = ...
0
votes
2answers
733 views
nearest neighbor mapping of 1D index for 2D array into a smaller 2D array
This is in C.
I have two 2D arrays, ArrayA and ArrayB, that sample the same space. B samples a different attribute than ArrayA less frequently than ArrayA, so it is smaller than A.
Just to try to ...