Environment for
DeveLoping
KDD-Applications
Supported by Index-Structures

Uses of Interface
de.lmu.ifi.dbs.elki.index.tree.spatial.SpatialEntry

Packages that use SpatialEntry
de.lmu.ifi.dbs.elki.algorithm Algorithms suitable as a task for the KDDTask main routine. 
de.lmu.ifi.dbs.elki.algorithm.clustering Clustering algorithms Clustering algorithms are supposed to implement the Algorithm-Interface. 
de.lmu.ifi.dbs.elki.database ELKI database layer - loading, storing, indexing and accessing data 
de.lmu.ifi.dbs.elki.index.tree.spatial Tree-based index structures for spatial indexing. 
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.rdknn RdKNNTree 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar RStarTree 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.util Utilities for R*-Tree and variants. 
de.lmu.ifi.dbs.elki.preprocessing Preprocessors used for data preparation in a first step of various algorithms or distance and similarity measures. 
de.lmu.ifi.dbs.elki.visualization.visualizers.vis2d Visualizers based on 2D projections. 
 

Uses of SpatialEntry in de.lmu.ifi.dbs.elki.algorithm
 

Classes in de.lmu.ifi.dbs.elki.algorithm with type parameters of type SpatialEntry
 class KNNJoin<V extends NumberVector<V,?>,D extends Distance<D>,N extends SpatialNode<N,E>,E extends SpatialEntry>
          Joins in a given spatial database to each object its k-nearest neighbors.
 

Uses of SpatialEntry in de.lmu.ifi.dbs.elki.algorithm.clustering
 

Fields in de.lmu.ifi.dbs.elki.algorithm.clustering declared as SpatialEntry
(package private)  SpatialEntry DeLiClu.SpatialObjectPair.entry1
          The first entry of this pair.
(package private)  SpatialEntry DeLiClu.SpatialObjectPair.entry2
          The second entry of this pair.
 

Methods in de.lmu.ifi.dbs.elki.algorithm.clustering with parameters of type SpatialEntry
private  void DeLiClu.reinsertExpanded(SpatialDistanceFunction<O,D> distFunction, DeLiCluTree<O> index, List<TreeIndexPathComponent<DeLiCluEntry>> path, int pos, SpatialEntry parentEntry, AnnotationResult<KNNList<D>> knns)
           
 

Constructors in de.lmu.ifi.dbs.elki.algorithm.clustering with parameters of type SpatialEntry
DeLiClu.SpatialObjectPair(SpatialEntry entry1, SpatialEntry entry2, boolean isExpandable)
          Creates a new entry with the specified parameters.
 

Uses of SpatialEntry in de.lmu.ifi.dbs.elki.database
 

Classes in de.lmu.ifi.dbs.elki.database with type parameters of type SpatialEntry
 class SpatialIndexDatabase<O extends NumberVector<O,?>,N extends SpatialNode<N,E>,E extends SpatialEntry>
          SpatialIndexDatabase is a database implementation which is supported by a spatial index structure.
 

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

Classes in de.lmu.ifi.dbs.elki.index.tree.spatial with type parameters of type SpatialEntry
 class SpatialIndex<O extends NumberVector<O,?>,N extends SpatialNode<N,E>,E extends SpatialEntry>
          Abstract super class for all spatial index classes.
 interface SpatialNode<N extends SpatialNode<N,E>,E extends SpatialEntry>
          Defines the requirements for an object that can be used as a node in a Spatial Index.
 

Classes in de.lmu.ifi.dbs.elki.index.tree.spatial that implement SpatialEntry
 class SpatialDirectoryEntry
          Represents an entry in a directory node of a spatial index.
 class SpatialLeafEntry
          Represents an entry in a leaf node of a spatial index.
 

Uses of SpatialEntry 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 SpatialEntry
 class AbstractRStarTree<O extends NumberVector<O,?>,N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
          Abstract superclass for index structures based on a R*-Tree.
 class AbstractRStarTreeNode<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
          Abstract superclass for nodes in a R*-Tree.
 class NonFlatRStarTree<O extends NumberVector<O,?>,N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
          Abstract superclass for all non-flat R*-Tree variants.
(package private)  class TopologicalSplit<E extends SpatialEntry>
          Encapsulates the required parameters for a topological split of a R*-Tree.
 

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

Subinterfaces of SpatialEntry in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu
 interface DeLiCluEntry
          Defines the requirements for an entry in an DeLiClu-Tree node.
 

Classes in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu that implement SpatialEntry
 class DeLiCluDirectoryEntry
          Defines the requirements for a directory entry in an DeLiClu-Tree node.
 class DeLiCluLeafEntry
          Defines the requirements for a leaf entry in an DeLiClu-Tree node.
 

Methods in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu with parameters of type SpatialEntry
 Set<Integer> DeLiCluTree.getExpanded(SpatialEntry entry)
          Returns the nodes which are already expanded with the specified node.
 void DeLiCluTree.setExpanded(SpatialEntry entry1, SpatialEntry entry2)
          Marks the nodes with the specified ids as expanded.
 

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

Subinterfaces of SpatialEntry in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rdknn
(package private)  interface RdKNNEntry<D extends NumberDistance<D,N>,N extends Number>
          Defines the requirements for an entry in an RdKNN-Tree node.
 

Classes in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rdknn that implement SpatialEntry
 class RdKNNDirectoryEntry<D extends NumberDistance<D,N>,N extends Number>
          Represents an entry in a directory node of an RdKNN-Tree.
 class RdKNNLeafEntry<D extends NumberDistance<D,N>,N extends Number>
          Represents an entry in a leaf node of an RdKNN-Tree.
 

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

Methods in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar that return SpatialEntry
protected  SpatialEntry RStarTree.createNewDirectoryEntry(RStarTreeNode node)
           
protected  SpatialEntry RStarTree.createNewLeafEntry(O o)
           
protected  SpatialEntry RStarTree.createRootEntry()
          Creates an entry representing the root node.
 

Methods in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar with parameters of type SpatialEntry
protected  void RStarTree.preInsert(SpatialEntry entry)
          Performs necessary operations before inserting the specified entry.
 

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

Classes in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.util with type parameters of type SpatialEntry
 class Enlargement<E extends SpatialEntry>
          Encapsulates the parameters for enlargement of nodes after insertion of new objects.
 

Uses of SpatialEntry in de.lmu.ifi.dbs.elki.preprocessing
 

Classes in de.lmu.ifi.dbs.elki.preprocessing with type parameters of type SpatialEntry
 class SpatialApproximationMaterializeKNNPreprocessor<O extends NumberVector<O,?>,D extends Distance<D>,N extends SpatialNode<N,E>,E extends SpatialEntry>
          A preprocessor for annotation of the k nearest neighbors (and their distances) to each database object.
 

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

Classes in de.lmu.ifi.dbs.elki.visualization.visualizers.vis2d with type parameters of type SpatialEntry
 class TreeMBRVisualizer<NV extends NumberVector<NV,?>,N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
          Visualize the bounding rectangles of an rtree based index.
 


Release 0.3 (2010-03-31_1612)