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.

learn more… | top users | synonyms

-1
votes
0answers
21 views

Use weka On recommender system

Hello EveryInternet Friend,how to use this example on weka. If I have matric data[row, col] , row stand for users, col stand for movies, rate(i,j) stand for user i rate movie j, rate only ...
1
vote
1answer
26 views

MySQL Query get minimal distance (nearest neighbour)

I am trying to find the nearest neighbour to the GPS coordinate (52,14) in a geospatial database with the following query: SELECT geonameid, SQRT(POW(latitude-52, 2) + POW(longitude-14, 2)) as ...
0
votes
2answers
38 views

KD Tree alternative/variant for weighted data

I'm using a static KD-Tree for nearest neighbor search in 3D space. However, the client's specifications have now changed so that I'll need a weighted nearest neighbor search instead. For example, ...
1
vote
1answer
67 views

Distance of point feature to nearest polygon in R

I working on a project at the moment, where I have a point feature -- the point feature includes a 142 points -- and multiple polygon (around 10). I want to calculate the distance between every single ...
0
votes
2answers
36 views

Matching interests(Nearest neighbour) search in SQL

I'm trying to find users with similar set of interests, with the following schema.. USERS - ID name etc Interests - ID UID PID where ID is unique ID for Interests, UIS is user ID and PID is a ...
1
vote
1answer
32 views

Whenever I run this command I get the error: Error in sort.list(y) : 'x' must be atomic for 'sort.list'

Currently I'm trying to use knnMCN() I'm doing it in this format... knnMCN(data, classification, data2, K=1, ShowObs=T) The files data, classification, and data2 are all .csv files. 'data' is my ...
0
votes
2answers
79 views

Which node to choose as a starting node for nearest neighbor algorithm

http://en.wikipedia.org/wiki/Nearest_neighbour_algorithm I'm using nearest neighbor algorithm to solve traveling salesman problem. It's extremely fast, but not accurate. I read somewhere about two ...
1
vote
1answer
71 views

python find all neighbours of a given node in a list of lists

I am trying to find a way to find all neighbours of a given node in a list of lists. The array looks like this: 0,2,4,1,6,0,0 2,0,0,0,5,0,0 4,0,0,0,5,5,0 1,0,0,0,1,1,0 6,5,0,1,0,5,5 0,0,5,1,5,0,0 ...
1
vote
3answers
119 views

Nearest neighbor search in 2D using a grid partitioning

