Tagged Questions

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

14
votes
5answers
6k views

KDTree Implementation in Java

I'm looking for a KDTree implementation in Java. I've done a google search and the results seem pretty haphazard. There are actually lots of results, but they're mostly just little one-off ...
10
votes
6answers
7k views

kdtree implementation C++

Any recommendations for a C/C++ kd-tree? I'm looking for an existing implementation which the poster hopefully has worked with or has heard good things about. Also, I need to use this kd-tree to do a ...
8
votes
1answer
556 views

KDTree Splitting

I am currently writing a KDTree for a physics engine (Hobby project). The KDTree does not contain points. Instead it contains Axis Aligned bounding boxes which bound the different objects in the ...
6
votes
2answers
1k 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, ...
5
votes
2answers
148 views

Parameterizing types by integers in Haskell

I am trying to make some Haskell types which are parametrized not by types but by elements of a type, specifically, integers. For instance, a (linear-algebra) vector in R^2 and a vector in R^3 are ...
5
votes
1answer
162 views

How to best store lines in a kd-tree

I know kd-trees are traditionally used to store points, but I want to store lines instead. Would it be best to split the line at every intersection with the splitting of the kd-tree? or would storing ...
4
votes
1answer
124 views

How do I use kd-trees for determining string similarity?

I am trying to utilize k-nearest neighbors for the string similarity problem i.e. given a string and a knowledge base, I want to output k strings that are similar to my given string. Are there any ...
4
votes
2answers
520 views

Could anyone tell me what's the difference between KD-tree and R-tree

I look at the definition of KD-tree and R-tree, it seems that they are almost the same. Could anyone tell me what's the difference between KD-tree and R-tree? Thanks
4
votes
3answers
1k views

Efficient method for finding KNN of all nodes in a KD-Tree

I'm currently attempting to find K Nearest Neighbor of all nodes of a balanced KD-Tree (with K=2). My implementation is a variation of the code from the Wikipedia article and it's decently fast to ...
3
votes
4answers
94 views

Nearest neighbour search in a constantly changing set of line segments

I have a set of line segments. I want to perform the following operations on them: Insert a new line segment. Find all line segments within radius R of a given point. Find all points within radium ...
3
votes
4answers
79 views

How to find the closest pairs (Hamming Distance) of a string of binary bins in Ruby without O^2 issues?

I've got a MongoDB with about 1 million documents in it. These documents all have a string that represents a 256 bit bin of 1s and 0s, like: 0110101010101010110101010101 Ideally, I'd like to query ...
3
votes
2answers
361 views

How does it work comparing/matching images with kd-trees and nearest neighbor search?

I have been querying google for some material about kd-trees and image comparison but I couldn't make the 'link' between the technics for image comparison using kd-trees. Firstly, I found some ...
3
votes
2answers
1k views

Is k-d tree efficient for kNN search. k nearest neighbors search

I have to implement k nearest neighbors search for 10 dimensional data in kd-tree. But problem is that my algorithm is very fast for k=1, but as much as 2000x slower for k>1 (k=2,5,10,20,100) Is ...
2
votes
1answer
38 views

Solid k-d tree implementation in javascript?

