Uses of Class
elki.index.tree.metrical.mtreevariants.mktrees.AbstractMkTree
-
Packages that use AbstractMkTree Package Description elki.index.tree.metrical.mtreevariants.mktrees Metrical index structures based on the concepts of the M-Tree supporting processing of reverse k nearest neighbor queries by using the k-nn distances of the entries.elki.index.tree.metrical.mtreevariants.mktrees.mkapp elki.index.tree.metrical.mtreevariants.mktrees.mkcop elki.index.tree.metrical.mtreevariants.mktrees.mkmax elki.index.tree.metrical.mtreevariants.mktrees.mktab elki.index.tree.metrical.mtreevariants.query Classes for performing queries (knn, range, ...) on metrical trees. -
-
Uses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.mktrees
Subclasses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.mktrees Modifier and Type Class Description class
AbstractMkTreeUnified<O,N extends AbstractMTreeNode<O,N,E>,E extends MTreeEntry,S extends MkTreeSettings<O,N,E>>
Abstract class for all M-Tree variants supporting processing of reverse k-nearest neighbor queries by using the k-nn distances of the entries, where k is less than or equal to the given parameter. -
Uses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.mktrees.mkapp
Subclasses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.mktrees.mkapp Modifier and Type Class Description class
MkAppTree<O>
MkAppTree is a metrical index structure based on the concepts of the M-Tree supporting efficient processing of reverse k nearest neighbor queries for parameter k < kmax.class
MkAppTreeIndex<O>
MkAppTree used as database index. -
Uses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.mktrees.mkcop
Subclasses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.mktrees.mkcop Modifier and Type Class Description class
MkCoPTree<O>
MkCopTree is a metrical index structure based on the concepts of the M-Tree supporting efficient processing of reverse k nearest neighbor queries for parameter k < kmax.class
MkCoPTreeIndex<O>
MkCoPTree used as database index. -
Uses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.mktrees.mkmax
Subclasses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.mktrees.mkmax Modifier and Type Class Description class
MkMaxTree<O>
MkMaxTree is a metrical index structure based on the concepts of the M-Tree supporting efficient processing of reverse k nearest neighbor queries for parameter k <= k_max.class
MkMaxTreeIndex<O>
MkMax tree -
Uses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.mktrees.mktab
Subclasses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.mktrees.mktab Modifier and Type Class Description class
MkTabTree<O>
MkTabTree is a metrical index structure based on the concepts of the M-Tree supporting efficient processing of reverse k nearest neighbor queries for parameter k < kmax.class
MkTabTreeIndex<O>
MkTabTree used as database index. -
Uses of AbstractMkTree in elki.index.tree.metrical.mtreevariants.query
Fields in elki.index.tree.metrical.mtreevariants.query declared as AbstractMkTree Modifier and Type Field Description protected AbstractMkTree<O,?,?,?>
MkTreeRKNNQuery. index
The index to useConstructors in elki.index.tree.metrical.mtreevariants.query with parameters of type AbstractMkTree Constructor Description MkTreeRKNNQuery(AbstractMkTree<O,?,?,?> index, DistanceQuery<O> distanceQuery)
Constructor.
-