Tagged Questions

A quadtree is a geometric data structure for storing points in two-dimensional space. Quadtrees recursively partition a space into four quadrants.

learn more… | top users | synonyms

13
votes
6answers
2k views

Storing objects for locating by x,y coordinates

I'm trying to determine a fast way of storing a set of objects, each of which have an x and y coordinate value, such that I can quickly retrieve all objects within a certain rectangle or circle. For ...
9
votes
1answer
2k views

Quadtree for 2D collision detection

I'm trying to use a quadtree for 2D collision detection, but I'm a little stumped on how to implement it. First of all, I'd have a quadtree which contains four subtrees (one representing each ...
6
votes
1answer
2k views

QuadTree for 2D collision detection

I'm currently working on a 2D shoot them up type of game, and I'm using a quad tree for my collision detections. I wrote a working quad tree that correctly pushes my actors into the nodes/leaves they ...
6
votes
1answer
671 views

QuadTrees - how to update when internal items are moving

I've implemented a working QuadTree. It subdivides 2-d space in order to accomodate items, identified by their bounding box (x,y,width,height) on the smallest possible quad (up to a minimum area). My ...
5
votes
6answers
5k views

Quadtree vs Red-Black tree for a game in C++?

I have been looking for a quadtree/quadtree node implementation on the net for ages. There is some basic stuff but nothing that I would be able to really use it a game. My purpose is to store objects ...
4
votes
2answers
434 views

How does a QuadTree work for non-square areas?

I understand how quad trees work on square images (by splitting the image until the section is a single colour, which is stored in the leaf node). What happens if the image has one dimension longer ...
4
votes
1answer
396 views

Smallest bounding quadtree node

I'm writing an integer-based quadtree structure which builds up from the node, and not down. To do this, I need to discover the next largest node which contains all my elements. If I have a ...
4
votes
2answers
1k views

Are any of these quad-tree libraries any good?

It appears that a certain project of mine will require the use of quad-trees, something that I have never worked with before. From what I have read they should allow substantial performance ...
3
votes
2answers
73 views

Data Structure for Spatial Agent Based Modeling

What are some good data structures for keeping track of agents in a two-dimensional, spatial simulation? I've seen some references to quadtrees (which I understand) and kd-trees (which I don't ...
3
votes
1answer
66 views

How do you handle objects moving between quads when using quadtrees?

I'm trying to use quadtrees for collision detection in a game I'm making, but I'm not sure how to handle objects that might be moving between different quads? The only way I can think of it is by ...
3
votes
3answers
296 views

Help with algorithm for compute columns sum of a (quadtree) matrix?