I have a fairly large set of 2D points (~20000) in a set, and for each point in the x-y plane want to determine which point from the set is closest. (Actually, the points are of different types, and I ...
0
votes
0answers
47 views

How does MongoDB handle range and nearest neighbor queries?

How does MongoDB handle range and nearest neighbor queries? what algorithms used? I know MongoDB use GeoHash and B-Tree to index spatial data but how it handle the range and nearest neighbor queries ...
0
votes
1answer
62 views

Matching points in 2 D space

I have 2 matrices A and B both of size Rows X 2 where Rows = m , n for A and B respectively. These m and n denote the points in the euclidean space. The task I wish to perform is to match the ...
1
vote
1answer
47 views

Overwrite elements at end of priority queue once specified capacity is met?

I'm trying to search for the nearest N points in a quad tree and using an STL priority queue to store the points as they are found (sorted by distance from the query point). Points exceeding a max ...
1
vote
3answers
60 views

Iterative process to return second lowest value

I am fairly new to vb.net and cannot find any specific help after several hours of searching. I have a table of data points with three columns, column 1 is the "point id", column 2 is the "x ...
0
votes
1answer
111 views

How to use k-d tree to find nearest neighbor?

I have applied SIFT on one image and got descriptors, then I have used Euclidean distance to find similar descriptors, now I want to use k-d tree to find which descriptors are more similar and ...
0
votes
1answer
16 views

Computation of a node value based on direct neighbors in igraph

I am newbie in igraph. I am trying to compute hybrid centrality (eg: hybrid degree centrality of a node (v) is the total sum of degree centrality of all its direct neighbor). I have around 1500 nodes, ...
0
votes
2answers
149 views

Excel Macro Nearest Neighbor

I have an excel document with 4 sheets. Within each sheet there are 21 rows and approx 500 columns. I am trying to figure out how to write a nearest neighbor function to fill all cells in these sheets ...
0
votes
0answers
31 views

Finding and suggesting most similar queries from a query log

Given a query log of about 10 million queries I have to write a program that will ask query from the user and display most similar 10 queries to the input query as a output. Also in case of spelling ...
0
votes
2answers
57 views

Rounding a float to the nearest value in a pre-determined list?

I have a set list of valid sizes for a UI object on my display (values at which a background image tiles the way I want it to), and I want to take each object's height in turn and round it up to the ...
2
votes
2answers
352 views

Euclidean distance between two set of 3D points

How can I find the nearest points of two set of 3D points(with different number,set1 includes 400 points and set2 includes 2000 points) and then find the Euclidean distance between set1 and result ...
0
votes
1answer
226 views

How good can Nearest Neighbor, Naive Bayes and a Decision Tree classifier solve the given classificationproblem?

The 3 diagramms (i), (ii), (iii) show training sets having 2 numerical attributes (x and y axis) and a target attribute with two classes (circle and square). I am now wondering how good the data ...
0
votes
1answer
61 views

Neighbour Component Analysis implementation in Octave/Matlab

I've been trying to implement the Neighbourhood Component Analysis (NCA) algorithm in Octave, but apparently there's something wrong with my code and I cannot figure out what it is. Note: I am using ...
2
votes
1answer
172 views

Finding k nearest neighbors with SPARQL query

I would like to write a single SPARQL query to find the k nearest neighbors for a set of vectors. To find the average label for the 100 nearest neighbors for a single vector I can use the following ...
2
votes
2answers
91 views

Transforming a table of Nearest Neighbor Distances into a Matrix

I have a data frame generated from computing nearest neighbor (K=2) using the RANN package. I would like to transform this data into a matrix with values of 0,1,2 for each cell with 0 = not neighbor, ...
0
votes
1answer
134 views

ValueError: setting an array element with a sequence at fit(X, y) in k-nearest neighbor

i have an error at this line:neigh.fit(X, y) : ValueError: setting an array element with a sequence. I checked fit function and X is: {array-like, sparse matrix, BallTree, cKDTree} My X is a list of ...
0
votes
0answers
36 views

Push-relabel Algorithm Gap Relabel

I tried to optimize the Push-Relabel sample code on wikipedia: https://en.wikipedia.org/wiki/Push-relabel_algorithm According to WIKIPEDIA suggestions for global relabeling/gap relabeling: 1) Make ...
1
vote
1answer
217 views

Implement K Neighbors Classifier in scikit-learn with 3 feature per object

I would like to implement a KNeighborsClassifier with scikit-learn module (http://scikit-learn.org/dev/modules/generated/sklearn.neighbors.KNeighborsClassifier.html) I retrieve from my image ...
1
vote
2answers
293 views

Matlab finding neighbors from a list of coordinates

I have an array of n-elements by m-properties. id1 x1 y1 id2 x2 y2 ... idn xn yn I have a coordinate (x,y) and I want to find all the ids of elements which are to the immediate left, up, bottom and ...
0
votes
0answers
14 views

get nearest panorma towards the street in google map v3

How to get nearest panorma towards the street in google map v3. My requirement is mentioned below:- I have placed the marker on the google map v3 version and after drag and drop this marker i want ...
1
vote
2answers
133 views

Nearest vertex search

I'm looking for effective algorithm to find a vertex nearest to point P(x, y, z). The set of vertices is fixed, each request comes with new point P. I tried kd-tree and others known methods and I've ...
0
votes
0answers
44 views

k-d tree implementation tradeoffs [duplicate]

Possible Duplicate: Kd tree: data stored only in leaves vs stored in leaves and nodes There are two alternative ways of implementing a k-d tree: having every node reference a point or ...
1
vote
1answer
337 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
218 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 ...
2
votes
1answer
128 views

What datastructure to use for a rapidly changing nearest neighbor search?

I want to store from 50 to 10 000 vectors in 3 to 20 dimensions. I want to know in which structure to store the vectors in order to be able to solve the nearest neighbor or approximate nearest ...
0
votes
4answers
94 views

How to find the point in the plane [closed]

I have some known circles with r=1 (figure below, 4 circles are called C1 to C4). I want to find the nearest point to (0,0) not within the circles. is there any polynomial algorithm for this?
0
votes
1answer
123 views

Find 10 closest matches of a 30 dimensional vector, what data structure?

I got a vector with 30 dimensions and I want to find the 10 closest matches in my database. I have around 3000 vectors in my DB which I’ve to compare it to. Some dimensions are more important than ...
0
votes
1answer
54 views

return n indices of non-identical nearest neighbor vectors

In a set of D dimension vectors, the nearest neighbor algorithm can efficiently acquire the n nearest neighbors for each vector in the entire set. However, in such set, if there are multiple ...
4
votes
1answer
271 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 ...
0
votes
0answers
118 views

Pixel-perfect 'nearest neighbor' scaling

I have an Image as shown below. When zooming in (enlarging the image), I want to preserve the pixels as much as possible. Hence, interpolation should be avoided. E.g. Zooming 1700% implies a solid ...
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 ...
9
votes
3answers
237 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 ...
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 ...
0
votes
3answers
109 views

How to group GPS Cooridnates to represent One specific GPS Location ( Data Mining )

I have a scanario : I have the data of some GPS Tracks( longitutdes, latitudes ) and these are contained in 2 parts First part containing the data ( Longitudes and Latitudes ) which are the journey ...
3
votes
3answers
434 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 ...
1
vote
1answer
180 views

Python: suggestions to find the 1st order neighbors using shapefile polygons

sorry for posting a few lines of my code. I am looking a efficient way to find the 1st order neighbors of a given polygon. My data are in shapefile format. my first idea was to calculate the x and y ...
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
2answers
284 views

Eigen::MatrixXd to flann::Matrix<double> conversion

Assume that mat below is of type Eigen::MatrixXd and already contains some data. In an attempt to avoid duplicating memory, I tried to instantiate a flann::Matrix<double> object from the pointer ...
2
votes
3answers
129 views

Distance metrics in Java [closed]

I am working on nearest neighbor search project and I need distance metrics such as Euclidian, Manhatan, etc. I can either implement them myself or, I was wondering if there is standard java code I ...
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
0answers
103 views

SQL Server : generating nearest neighbour routes

Having a little trouble with generating routes using a nearest neighbour methodology with SQL Server in T-SQL. Note: Using SQL Server 2008, I do not have access to spatial extensions. Background: ...
2
votes
2answers
589 views

Optimizing Python KD Tree Searches

Scipy (http://www.scipy.org/) offers two KD Tree classes; the KDTree and the cKDTree. The cKDTree is much faster, but is less customizable and query-able than the KDTree (as far as I can tell from ...

1 2 3 4