Uses of Class
elki.index.tree.spatial.rstarvariants.AbstractRStarTreeNode
-
Packages that use AbstractRStarTreeNode Package Description elki.algorithm Miscellaneous algorithms.elki.index.tree.spatial.rstarvariants R*-tree and variants.elki.index.tree.spatial.rstarvariants.deliclu elki.index.tree.spatial.rstarvariants.flat elki.index.tree.spatial.rstarvariants.query Queries on the R-Tree family of indexes: kNN and range queries.elki.index.tree.spatial.rstarvariants.rdknn elki.index.tree.spatial.rstarvariants.rstar elki.index.tree.spatial.rstarvariants.strategies.overflow Overflow treatment strategies for R-trees.elki.visualization.visualizers.parallel.index Visualizers for index structure based on parallel coordinates.elki.visualization.visualizers.scatterplot.index Visualizers for index structures based on 2D projections. -
-
Uses of AbstractRStarTreeNode in elki.algorithm
Methods in elki.algorithm with parameters of type AbstractRStarTreeNode Modifier and Type Method Description private java.util.List<KNNHeap>KNNJoin. initHeaps(SpatialPrimitiveDistance<?> distFunction, AbstractRStarTreeNode<?,?> pr)Initialize the heaps.private voidKNNJoin. processDataPages(SpatialPrimitiveDistance<?> df, java.util.List<KNNHeap> pr_heaps, java.util.List<KNNHeap> ps_heaps, AbstractRStarTreeNode<?,?> pr, AbstractRStarTreeNode<?,?> ps)Processes the two data pages pr and ps and determines the k-nearest neighbors of pr in ps. -
Uses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants
Classes in elki.index.tree.spatial.rstarvariants with type parameters of type AbstractRStarTreeNode Modifier and Type Class Description classAbstractRStarTree<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry,S extends RTreeSettings>Abstract superclass for index structures based on a R*-Tree.classAbstractRStarTreeFactory<O extends NumberVector,N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry,S extends RTreeSettings>Abstract factory for R*-Tree based trees.classAbstractRStarTreeNode<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>Abstract superclass for nodes in a R*-Tree.classNonFlatRStarTree<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry,S extends RTreeSettings>Abstract superclass for all non-flat R*-Tree variants. -
Uses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants.deliclu
Subclasses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants.deliclu Modifier and Type Class Description classDeLiCluNodeRepresents a node in a DeLiClu-Tree. -
Uses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants.flat
Subclasses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants.flat Modifier and Type Class Description classFlatRStarTreeNodeRepresents a node in a flat R*-Tree. -
Uses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants.query
Fields in elki.index.tree.spatial.rstarvariants.query declared as AbstractRStarTreeNode Modifier and Type Field Description (package private) AbstractRStarTreeNode<?,?>EuclideanRStarTreeDistancePrioritySearcher. nodeCurrent node(package private) AbstractRStarTreeNode<?,?>RStarTreeDistancePrioritySearcher. nodeCurrent node -
Uses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants.rdknn
Subclasses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants.rdknn Modifier and Type Class Description classRdKNNNodeRepresents a node in a RDkNN-Tree.Methods in elki.index.tree.spatial.rstarvariants.rdknn with parameters of type AbstractRStarTreeNode Modifier and Type Method Description protected java.util.List<DoubleObjPair<RdKNNEntry>>RdKNNTree. getSortedEntries(AbstractRStarTreeNode<?,?> node, SpatialComparable q, SpatialPrimitiveDistance<?> distance)Sorts the entries of the specified node according to their minimum distance to the specified object. -
Uses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants.rstar
Subclasses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants.rstar Modifier and Type Class Description classRStarTreeNodeRepresents a node in an R*-Tree. -
Uses of AbstractRStarTreeNode in elki.index.tree.spatial.rstarvariants.strategies.overflow
Methods in elki.index.tree.spatial.rstarvariants.strategies.overflow with type parameters of type AbstractRStarTreeNode Modifier and Type Method Description <N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
booleanLimitedReinsertOverflowTreatment. handleOverflow(AbstractRStarTree<N,E,?> tree, N node, IndexTreePath<E> path)<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
booleanOverflowTreatment. handleOverflow(AbstractRStarTree<N,E,?> tree, N node, IndexTreePath<E> path)Handle overflow in the given node.<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
booleanSplitOnlyOverflowTreatment. handleOverflow(AbstractRStarTree<N,E,?> tree, N node, IndexTreePath<E> path) -
Uses of AbstractRStarTreeNode in elki.visualization.visualizers.parallel.index
Classes in elki.visualization.visualizers.parallel.index with type parameters of type AbstractRStarTreeNode Modifier and Type Class Description classRTreeParallelVisualization.Instance<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>Instance for a particular data set and tree -
Uses of AbstractRStarTreeNode in elki.visualization.visualizers.scatterplot.index
Classes in elki.visualization.visualizers.scatterplot.index with type parameters of type AbstractRStarTreeNode Modifier and Type Class Description classTreeMBRVisualization.Instance<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>Instance for a particular tree
-