Classes
contrib/brl/bseg/brip/brip_quadtree_node.h File Reference

A quadtree structure for 2-d arrays (not necessarily an image) More...

#include <vcl_vector.h>
#include <vbl/vbl_ref_count.h>
#include <brip/brip_quadtree_node_base_sptr.h>

Go to the source code of this file.

Classes

class  brip_quadtree_node_base
 the base class representing the quadtree datastructure - holds no data. More...
class  brip_quadtree_node< T >
 the templated subclass that holds data values, T, in a quadtree structure. More...
class  brip_quadtree_node< float >

Detailed Description

A quadtree structure for 2-d arrays (not necessarily an image)

Author:
J.L. Mundy March 8, 2008
    a quadtree node has the structure:
        ( node )
      ./  |  |  \.
    q00 q01 q10 q11  (indexed by i, j as qij)
   
The quadtree can hold any datatype, not necessarily image data.
   Modifications:
     None
   

Definition in file brip_quadtree_node.h.