1
vote
1answer
77 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
1answer
227 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
1answer
185 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 ...
1
vote
1answer
599 views

Nearest Neighbor Search: Python

I have a 2 dimensional array: MyArray = array([6588252.24, 1933573.3, 212.79, 0, 0], [6588253.79, 1933602.89, 212.66, 0, 0], etc...) The first two elements ...
1
vote
2answers
118 views

How to determine set of connected line from an array in python

I have an array that looks something like: [0 x1 0 0 y1 0 z1 0 0 x2 0 y2 0 z2 0 0 x3 0 0 y3 z3 0 0 x4 0 0 y4 z4 0 x5 0 0 0 y5 z5 0 0 0 ...
2
votes
4answers
1k views

Pixel neighbors in 2d array (image) using Python

I have a numpy array like this: x = np.array([[1,2,3],[4,5,6],[7,8,9]]) I need to create a function let's call it "neighbors" with the following input parameter: x: a numpy 2d array (i,j): the ...
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) ...
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, ...
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, ...
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 ...
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 ...
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 ...