A kd-tree (k-dimensional tree) is a data structure for storing points in multidimensional space. They can be used to efficiently query for whether a point exists, as well as to do nearest-neighbor searches and searches inside of hyperdimensional rectangular regions.

learn more… | top users | synonyms

0
votes
0answers
17 views

K d tree feature matching

I want to use KdTree algorithm to matching features in two image without opencv or FLANN and ANN code. Do you have other code for KDTree using C++ or link to it? Thank you
0
votes
2answers
40 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, ...
0
votes
1answer
30 views

Finding the first element with a specific distance

I'm trying to write a method, which will return the index of a point which is closest to another point in 3D space. The points are stored in a KD-tree and I'm comparing them with the point p which is ...
1
vote
0answers
35 views

Continuous modification of a set of points - find all nearest neighbors

I have a 3D set of points. These points will undergo a series of tiny perturbations (all points will be perturbed at once). Example: if I have 100 points in a box, each point may be moved up to, but ...
0
votes
0answers
75 views

Using Weka for k nearest neighbors search

Based on low level feature , I want to search k nearest neighbors of an image I'm using weka library This is my code public void searchNearstNeighbors () { KDTree tree = new KDTree(); ...
-1
votes
1answer
109 views

Finding All Neighbours within Range using KD-tree

I am trying to implement a KD-tree for use with DBSCAN. The problem is that I need to find all the neighbours of all points that meet a distance criteria. The problem is I don't get the same output ...
0
votes
0answers
50 views

python ctypes and kdtree.c library

I'm trying to use kdtree by calling C from python 2.x: The equivalent C is: void *kd1 long double data_x,data_y,data_z; kd2 = kd_create(3); for(i=0; i<nrows1; i++) { kd_insert3(kd2, ...
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
0answers
91 views

Fast, stackless kd-tree traversal in raytracing, clarification needed

I am trying to implement a real time ray tracer, and I was reading this interesting paper on a fast, stackless kd-tree traversal method, but it is unclear regarding certain concepts. At page 4, where ...
2
votes
1answer
125 views

Efficient matching of two arrays (how to use KDTree)

I have two 2d arrays, obs1 and obs2. They represent two independent measurement series, and both have dim0 = 2, and slightly different dim1, say obs1.shape = (2, 250000), and obs2.shape = (2, 250050). ...
0
votes
2answers
120 views

Finding points in space closer than a certain value

In an python application I'm developing I have an array of 3D points (of size between 2 and 100000) and I have to find the points that are within a certain distance from each other (say between two ...
0
votes
1answer
90 views

Scipy.Spatial.KDTree.query - large dataset issues

I am playing with the KDQuery function in SciPy.Spatial. I have an issue once my data sizes get really large. I realize that the algorithm is not necessarily designed to be efficient for large ...
5
votes
2answers
112 views

efficient way to handle 2d line segments

I am having huge set of 2D line segments. So, I know; Line number, Begin (X,Y,Z) and End (x,Y,Z) of each line segment. I want to get proximity line segments for a given line segment. Likewise ...
3
votes
3answers
711 views

Why are KD-trees so damn slow for nearest neighbor search in point sets?

I am using CGAL's (the latest) KD-tree implementation for searching nearest neighbors in point sets. And also Wikipedia and other resources seem to suggest that KD-trees are the way to go. But somehow ...
1
vote
2answers
247 views

At what stage the training exactly takes place in FlannBasedMatcher in OpenCV?

The following code is in C++ and I am using OpenCV for my experiment. Suppose I am using kd-tree (FlannBasedMatcher) in the following way: //these are inputs to the code snippet below. //They are ...
0
votes
1answer
98 views

Finding number of lattice points inside a region

Given a set of points in 2-D plane, How to find number of points lying on or inside any arbitrary triangle. One method is to check all points whether they lie inside the given triangle. But I read ...
0
votes
2answers
118 views

when will KD tree search for KNN not work?

I've been exploring and learning about KD Trees for KNN (K Nearest Neighbors problem) when would the search not work? or would be worth or not improve the naive search. are there any drawbacks of ...
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 ...
1
vote
1answer
82 views

scipy kdtree with meta data

I'm currently looking for a way to build a couple of kd trees for quickly querying some n-dimensional data. However, I'm having some issue with the scipy KD tree algorithm My data consists of id ...
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 ...
2
votes
1answer
259 views

Kd tree: data stored only in leaves vs stored in leaves and nodes

I am trying to implement a Kd tree to perform the nearest neighbor and approximate nearest neighbor search in C++. So far I came across 2 versions of the most basic Kd tree. The one, where data is ...
0
votes
1answer
46 views

scipy.spatial ValueError: “x must consist of vectors of length %d but has shape %s”

Scipy has an excelent spatial analysis pack which includes a K-dimensional tree. I am attempting to use the query function and it is returning this error: ValueError: x must consist of vectors of ...
1
vote
1answer
219 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 ...
-1
votes
1answer
76 views

How to serialize and deserialize a kdtree in java

