2
votes
2answers
721 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
vote
1answer
688 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
120 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, ...