I'm looking to do a bunch of distance queries in a simulation, and would prefer not to loop over all the points. (N**2 doesn't scale that well, it turns out). Is there a solid k-d tree (or other ball ...
2
votes
2answers
131 views

Which spatial data structure (algorithm) is best for (searching in) a set of regions (spacial data)?

I have a set of regions (geo-fences) which are polygons. This set of data is fixed; so there is no need for insertion and deletion of data. Which data structure can be used for searching for regions ...
2
votes
1answer
61 views

Query the nearest range

I have two sets, A and B. The sets are made of N dimension points and ordered (N<10). I need find the nearest part of B to A. Let's say the nearest part is B1. The count of points in B1 should be ...
2
votes
1answer
175 views

Implementing a k-d tree for 'nearest neighbor' search in MYSQL?

I am designing an automated trading software for the foreign exchange market. In a MYSQL database I have years of market data at five-minute intervals. I have 4 different metrics for this data ...
2
votes
2answers
307 views

Explain this algorithm (Compare points in SURF algorithm)

I need to know if this algorithm is a known one: void getMatches(IpVec &ipts1, IpVec &ipts2, IpPairVec &matches, float ratio) { float dist, d1, d2; Ipoint *match; ...
2
votes
1answer
268 views

Kd Tree Iterative implementation ( C++ )

Hello Does anybody has iterative implementation of Kd-Tree in C++. I tried but it is failing when the number of nodes are odd. Here is my code so far. I am referring ...
2
votes
2answers
236 views

KD-Tree Implementation in SQL

Is anyone aware of a KD-Tree, or similar spatial index, implemented in SQL? I was considering writing my own using Python and Django's ORM, but I'd like to avoid reinventing the wheel. I have a table ...
2
votes
2answers
193 views

Finding nearest point's in space time to interpolate data

I have a set of data in the following format: Date/time | Latitude | Longitude | Height | Temp These data can be entered by the user based on atmospheric temperature measurements at different ...
2
votes
2answers
138 views

Is a KD-Tree a unique ordering of a given data set?

Given a set of data points, a kdtree is created over them, but is this kdtree a unique one?
2
votes
1answer
397 views

How to use KDTree to make top-k query and range query on arbitrary dimensions

I have used KD-tree(libkdtree++) to store a multi-dimensional data set, and the requirements here is this data set can support top-k/range queries on different dimensions. For example, a KDTree<3, ...
2
votes
1answer
748 views

Simple C/C++ library for triangle-intersection acceleration structure

I'm raytracing and would like to speed it up via some acceleration structure (kd-tree, BVH, whatever). I don't want to code it up myself. What I've tried so far: Yanking the kd-tree out of pbrt. ...
2
votes
1answer
2k 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 ...
2
votes
4answers
197 views

Which datastructure is appropriate for this situation?

I'm trying to decide which datastructure to use to store key-value pairs when only features needed are insertion lookup Specifically, I don't need to be able to delete pairs, or iterate through ...
1
vote
1answer
33 views

Is there any existing database (preferred embedded ones) supporting large diminutional multi-dimentional search?

I would like to build a C++ application on top of an database that can support multi-dimensional search (e.g. KDTree or RTree). SQLite with R-tree enabled only supports up to 5 dimensions, which is ...
1
vote
3answers
98 views

What is the best datastructure for line segments searching?

I need a datastructure to find all segments falling in a rectangle (in C#, even if it is not the main problem). For exemple, the segment [(0,0) , (10,10)] must be in the rectangle begining at (5,5) ...
1
vote
1answer
106 views

Python: Best particles self-collision / triangle collision algorithm

I'm starting to work on this particle engine for Blender in Python: http://www.youtube.com/watch?v=uoK4QV3jg58&feature=channel_video_title All data is processed by my script, Blender is just ...
1
vote
1answer
32 views

Templated Class Declaration for KDTree

The following class returns the following error from g++: tree.h:9: error: expected unqualified-id before 'template' If line 5 is uncommented, the same error occurs, only at line 5. Am I ...
1
vote
1answer
47 views

KdTree Node Removal

I've been trying to implement a KdTree from scratch. Having successfully implemented add-, find nearest neighbour- and find nodes in range methods I am now stuck on removal of nodes. The method ...
1
vote
1answer
107 views

Ray Tracing using k-d trees for stanford bunny model

I am trying to ray trace the Stanford bunny model which is PLY format. I have a parser which parses the PLY file and gives me the value of co-ordinates of triangles and also their vertices. Now I am ...
1
vote
1answer
171 views

Difference between scipy.spatial.KDTree and scipy.spatial.cKDTree

What is the difference between these two algorithms?
1
vote
1answer
111 views

Kd-Tree Question

I am trying to implementation and understand KdTree, Following is the link I found. http://ldots.org/kdtree/#buildingAkDTree But I fail to understand following algorithm tuple function ...
1
vote
2answers
129 views

Write/Read a kdtree into a file

I am new to C++ and data structure, I have code to approximate the nearest neighbors, and for that I implemented a Kd-tree in C++. My question how can I write the kd-tree into a file and how to read ...
1
vote
1answer
165 views

from recursion on tree to iterative on array (kd-tree Nearest Neighbor)

I've got a recursive function (on tree) and I need to make it work without recursion and representing the tree as an implicit data structure (array). Here is the function: kdnode* kdSearchNN(kdnode* ...
1
vote
1answer
221 views

Searching in KD-tree slow

I'm implementing a KD-tree to cluster points a map into groups. I've been using Wikipedia's KD-tree article as a reference. The search returns the correct nearest neighbor point, but it is slower than ...
1
vote
2answers
194 views

Are KD trees still efficient when most/all of the attributes are discrete and distance is equivalent?

It's always touted that KD trees are great for nearest neighbor searches. However, if your data set is all discrete values, with no real distance metric, are they still efficient? For example, if ...
1
vote
1answer
776 views

KD-Tree in GLSL

after one day of trying to figure out how to implement a kd-tree in OpenGL/GLSL i am pretty frustrated ... I declare my KD-Nodes like this in GLSL: layout(std140) uniform node{ ivec4 splitPoint; ...
1
vote
1answer
462 views

Alternative to distance metric in nearest neighbor algorithm?

I came across an implementation of the nearest neighbor algorithm for finding matches between certain keypoints in two similar images. The keypoints were generated by the SIFT algorithm. The points ...
1
vote
2answers
506 views

Confused about definition of a 'median' when constructing a kd-Tree

Im trying to build a kd-tree for searching through a set of points, but am getting confused about the use of 'median' in the wikipedia article. For ease of use, the wikipedia article states the ...
1
vote
1answer
617 views

C++: looking for thread based a parallel kd tree library

Are there some implementation for KD-Tree on shared memory machines? thanks Arman.
1
vote
1answer
366 views

Deleting an element from a kd-tree of two dimensions

I would like to extend a kd-tree (2D) class to be able to remove nodes (points). This removal should be conducted without having to rebuild large sections of the tree. The algorithm described in these ...
0
votes
0answers
34 views

Adapting Nearest Neighbor search function to provide K-nearest neighbors through kD-tree in Groovy?

I have successfully written a function that traverses a Kd-Tree for the nearest single neighbor of a point. However, I'm trying to switch this function around so that it finds the K-nearest neighbors ...
0
votes
1answer
42 views

Need help figuring out C++ code segment in kd-tree implementation

I am having trouble figuring out what the code segment below is doing. It is taken from the book Realistic Image Synthesis Using Photon Mapping by Henrik Wann Jensen. I think what it's trying to do ...
0
votes
2answers
186 views

Compare SURF descriptors in one image to a list of descriptors in other images

I want to compare the SURF descriptors in one image (A), with the descriptors in several other images (B,C,D,..) to find the most similar image to A. The descriptors have 64 dimensions. Using C# and ...
0
votes
0answers
11 views

trying to compile libssrckdtree, but configure say my compiler does not support namespaces

I want to use a kd-tree library called libssrckdtree in my project. But when I run ./configure it will have error message: configure: error: The source code can be compiled only with a C++ compiler ...
0
votes
1answer
35 views

What exactly is an OutputIterator and how to build one for use with CGAL Kd_tree::search?

I'm using CGAL's Kd-tree implementation along with Fuzzy spheres as query objects to get the points enclosed in a sphere of radius r_max centered at a point. Here is this minimal working example: ...
0
votes
1answer
128 views

dual kd-tree construction

Please anyone tell me how to construct dual kd-tree and how to traverse it? And at least tell me the algorithm for finding nearest neighbor using this dual tree concept in java. This will help full ...
0
votes
1answer
159 views

KD-tree in a MongoDB DB collection

I am trying to solve the k nearest neighbor problem on a set of objects in 3-space. These objects live in a MongoDB collection with all the joy and sorrow that comes with document based storage. ...

1 2