Given this definition and a test matrix: data (Eq a, Show a) => QT a = C a | Q (QT a) (QT a) (QT a) (QT a) deriving (Eq, Show) data (Eq a, Num a, Show a) => Mat a = Mat {nexp :: Int, mat ...
3
votes
2answers
1k views

Building a Quadtree

I'm attempting to use a quadtree (a 4-ary tree) to hold the information in a given BMP. I'm struggling to figure out how to build the tree given any BMP. Basically the structure is such that every ...
3
votes
2answers
436 views

Spatial Indexing

I want to create a large database of GPS coordinates that can be queried by saying "Return all coordinates that are within 'n' metres of [this coordinate]". I would like to know how to implement ...
2
votes
1answer
188 views

Understanding Javascript D3 visualization quadtree

I am trying to use and understand the D3 visualization library (http://mbostock.github.com/d3/), and I am looking at their force directed code and it seems they are using a quadtree to calculate the ...
2
votes
1answer
204 views

Best solution for 2D occlusion culling

In my 2D game, I have static and dynamic objects. There can be multiple cameras. My problem: Determine objects that intersect with the current camera's view rectangle. Currently, I simply iterate ...
2
votes
2answers
316 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
283 views

Pure Python Quadtree Implementation

All, There are a few examples on implementing a quadtree using Python but my question is, does anyone know of a class written in pure python as in a single .py file that I can easily include in my ...
2
votes
2answers
224 views

Merging leaves in an octree

I have a very large point cloud (> 100000 points) that I'd like to detect planar arrangements in. I decided to use an octree to break the points into very small planar clusters and then merge ...
2
votes
2answers
199 views

Algorithm to check quadtree horizontal symmetry?

data (Eq a, Show a) => QT a = C a | Q (QT a) (QT a) (QT a) (QT a) deriving (Eq, Show) Giving the definition as above, write a predicate to check if a given image (coded as a quadtree) is ...
2
votes
2answers
1k views

Quadtree explanation and C implementation

Please explain quadtrees and provide simple code (preferably in C) for insertion and searching.
2
votes
1answer
480 views

Quadtree in javascript

I have been working in jQuery and I was given this code for a quadtree in javascript: map = array( array(array(1,2,3,4), array(1,2,3,4), array(1,2,3,4), array(1,2,3,4)), array(array(1,2,3,4), ...
2
votes
3answers
224 views

How do I… Quadtrees!

How can I go about creating a quadtree in PHP, is it even possible? I would like a "grid like" layout. So each "node" has 4 "exits" - north, south, east and west. Does anyone have some sample PHP ...
2
votes
2answers
325 views

What is an infinite scaleless quadtree called?

2D spatial indexing question: What do you call a data structure that is essentially an infinite* quadtree whose nodes contain neither absolute coordinates nor absolute scales -- in which the ...
2
votes
4answers
293 views

problem with quadTree & union

i have the following quadtree-like structure, in which each cell can either be a inner node or a leaf. if it is a leaf, it can store a color. if it is a inner node, it stores pointers to four children ...
1
vote
2answers
40 views

algorithm to recursively divide a polygon into in/out quadrants: what's it called and where's the code?

I have a lot of points (hundreds of thousands) and I want to check which ones are inside a polygon. For a relatively small polygon (i.e., likely to contain only tens or hundreds of points) I can just ...
1
vote
1answer
97 views

Inserting an object into a quadtree in Java

I'm making a quadtree and need helping inserting an object into it. I understand the concept of doing it, but I'm not great with recursion and the way Java passes variables. I have a Quadtree class ...
1
vote
0answers
57 views

Quadtree Removal

I am writing a removal method for a quad tree. Now when you remove an item in a node, you will need to check its siblings to see if you need to collapse the nodes and merge them into one. For ...
1
vote
3answers
141 views

Problem with huge objects in a quad tree

Let's say I have circular objects. Each object has a diameter of 64 pixels. The cells of my quad tree are let's say 96x96 pixels. Everything will be fine and working well when I check collision from ...
1
vote
1answer
277 views

Using a QuadTree to get all points within a bounding circle

I have a set of 100 to 200 points (x,y). I have to check which ones fall within a particular distance of the others. The particular distance is fixed for the entire program, say 50. Say point 1 falls ...
1
vote
0answers
61 views

How can gpx track add to quadtree?

Hi I have a problem work whit very big gpx tracks for Android. I would like to add small parts of track to quadtree, and only this small parts draw to the display. My real problem is how implement a ...
1
vote
1answer
239 views

Connected graph with quadtrees (pathfinding)

I read some about quadtrees, and I am trying to take advantage of them for pathfinding. To this end, I am trying to use a quadtree to create a connected graph, where each "minimum rectangle" (a ...
1
vote
4answers
166 views

Apply a function to a list and pass its result to a constructor?

How can just write flipvone time applying it to each element of list [se, sq, nw, ne], giving the result (not as a list of course) to the Q constructor? data (Eq a, Show a) => QT a = C a | Q (QT ...
1
vote
1answer
59 views

a compression/packing problem

I have a problem: Given an array nxm that contains 0's or 1's, I need group the 0 values into rectangles. At the beginning, I was used a simple quadtree, but different nodes in the same level of the ...
1
vote
4answers
327 views

Efficient way of locating and/or selecting graphic object in a fixed grid

I have a panel that is filled with a large number of circles (Ellipse2D). The circles are stored in a 2 dimensional array (rows and columns). My goal is to be able to "paint" the circles as I drag ...
1
vote
1answer
938 views

Quadtree detects collision inaccurately

I am trying to implement a quadtree of rectangles (instead of points) to be used for collision detection. For some reason, overlap/intersection/collision is not always detected. I suspect this has ...
0
votes
1answer
49 views

Building a QuadTree according to population density in Java

I'm looking for a java code for building a QuadTree according to population density. Also, I'm using Google maps in my code so if somebody knows how to implement it, that would be very helpful! Thanx
0
votes
1answer
63 views

Concerning Octrees

I am creating a Minecraft like terrain engine thing, and I was wondering what exactly octrees are. With my engine I have seperated each part of it into chunks or regions - which from what I have read ...
0
votes
0answers
54 views

Quadtree object movement

So I need some help brainstorming, from a theoretical standpoint. Right now I have some code that just draws some objects. The objects lie in the leaves of a quadtree. Now as the objects move I want ...
0
votes
1answer
92 views

Quadtree construction from morton ordered points

I have a collection of points [(x1,y1),(x2,y2), ..., (xn,yn)] which are Morton sorted. I wish to construct a pointer-based compressed quadtree from these points. Reading Eppstein et al and Aluru I ...
0
votes
0answers
95 views

Implementation of Quadtree Collision

For a game I'm trying to make I plan on using quadtree collision (because there will probably be lots of objects that I'll need to check for collision against) however I'm not entirely sure how to ...
0
votes
0answers
57 views

Bulk-load algorithm for MX-CIF quadtree

My application loads a collection of ~100k items (rectangles) from a map file, then builds a MX-CIF quadtree as an index for fast lookup. The quadtree is built at startup and its contents do not ...
0
votes
2answers
384 views

“Pure” C quadtree to use for collision detection purposes

I have been studying about quadtrees and their usage in collision detection in videogame code. However, all the implementations so far rely on object-oriented features of C++,C#, javascript and Lua ...
0
votes
0answers
43 views

Non-fixed size quadtree possible?

I'd like to create a solution for organizing my entities in world space for simple and fast culling, especially for static geometry. I've read about the classical solution, the quadtree, which seems ...
0
votes
0answers
80 views

How do I use qtdecomp to generate quadtrees?

I have a gray scale image If and I want to generate a quadtree. I tried using the qtdecomp function as: [s]=qtdecomp(If); but I get the following error Error using ==> qtdecomp>ParseInputs ...
0
votes
0answers
256 views

How to implement a Quadtree for spatial partitioning

I'm having trouble with spatial partitioning for my class. The problem I'm having is implementing the Quadtree in C++ using DirectX. I get the concept behind it but the coding to implement it is what ...
0
votes
2answers
222 views

Quadtree issue - storing redundant info

I have an image which is not a square (m x n dimension). Also its dimensions are not to the base 2 (i.e m not = 2^k & n not = 2^k). I have dealt with this by placing the image in a larger square ...
0
votes
1answer
167 views

Quadtree decomposition on non square image

Does anyone know the best way to perform Quadtree decomposition on a non square image? I keep getting lines appearing across my image which is drawn using a Quadtree.
0
votes
2answers
515 views

Occurs check: cannot construct the infinite type?

I'm trying to write a function that, given two quadtrees representing images, will output another boolean quadtree "mask", with value True for a pixel if both quadtrees have the same color the ...
0
votes
1answer
145 views

Too many pattern matches to write down for Quadtrees?

Imagine a quadtree defined as follow: data (Eq a, Show a) => QT a = C a | Q (QT a) (QT a) (QT a) (QT a) deriving (Eq, Show) bad1 = Q u u u u where u = C 255 bad2 = Q (C 0) (C 255) (Q u u u u) ...
0
votes
2answers
461 views

Decent (r-tree, quad-tree or similar) library in ruby for searching spatial data

I have a database of 20k+ cities with latitude and longitude and I need to make lot of nearest point queries (which city is the nearest to certain lat,long point) against this dataset. I guess an ...

1 2