Uses of Class
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.AbstractRStarTree

Packages that use AbstractRStarTree
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants R*-Tree and variants. 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu DeLiCluTree 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.query Queries on the R-Tree family of indexes: kNN and range queries. 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar RStarTree 
de.lmu.ifi.dbs.elki.visualization.visualizers.vis2d Visualizers based on 2D projections. 
 

Uses of AbstractRStarTree in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants
 

Classes in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants with type parameters of type AbstractRStarTree
 class AbstractRStarTreeFactory<O extends NumberVector<O,?>,N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry,I extends AbstractRStarTree<N,E> & Index>
          Abstract factory for R*-Tree based trees.
 

Subclasses of AbstractRStarTree in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants
 class NonFlatRStarTree<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
          Abstract superclass for all non-flat R*-Tree variants.
 

Methods in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants with parameters of type AbstractRStarTree
 void AbstractRStarTreeNode.integrityCheck(AbstractRStarTree<N,E> tree)
          Tests this node (for debugging purposes).
 

Uses of AbstractRStarTree in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu
 

Subclasses of AbstractRStarTree in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu
 class DeLiCluTree
          DeLiCluTree is a spatial index structure based on an R-TRee.
 class DeLiCluTreeIndex<O extends NumberVector<?,?>>
          The common use of the DeLiClu tree: indexing number vectors.
 

Uses of AbstractRStarTree in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.query
 

Fields in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.query declared as AbstractRStarTree
protected  AbstractRStarTree<?,?> DoubleDistanceRStarTreeKNNQuery.tree
          The index to use
protected  AbstractRStarTree<?,?> DoubleDistanceRStarTreeRangeQuery.tree
          The index to use
protected  AbstractRStarTree<?,?> GenericRStarTreeRangeQuery.tree
          The index to use
protected  AbstractRStarTree<?,?> GenericRStarTreeKNNQuery.tree
          The index to use
 

Methods in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.query with parameters of type AbstractRStarTree
static
<O extends SpatialComparable,D extends Distance<D>>
KNNQuery<O,D>
RStarTreeUtil.getKNNQuery(AbstractRStarTree<?,?> tree, SpatialDistanceQuery<O,D> distanceQuery, Object... hints)
          Get an RTree knn query, using an optimized double implementation when possible.
static
<O extends SpatialComparable,D extends Distance<D>>
RangeQuery<O,D>
RStarTreeUtil.getRangeQuery(AbstractRStarTree<?,?> tree, SpatialDistanceQuery<O,D> distanceQuery, Object... hints)
          Get an RTree range query, using an optimized double implementation when possible.
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.query with parameters of type AbstractRStarTree
DoubleDistanceRStarTreeKNNQuery(AbstractRStarTree<?,?> tree, DistanceQuery<O,DoubleDistance> distanceQuery, SpatialPrimitiveDoubleDistanceFunction<? super O> distanceFunction)
          Constructor.
DoubleDistanceRStarTreeRangeQuery(AbstractRStarTree<?,?> tree, DistanceQuery<O,DoubleDistance> distanceQuery, SpatialPrimitiveDoubleDistanceFunction<? super O> distanceFunction)
          Constructor.
GenericRStarTreeKNNQuery(AbstractRStarTree<?,?> tree, SpatialDistanceQuery<O,D> distanceQuery)
          Constructor.
GenericRStarTreeRangeQuery(AbstractRStarTree<?,?> tree, SpatialDistanceQuery<O,D> distanceQuery)
          Constructor.
 

Uses of AbstractRStarTree in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar
 

Subclasses of AbstractRStarTree in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar
 class RStarTree
          RStarTree is a spatial index structure based on the concepts of the R*-Tree.
 class RStarTreeIndex<O extends NumberVector<?,?>>
          The common use of the rstar tree: indexing number vectors.
 

Uses of AbstractRStarTree in de.lmu.ifi.dbs.elki.visualization.visualizers.vis2d
 

Fields in de.lmu.ifi.dbs.elki.visualization.visualizers.vis2d declared as AbstractRStarTree
protected  AbstractRStarTree<N,E> TreeMBRVisualization.tree
          The tree we visualize
 

Methods in de.lmu.ifi.dbs.elki.visualization.visualizers.vis2d with parameters of type AbstractRStarTree
private  void TreeMBRVisualization.visualizeRTreeEntry(SVGPlot svgp, Element layer, Projection2D proj, AbstractRStarTree<? extends N,E> rtree, E entry, int depth)
          Recursively draw the MBR rectangles.
 


Release 0.4.0 (2011-09-20_1324)