Nearest neighbors are points (or other objects) in close proximity to a given location in some multi-dimensional space, e.g. a plane. Finding such neighbors lies at the core of several algorithms for various applications.
4
votes
1answer
147 views
Is there a disk based nearest neighbour data structure?
I have a dataset for which I need to find the K nearest neighbours, or all the neighbours within a distance d. The dataset has a custom distance defined but it is not an Euclidean distance.
I have ...
1
vote
3answers
2k views
KD tree, slow tree construction
I am trying to build KD Tree (static case). We assume points are sorted on both x and y coordinates.
For even depth of recursion the set is split into two subsets with a vertical line going through ...
4
votes
2answers
3k views
All k nearest neighbors in 2D, C++
I need to find for each point of the data set all its nearest neighbors. The data set contains approx. 10 million 2D points. The data are close to the grid, but do not form a precise grid...
This ...
1
vote
1answer
630 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 ...
8
votes
1answer
1k views
Suitable choice of data structure and algorithm for fast k-Nearest Neighbor search in 2D
I have a dataset of approximately 100,000 (X, Y) pairs representing points in 2D space. For each point, I want to find its k-nearest neighbors.
So, my question is - what data-structure / algorithm ...
13
votes
5answers
1k views
How to find the closest 2 points in a 100 dimensional space with 500,000 points?
I have a database with 500,000 points in a 100 dimensional space, and I want to find the closest 2 points. How do I do it?
Update: Space is Euclidean, Sorry. And thanks for all the answers. BTW this ...
2
votes
3answers
605 views
Clustering problem
I've been tasked to find N clusters containing the most points for a certain data set given that the clusters are bounded by a certain size. Currently, I am attempting to do this by plugging in my ...
3
votes
2answers
1k views
What's a good algorithm for nearest neighbour problem in two dimensions?
I would like to build an app that's going to give you the closest restaurant depending on your location. We'll have a database with all the POI corresponding to the restaurant and we'll get your ...
1
vote
1answer
800 views
nearest neighbor 2 dimensions
Given a set S of points in 2-dimensional space, provide an algorithm that computes nearest neighbor(euclidian) for each point in the set. I think its called nearest neighbor graph, isn't it? Any ...
6
votes
2answers
2k views
Nearest Neighbor rendering in Canvas
I have a sprite that animates using a sprite sheet. He is only 16x16, but I want to scale him up to around 64x64 in all its pixel-y goodness!
The results are terrible, of course the browser is ...
5
votes
2answers
2k views
Locality Sensitive Hashing - finding probabilities and values for R
Thanks to those who've answered my previous questions and gotten me this far.
I have a table of about 25,000 vectors, each with 48 dimensions, with values ranging from 0-255.
I am attempting to ...
2
votes
2answers
466 views
How to find similar users using their interests
I am trying to create a system which would be able to find users with similar favourite movies/books/interests/etc., much like neighbours on last.fm. Users sharing the most mutual interests would have ...
2
votes
1answer
732 views
Alternative to distance metric in nearest neighbor algorithm?
I came across an implementation of the nearest neighbor algorithm for finding matches between certain keypoints in two similar images. The keypoints were generated by the SIFT algorithm. The points ...
2
votes
2answers
303 views
Using ruby to find similar recipes based on ingredients they contain
I have a collection of recipes, each having a number of ingredients. This information is stored in a join table. Give a recipe, I'd like to find recipes similar to it based on ingredients. How ...
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 ...
8
votes
2answers
2k views
How can I extend this SQL query to find the k nearest neighbors?
I have a database full of two-dimensional data - points on a map. Each record has a field of the geometry type. What I need to be able to do is pass a point to a stored procedure which returns the k ...
1
vote
2answers
135 views
How to model coarse grained geolocation to correct market
Use case example: Client A comes to request sales information, enters their zip code and are directed to Representative X.
Since there is an effectively infinite number of zip codes there will not be ...
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 ...
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 ...
7
votes
4answers
8k views
How To Rotate Image By Nearest Neighbor Interpolation Using Matlab
My Plain Code without interpolation:
im1 = imread('lena.jpg');imshow(im1);
[m,n,p]=size(im1);
thet = rand(1);
m1=m*cos(thet)+n*sin(thet);
n1=m*sin(thet)+n*cos(thet);
for i=1:m
for ...
4
votes
2answers
1k views
How does space partitioning algorithm for finding nearest neighbors work?
For finding the nearest neighbor, Space Partitioning is one of the algorithms. How does it work?
Suppose I have a 2D set of points (x and y coordinates), and I am given a point (a,b). How would this ...
2
votes
3answers
343 views
is KNN valuable if most ratings are a 5 / passive filtering recommendations
I've been looking at building a 'people who like x, also like y' type recommendation system, and was looking at using Vogoo, but after looking through their code it seems there is a lot of nearest ...
5
votes
1answer
4k views
nearest neighbor - k-d tree - wikipedia proof
On the wikipedia entry for k-d trees, an algorithm is presented for doing a nearest neighbor search on a k-d tree. What I don't understand is the explanation of step 3.2. How do you know there isn't ...
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 ...
11
votes
4answers
21k views
Nearest-neighbor interpolation algorithm in MATLAB
I am trying to write my own function for scaling up an input image by using the Nearest-neighbor interpolation algorithm. The bad part is I am able to see how it works but cannot find the algorithm ...
3
votes
1answer
1k views
Slow Postgres Query
I'm new to Postgres and SQL. I created the following script that draws a line from a point to a projected point on the nearest line. It works fine on a small data set 5 to 10 points with the same ...
3
votes
2answers
574 views
Data structure for fast line queries?
I know that I can use a KD-Tree to store points and iterate quickly over a fraction of them that are close to another given point. I'm wondering whether there is something similar for lines.
Given a ...
0
votes
2answers
1k views
Drawing a line in PostGIS using Nearest Neighbour Method
This is a cross post from an email I sent to the PostGIS mailing list
So far in my endeavor to create a line between a point and its projected
location on a line has been long but I'm almost there. ...
0
votes
1answer
152 views
getting nearest result within IFNULL
I've got a maintenance script which dumps a bunch of data from one db to another.
I'm trying to get the data as
SELECT id, IFNULL(rank1,(SELECT rank2
FROM table
WHERE rank1 IS NOT NULL ...
7
votes
1answer
4k views
How to find the previous and next record using a single query in MySQL?
I have a database, and I want to find out the previous and next record ordered by ID, using a single query. I tried to do a union but that does not work. :(
SELECT * FROM table WHERE `id` > 1556 ...
3
votes
6answers
2k views
Nearest neighbor on a unit sphere, with roughly evenly distributed points
I'm writing a program that implements SCVT (Spherical Centroidal Voronoi Tesselation). I start with a set of points distributed over the unit sphere (I have an option for random points or an ...
2
votes
2answers
648 views
Algorithm for similarity (of topic) of news items
I want to determine the similarity of the content of two news items, similar to Google news but different in the sense that I want to be able determine what the basic topics are then determine what ...
6
votes
3answers
4k views
SQL efficient nearest neighbour query
I'm having trouble coming up with an efficient SQL query to handle the following situation:
Assume we have a table with two columns
groupId : int
value : float
The table is huge (several million ...
1
vote
2answers
293 views
How to match Tagged items based on “similarity”
I have a real question.
I have a database with the schema as follows:
item
id
description
other junk
tag
id
name
item2tag
item_id
tag_id
count
Basically, each item is tagged as up to 10 ...