Octree

来源:互联网 发布:羊绒围巾 牌子 知乎 编辑:程序博客网 时间:2024/05/21 07:08

Octree

From Wikipedia, the free encyclopedia
Left: Recursive subdivision of a cube into octants. Right: The corresponding octree.

An octree is a tree data structure in which each internal node has exactly eight children. Octrees are most often used to partition a three dimensional space by recursively subdividing it into eight octants. Octrees are the three-dimensional analog of quadtrees. The name is formed from oct + tree, but note that it is normally written "octree" with only one "t". Octrees are often used in 3D graphics and 3D game engines.

Contents

  [hide] 
  • 1 Octrees for spatial representation
  • 2 History
  • 3 Common uses of octrees
  • 4 Application to color quantization
  • 5 See also
  • 6 References
  • 7 External links

Octrees for spatial representation[edit source | editbeta]

Each node in an octree subdivides the space it represents into eight octants. In a point region (PR) octree, the node stores an explicit 3-dimensional point, which is the "center" of the subdivision for that node; the point defines one of the corners for each of the eight children. In an MX octree, the subdivision point is implicitly the center of the space the node represents. The root node of a PR octree can represent infinite space; the root node of an MX octree must represent a finite bounded space so that the implicit centers are well-defined. Note that Octrees are not the same as k-d trees. k-d trees split along a dimension and octrees split around a point and k-d trees are also always binary, which is not the case for octrees. By using a depth-first search the nodes are to be traversed and only required surfaces are to be viewed.

History[edit source | editbeta]

The use of octrees for 3D computer graphics was pioneered by Donald Meagher at Rensselaer Polytechnic Institute, described in a 1980 report "Octree Encoding: A New Technique for the Representation, Manipulation and Display of Arbitrary 3-D Objects by Computer",[1] for which he holds a 1995 patent (with a 1984 priority date) "High-speed image generation of complex solid objects using octree encoding" [2]

Common uses of octrees[edit source | editbeta]

  • 3D computer graphics
  • Spatial indexing
  • Nearest neighbor search
  • Efficient collision detection in three dimensions
  • View frustum culling
  • Fast Multipole Method
  • Unstructured grid
  • Finite element analysis
  • Sparse voxel octree
  • State estimation[3]

Application to color quantization[edit source | editbeta]

The octree color quantization algorithm, invented by Gervautz and Purgathofer in 1988, encodes image color data as an octree up to nine levels deep. Octrees are used because 2^3 = 8 and there are three color components in the RGB system. The node index to branch out from at the top level is determined by a formula that uses the most significant bits of the red, green, and blue color components, e.g. 4r + 2g + b. The next lower level uses the next bit significance, and so on. Less significant bits are sometimes ignored to reduce the tree size.

The algorithm is highly memory efficient because the tree's size can be limited. The bottom level of the octree consists of leaf nodes that accrue color data not represented in the tree; these nodes initially contain single bits. If much more than the desired number of palette colors are entered into the octree, its size can be continually reduced by seeking out a bottom-level node and averaging its bit data up into a leaf node, pruning part of the tree. Once sampling is complete, exploring all routes in the tree down to the leaf nodes, taking note of the bits along the way, will yield approximately the required number of colors.

See also[edit source | editbeta]

  • Binary space partitioning
  • Kd-tree
  • Quadtree
  • Bounding Interval Hierarchy
  • Klee's measure problem
  • Linear octrees
  • Cube 2, a 3D game engine in which geometry is almost entirely based on octrees
  • OGRE, has an Octree Scene Manager Implementation
  • Irrlicht Engine, supports octree scene nodes
  • id Tech 6 an in development 3D game engine that utilizes voxels stored in octrees
  • Voxel

References[edit source | editbeta]

  1. ^ Meagher, Donald (October 1980). "Octree Encoding: A New Technique for the Representation, Manipulation and Display of Arbitrary 3-D Objects by Computer". Rensselaer Polytechnic Institute(Technical Report IPL-TR-80-111).
  2. ^ Meagher, Donald. "High-speed image generation of complex solid objects using octree encoding". USPO. Retrieved 20 September 2012.
  3. ^ Henning Eberhardt, Vesa Klumpp, Uwe D. Hanebeck, Density Trees for Efficient Nonlinear State Estimation, Proceedings of the 13th International Conference on Information Fusion, Edinburgh, United Kingdom, July, 2010.

External links[edit source | editbeta]

Wikimedia Commons has media related to: Octrees
  • Octree Quantization in Microsoft Systems Journal
  • Color Quantization using Octrees in Dr. Dobb's
  • Color Quantization using Octrees in Dr. Dobb's Source Code
  • Octree Color Quantization Overview
  • Parallel implementation of octtree generation algorithm, P. Sojan Lal, A Unnikrishnan, K Poulose Jacob, ICIP 1997, IEEE Digital Library
  • Generation of Octrees from Raster Scan with Reduced Information Loss, P. Sojan Lal, A Unnikrishnan, K Poulose Jacob, IASTED International conference VIIP 2001 [1]
  • C++ implementation (GPL license)
  • Parallel Octrees for Finite Element Applications
  • Cube 2: Sauerbraten - a game written in the octree-heavy Cube 2 engine
  • Ogre - A 3d Object-oriented Graphics Rendering Engine with a Octree Scene Manager Implementation (MIT license)
  • Dendro: parallel multigrid for octree meshes (MPI/C++ implementation)
  • Video: Use of an octree in state estimation