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 ...
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
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 ...
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
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 ...
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, ...
6
votes
2answers
642 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 ...
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 ...
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 ...
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 ...
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 ...
7
votes
2answers
283 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
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 ...
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: ...
2
votes
2answers
1k views
find the nearest point pairs between two sets of of matrix
Assume I have two sets of matrix (A and B), inside each matrix contains few point coordinates, I want to find out point in B nearest to A and output a cell array C listed the nearest point pair ...
1
vote
1answer
354 views
Binary features and Locality Sensitive Hashing (LSH)
I am studying FLANN, a library for approximate nearest neighbors search.
For the LSH method they represent an object (point in search space), as
an array of unsigned int. I am not sure why they do ...
1
vote
1answer
477 views
K-Nearest Neighbors and MySql Geographical Index
I have a set of geo-tagged pictures in mySql database. You can consider my Pictures table to be:
create table `Pictures` (
location Point NOT NULL,
timeCreated timestamp NOT NULL DEFAULT ...
1
vote
3answers
563 views
Best GPU algorithm for calculating lists of neighbours
Given a collection of thousands of points in 3D, I need to get the list of neighbours for each particle that fall inside some cutoff value (in terms of euclidean distance), and if possible, sorted ...
1
vote
1answer
303 views
Bit string nearest neighbour searching
I have hundreds of thousands of sparse bit strings of length 32 bits.
I'd like to do a nearest neighbour search on them and look-up performance is critical. I've been reading up on various ...
1
vote
3answers
787 views
Nearest Neighbours using Quaternions
Given a quaternion value, I would like to find its nearest neighbour in a set of quaternions. To do this, I clearly need a way to compare the "distance" between two quaternions. What distance ...
0
votes
2answers
707 views
Convert longitude latitude coordinates (WGS) to grid with equidistant axes (in given area)
I have a lot of geocoordinates in tow data sets and want to run a nearest-neighbor-search.
I came across the package 'RANN' and the function nn2(x,y) runs really fast.
Now there is the problem, that ...