I have a kdtree whose nodes consist of the following fields: public static class Node implements Serializable { public int discriminator; public double value; public Node ...
2
votes
1answer
189 views

Photo mosaic web application. KD-tree

Last month I have been working on a photomosaic website. I build everything in PHP and I got it working great. The only thing I don’t like is the execution time. This is too long I think because of a ...
2
votes
2answers
302 views

Balancing KD Tree

So when balancing a KD tree you're supposed to find the median and then put all the elements that are less on the left subtree and those greater on the right. But what happens if you have multiple ...
0
votes
0answers
83 views

Quadtree and kd-tree splitting and mandelbrot set?

I've read about a quadtree or kd-tree splitting and a mandelbrot set but what when the rectangle before the first split and the frame lies in the mandelbrot set or has the same iteration depth and the ...
-2
votes
1answer
62 views

I’m trying to construct a 3d-tree (xyz) from random points with PHP. But I’m not really sure how to start building [closed]

I have a multidimensional array which I sort at the X-as. I compute the median which will be the root node. This leaves me with 2 arrays one for the left and one for the right side. I can do the same ...
0
votes
1answer
129 views

NetworkX Random Geometric Graph Implementation using K-D Trees

So it is clear with NetworkX that they use an algorithm in n^2 time to generate a random geometric graph. They say there is a faster algorithm possible with the use of K-D Trees. My question is how ...
4
votes
1answer
272 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
1answer
49 views

Get the smallest element of a kdtree

I want to get the minimum element of a kdtree two-dimensional (x, y). The minimum element is one that for every element (x ', y') of kdtree, x As can be repeated elements x, returns either.
1
vote
0answers
39 views

Save Data from kd-tree in a pile on Pre-order with constant cost

I have a little problem to implement a method that given a kdtree, stored in a stack all items ordered on pre-order. I implemented this method iteratively, and I have this code: public void preorder ...
1
vote
2answers
204 views

KD-Tree “median of list” construction

I've coded up a KD-Tree in Java using the "median of list" algorithm for constructing a more balanced tree. It seems to work fine when using the data provided by the wiki, note that the wikipedia ...
3
votes
3answers
438 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 ...
0
votes
1answer
451 views

Difference between quadtree and kd-tree

Can someone please explain briefly whats the main differnece between the quadtree and kd-tree, I understand they split points in manh dimensions but I dont see one would use one over the other. I need ...
1
vote
2answers
93 views

How do I get the set of rectangles from a k-d tree?

If you look at the Wikipedia entry for k-d trees, you will see this illustration of points and planes that divides the 2D space into rectangles. My question is how do I get the resultant set of ...
1
vote
1answer
159 views

Scipy kd-tree implementation throwing “negative dimensions”

I get the following error seemingly every time I try to do anything involving a kd-tree. Strangely, just days ago this very code was working fine, and it is still working fine on my colleague's ...
1
vote
1answer
82 views

problems with libkdtree++ (kdtree)

I am a student trying to use kdtree with libkdtree++ on linux 86*64. ./configure goes smooth, though sudo make install fails cd . && /bin/sh ...
2
votes
2answers
599 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
119 views

Suitable data structure

I have a Image (appx 1000 x 1000) and a set of small images each 10 x 10. I created a (3 dimensions tree) for storing the HSL values of each tile.I get an array-list of tile RGB values that is ...
3
votes
3answers
142 views

determine efficiently which rectangle a point is in 2d space

I have a large set of rectangles that are drawn on html5 canvas. I would like to be able to interact with this image using mouse tracking (I cannot use SVG because it does not scale to 10-100k ...
1
vote
1answer
588 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 ...
0
votes
0answers
112 views

Is it possible to make an orthogonal range query with the nanoflann library?

I have a set of vectors in R^n and I want to be able to make 2 types of queries: are there any vectors in P = I1 X I2 X ... X In, where Ii is an interval which vectors are in P = I1 X I2 X ... X In, ...
4
votes
3answers
1k views

Efficient way for SIFT descriptor matching

There are 2 images A and B. I extract the keypoints (a[i] and b[i]) from them. I wonder how can I determine the matching between a[i] and b[j], efficiently? The obvious method comes to me is to ...
4
votes
2answers
265 views

What spatial indexing algorithm should I use?

I want to implement some king of spatial indexing data structure for my MKAnnotations. Currently it's horribly slow when I try to filter them based on distance criteria ( 3-4k of locations, currently ...
1
vote
1answer
156 views

How could I make this KD-tree?

I have a very long, semi-sorted list of latitude, longitude, and time zone triplets. I want to be able to search this list quickly to find the closest time zone to any given latitude and longitude, so ...
0
votes
1answer
161 views

kd tree build sort optimize

The algorithm build of kd-tree implemented in the Python programming language is as follows (from http://en.wikipedia.org/wiki/K-d_tree): class Node: pass def kdtree(point_list, depth=0): if not ...
2
votes
3answers
187 views

Returning a list of values from a tree recursion

I'm trying to teach myself about data structures, and I'm implementing a k-d tree in Python. I have a method to search for points in the tree within a certain radius of one point in my k-d tree class: ...
1
vote
2answers
137 views

slow kd-tree queries using vlfeat, faster alternatives?

I'm using vlfeat's kdtree which implements the kd-tree from FLANN, which supposedly handles high dimension data. However, right now I have a kdtree built from a 128x15000 set of data and kd tree ...
2
votes
2answers
419 views

Simple k-nearest-neighbor algorithm for euclidean data with variable density?

An elaboration on this question, but with more constraints. The idea is the same, to find a simple, fast algorithm for k-nearest-neighbors in 2 euclidean dimensions. The bucketing grid seems to work ...

1 2 3