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.
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 ...
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 ...
12
votes
2answers
4k views
Finding near neighbors
I need to find "near" neighbors among a set of points.
There are 10 points in the above image. Red lines are edges from the Delaunay Triangulation, black stars mark the mid-lines of the edges, blue ...
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 ...
9
votes
3answers
1k views
K-Nearest Neighbor Query in PostGIS
I am using the following Nearest Neighbor Query in PostGIS :
SELECT g1.gid g2.gid FROM points as g1, polygons g2
WHERE g1.gid <> g2.gid
ORDER BY g1.gid, ST_Distance(g1.the_geom,g2.the_geom)
...
9
votes
3answers
243 views
Assurance of ICP, internal Metrics
So I have an iterative closest point (ICP) algorithm that has been written and will fit a model to a point cloud. As a quick tutorial for those not in the know ICP is a simple algorithm that fits ...
8
votes
2answers
4k views
How does the KD-tree nearest neighbor search work?
I am looking at the Wikipedia page for KD trees. As an example, I implemented, in python, the algorithm for building a kd tree listed.
The algorithm for doing KNN search with a KD tree, however, ...
8
votes
1answer
5k views
Image interpolation mode in Chrome/Safari?
I need to have an image render with nearest-neighbor resizing and not the bicubic way that is currently used. I currently use the following:
ms-interpolation-mode: nearest-neighbor;
image-rendering: ...
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 ...
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 ...
7
votes
6answers
2k views
Identifying points with the smallest Euclidean distance
I have a collection of n dimensional points and I want to find which 2 are the closest. The best I could come up for 2 dimensions is:
from numpy import *
myArr = array( [[1, 2],
[3, ...
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 ...
7
votes
6answers
7k views
fastest nearest neighbor algorithm
What is the fastest way to find closest point to the given point in data array?
For example, I have 3D space, array of points (coordinates - (x,y,z)) and point (xp, yp,zp).
I need to find closest ...
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 ...
7
votes
2answers
285 views
Algorithm to find for all points in set A the nearest neighbor in set B
Suppose we have two sets of points A, B, and we want to find for every point in set A its nearest neighbor in set B.
There are many good algorithms to find the nearest neighbor for one point. Is ...
7
votes
3answers
1k views
Find closest point in matlab grid
G'day
I'm trying to program a smart way to find the closest grid points to the points along a contour.
The grid is a 2-dimensional grid, stored in x and y (which contain the x and y kilometre ...
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 = ...
6
votes
2answers
644 views
What is the meaning of “from distinct vertex chains” in this nearest neighbor algorithm?
The following pseudo-code is from the first chapter of an online preview version of The Algorithm Design Manual (page 7 from this PDF).
The example is of a flawed algorithm, but I still really want ...
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 ...
6
votes
1answer
2k views
how to actually get the nearest neighbor in weka using java
so I've been trying to use the Ibk nearest neighbor algorithm that goes together with the weka machine learning library.....
I know how to classify instances, but I want to implement the ...
6
votes
2answers
2k views
Incremental Nearest Neighbor Algorithm in Python
Is anyone aware of a nearest neighbor algorithm implemented in Python that can be updated incrementally? All the ones I've found, such as this one, appear to be batch processes. Is it possible to ...
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 ...
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 ...
6
votes
2answers
528 views
2D nearest neighbour search for moving points
I want do do some flocking simulation, as described here.
For this I need to search for the nearest neighbours of each of my 2D points. However, I cannot use a static data structure like a k-d tree ...
6
votes
1answer
393 views
Circle Separation Distance - Nearest Neighbor Problem
I have a set of circles with given locations and radii on a two dimensional plane. I want to determine for every circle if it is intersecting with any other circle and the distance that is needed to ...
5
votes
10answers
5k 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 ...
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
3answers
1k views
Nearest Neighbor Search in Python without k-d tree
I'm beginning to learn Python coming from a C++ background. What I am looking for is a quick and easy way to find the closest (nearest neighbor) of some multidimensional query point in an 2D (numpy) ...
5
votes
2answers
2k views
Benefits of nearest neighbor search with Morton-order?
While working on the simulation of particle interactions, I stumbled across grid indexing in Morton-order (Z-order)(Wikipedia link) which is regarded to provide an efficient nearest neighbor cell ...
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
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 ...
5
votes
1answer
305 views
How should I find nearest neighbors for every element in a list?
I have two sets of integers A and B (size of A less than or equal to B), and I want to answer the question, "How close is A to B?". The way I want to answer this question is by producing a measure of ...
5
votes
1answer
438 views
Keyword based nearest neighbour algorithm or library
I want to find a library or an algorithm (so I write the code myself) for identifying the nearest k neighbours of a webpage, where the webpage is defined as being a set of keywords. I have already ...
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 ...
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 ...
4
votes
5answers
841 views
Finding element nearest to clicked point
Need some help here. I'm a UI designer who isn't good at numbers doing an experimental web form design and I need to know which input element is closest to a clicked point on a web page. I know how to ...
4
votes
2answers
139 views
Nearest trio of neighbours for non-intersecting ellipses
I'm working on a problem which is to find the closest trio of neighbours for a set of arbitrarily placed non-intersecting ellipses. As a new user I'm not allowed to include image tags but I've ...
4
votes
1answer
279 views
Is k-d tree suited for keeping triangles or i need some changes in classic k-d tree building algo?
I've read k-d tree description in wiki, wiki says that k-d tree keep points. I have mesh of triangles and need some structure for effective calculation intersections with cylinder and distance to ...
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 ...
4
votes
2answers
406 views
Nearest neighbor search in D3
I have implemented a 2-dimensional k-d tree in Javascript (check it out on GitHub), and I am using it for nearest-neighbor searches alongside D3.
I learned that there is a quadtree implementation in ...
3
votes
1answer
2k views
HTML5 Canvas Image Scaling Issue
I am trying to make a pixel art themed game in HTML5 canvas, and as part of that I take 10x20 or so sized images and draw them onto the canvas with the following code:
ctx.drawImage(image, 20, 20, ...
3
votes
5answers
3k views
how to find k-th nearest neighbor of a point in a set of point
I have a set of point (x,y) on a 2d plane. Given a point (x0,y0), and the number k, how to find the k-th nearest neighbor of (x0,x0) in the point set. In detail, the point set are represented by two ...
3
votes
4answers
805 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 ...
3
votes
2answers
575 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 ...
3
votes
2answers
1k views
Rabin's Nearest Neighbor (Closest pair of points) Algorithm?
So I'm trying to find details about an algorithm by Michael Rabin, which finds the nearest-neighbor given a set of points in 2D in O(n) time. For some reason, google search is completely failing me. ...
3
votes
3answers
1k views
How does it work comparing/matching images with kd-trees and nearest neighbor search?
I have been querying google for some material about kd-trees and image comparison but I couldn't make the 'link' between the technics for image comparison using kd-trees.
Firstly, I found some ...
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
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 ...
3
votes
3answers
447 views
K-d trees: nearest neighbor search algorithm
This is my understanding of it:
1. Recurse down the tree, taking the left or right subtree according as whether ELEMENT would lie in the left or the right subtree, if it existed.
2. Set CURRENT_BEST ...
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 ...
