Uses of Interface
elki.database.query.range.RangeSearcher
-
Packages that use RangeSearcher Package Description elki.application.benchmark Benchmarking pseudo algorithms.elki.clustering.dbscan DBSCAN and its generalizations.elki.clustering.dbscan.predicates Neighbor and core predicated for Generalized DBSCAN.elki.clustering.optics OPTICS family of clustering algorithms.elki.clustering.subspace Axis-parallel subspace clustering algorithms.elki.database.query Database queries - computing distances, neighbors, similarities - API and general documentation.elki.database.query.distance Prepared queries for distances.elki.database.query.range Prepared queries for ε-range queries, that return all objects within the radius ε.elki.index Index structure implementations.elki.index.distancematrix Precomputed distance matrix.elki.index.idistance iDistance is a distance based indexing technique, using a reference points embedding.elki.index.invertedlist Indexes using inverted lists.elki.index.laesa Linear Approximating and Eliminating Search Algorithm (LAESA).elki.index.lsh Locality Sensitive Hashing.elki.index.projected Projected indexes for data.elki.index.tree.metrical.covertree Cover-tree variations.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.mtree elki.index.tree.metrical.mtreevariants.query Classes for performing queries (knn, range, ...) on metrical trees.elki.index.tree.metrical.vptree elki.index.tree.spatial.kd K-d-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.vafile Vector Approximation File.elki.math.statistics.intrinsicdimensionality Methods for estimating the intrinsic dimensionality.elki.outlier Outlier detection algorithms.elki.outlier.lof LOF family of outlier detection algorithms. -
-
Uses of RangeSearcher in elki.application.benchmark
Methods in elki.application.benchmark with parameters of type RangeSearcher Modifier and Type Method Description protected int
RangeQueryBenchmark. run(RangeSearcher<DBIDRef> rangeQuery, Relation<O> relation, double radius, Duration dur, MeanVariance mv)
Run the algorithm, with constant radiusprotected int
RangeQueryBenchmark. run(RangeSearcher<DBIDRef> rangeQuery, Relation<O> relation, Relation<NumberVector> radrel, Duration dur, MeanVariance mv)
Run the algorithm, with separate radius relationprotected int
RangeQueryBenchmark. run(RangeSearcher<O> rangeQuery, Relation<O> relation, DatabaseConnection queries, Duration dur, MeanVariance mv)
Run the algorithm, with a separate query set. -
Uses of RangeSearcher in elki.clustering.dbscan
Fields in elki.clustering.dbscan declared as RangeSearcher Modifier and Type Field Description protected RangeSearcher<DBIDRef>
DBSCAN.Instance. rangeQuery
Range query to use.Methods in elki.clustering.dbscan with parameters of type RangeSearcher Modifier and Type Method Description protected int
GriDBSCAN.Instance. expandCluster(DBIDRef seed, int clusterid, WritableIntegerDataStore clusterids, ModifiableDoubleDBIDList neighbors, ArrayModifiableDBIDs activeSet, RangeSearcher<DBIDRef> rq, FiniteProgress pprog)
Set-based expand cluster implementation.protected void
DBSCAN.Instance. run(Relation<O> relation, RangeSearcher<DBIDRef> rangeSearcher)
Run the DBSCAN algorithm -
Uses of RangeSearcher in elki.clustering.dbscan.predicates
Fields in elki.clustering.dbscan.predicates declared as RangeSearcher Modifier and Type Field Description protected RangeSearcher<DBIDRef>
EpsilonNeighborPredicate.Instance. rq
Range query to use on the database.protected RangeSearcher<DBIDRef>
SimilarityNeighborPredicate.Instance. rq
Range query to use on the database.Methods in elki.clustering.dbscan.predicates with parameters of type RangeSearcher Modifier and Type Method Description DataStore<M>
AbstractRangeQueryNeighborPredicate. preprocess(java.lang.Class<? super M> modelcls, Relation<? extends O> relation, RangeSearcher<DBIDRef> query)
Perform the preprocessing step.Constructors in elki.clustering.dbscan.predicates with parameters of type RangeSearcher Constructor Description Instance(double epsilon, RangeSearcher<DBIDRef> rq, DBIDs ids)
Constructor.Instance(double epsilon, RangeSearcher<DBIDRef> rq, DBIDs ids)
Constructor. -
Uses of RangeSearcher in elki.clustering.optics
Fields in elki.clustering.optics declared as RangeSearcher Modifier and Type Field Description (package private) RangeSearcher<DBIDRef>
OPTICSHeap.Instance. rangeQuery
Range query.(package private) RangeSearcher<DBIDRef>
OPTICSList.Instance. rangeQuery
Range query. -
Uses of RangeSearcher in elki.clustering.subspace
Methods in elki.clustering.subspace with parameters of type RangeSearcher Modifier and Type Method Description private long[][]
PROCLUS. findDimensions(ArrayDBIDs medoids, Relation<? extends NumberVector> relation, DistanceQuery<? extends NumberVector> distance, RangeSearcher<DBIDRef> rangeQuery)
Determines the set of correlated dimensions for each medoid in the specified medoid set.private DataStore<DBIDs>
PROCLUS. getLocalities(DBIDs medoids, DistanceQuery<? extends NumberVector> distance, RangeSearcher<DBIDRef> rangeQuery)
Computes the localities of the specified medoids: for each medoid m the objects in the sphere centered at m with radius minDist are determined, where minDist is the minimum distance between medoid m and any other medoid m_i. -
Uses of RangeSearcher in elki.database.query
Subinterfaces of RangeSearcher in elki.database.query Modifier and Type Interface Description interface
PrioritySearcher<O>
Distance priority-based searcher.Classes in elki.database.query that implement RangeSearcher Modifier and Type Class Description class
ExactPrioritySearcher<O>
Priority searcher that refines all objects to their exact distances, using another priority searcher inside to provide candidates.class
WrappedPrioritySearchDBIDByLookup<O>
Find nearest neighbors by querying with the original object.static class
WrappedPrioritySearchDBIDByLookup.Linear<O>
Linear scan searcher.Methods in elki.database.query that return RangeSearcher Modifier and Type Method Description <O> RangeSearcher<DBIDRef>
EmpiricalQueryOptimizer. rangeByDBID(Relation<? extends O> relation, DistanceQuery<O> distanceQuery, double maxrange, int flags)
RangeSearcher<DBIDRef>
QueryBuilder. rangeByDBID()
Build a range query; if possible also give a maximum query radius.RangeSearcher<DBIDRef>
QueryBuilder. rangeByDBID(double maxrange)
Build a range query with maximum radius.default <O> RangeSearcher<DBIDRef>
QueryOptimizer. rangeByDBID(Relation<? extends O> relation, DistanceQuery<O> distanceQuery, double maxrange, int flags)
Optimize a range query for this relation.<O> RangeSearcher<O>
EmpiricalQueryOptimizer. rangeByObject(Relation<? extends O> relation, DistanceQuery<O> distanceQuery, double maxrange, int flags)
RangeSearcher<O>
QueryBuilder. rangeByObject()
Build a range query; if possible also give a maximum query radius.RangeSearcher<O>
QueryBuilder. rangeByObject(double maxrange)
Build a range query with maximum radius.default <O> RangeSearcher<O>
QueryOptimizer. rangeByObject(Relation<? extends O> relation, DistanceQuery<O> distanceQuery, double maxrange, int flags)
Optimize a range query for this relation.RangeSearcher<DBIDRef>
QueryBuilder. similarityRangeByDBID()
Build a similarity range query; if possible also specify the least selective threshold.RangeSearcher<DBIDRef>
QueryBuilder. similarityRangeByDBID(double threshold)
Build a similarity range query.default <O> RangeSearcher<DBIDRef>
QueryOptimizer. similarityRangeByDBID(Relation<? extends O> relation, SimilarityQuery<O> simQuery, double maxrange, int flags)
Optimize a range query for this relation.RangeSearcher<O>
QueryBuilder. similarityRangeByObject()
Build a similarity range query; if possible also specify the least selective threshold.RangeSearcher<O>
QueryBuilder. similarityRangeByObject(double threshold)
Build a similarity range query.default <O> RangeSearcher<O>
QueryOptimizer. similarityRangeByObject(Relation<? extends O> relation, SimilarityQuery<O> simQuery, double maxrange, int flags)
Optimize a range query for this relation. -
Uses of RangeSearcher in elki.database.query.distance
Classes in elki.database.query.distance that implement RangeSearcher Modifier and Type Class Description class
LinearScanEuclideanPrioritySearcher<Q,O extends NumberVector>
Default linear scan search class, for Euclidean distance.static class
LinearScanEuclideanPrioritySearcher.ByDBID<O extends NumberVector>
Search by DBID.static class
LinearScanEuclideanPrioritySearcher.ByObject<O extends NumberVector>
Search by Object.class
LinearScanPrioritySearcher<Q,O>
Default linear scan search class.static class
LinearScanPrioritySearcher.ByDBID<O>
Search by DBID.static class
LinearScanPrioritySearcher.ByObject<O>
Search by Object. -
Uses of RangeSearcher in elki.database.query.range
Classes in elki.database.query.range that implement RangeSearcher Modifier and Type Class Description class
LinearScanDistanceRangeByDBID<O>
Default linear scan range query class.class
LinearScanDistanceRangeByObject<O>
Default linear scan range query class.class
LinearScanEuclideanRangeByObject<O extends NumberVector>
Optimized linear scan for Euclidean distance range queries.class
LinearScanPrimitiveDistanceRangeByObject<O>
Default linear scan range query class.class
LinearScanPrimitiveSimilarityRangeByObject<O>
Default linear scan range query class.class
LinearScanSimilarityRangeByDBID<O>
Default linear scan range query class.class
LinearScanSimilarityRangeByObject<O>
Default linear scan range query class.class
WrappedRangeDBIDByLookup<O>
Find radius neighbors by querying with the original object.static class
WrappedRangeDBIDByLookup.Linear<O>
Linear scan searcher.Fields in elki.database.query.range declared as RangeSearcher Modifier and Type Field Description private RangeSearcher<O>
WrappedRangeDBIDByLookup. inner
Inner radius searcher.Methods in elki.database.query.range that return RangeSearcher Modifier and Type Method Description static <O> RangeSearcher<DBIDRef>
WrappedRangeDBIDByLookup. wrap(Relation<? extends O> relation, RangeSearcher<O> inner)
Wrap a query, if notnull
.Methods in elki.database.query.range with parameters of type RangeSearcher Modifier and Type Method Description static <O> RangeSearcher<DBIDRef>
WrappedRangeDBIDByLookup. wrap(Relation<? extends O> relation, RangeSearcher<O> inner)
Wrap a query, if notnull
.Constructors in elki.database.query.range with parameters of type RangeSearcher Constructor Description Linear(Relation<? extends O> relation, RangeSearcher<O> inner)
Constructor.WrappedRangeDBIDByLookup(Relation<? extends O> relation, RangeSearcher<O> inner)
Constructor. -
Uses of RangeSearcher in elki.index
Methods in elki.index that return RangeSearcher Modifier and Type Method Description default RangeSearcher<DBIDRef>
RangeIndex. rangeByDBID(DistanceQuery<O> distanceQuery, double maxrange, int flags)
Get a range query object for the given distance query and k.default RangeSearcher<O>
DistancePriorityIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
RangeSearcher<O>
RangeIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
Get a range query object for the given distance query and k.RangeSearcher<DBIDRef>
SimilarityRangeIndex. similarityRangeByDBID(SimilarityQuery<O> simQuery, double maxrange, int flags)
Get a range query object for the given distance query and k.RangeSearcher<O>
SimilarityRangeIndex. similarityRangeByObject(SimilarityQuery<O> simQuery, double maxrange, int flags)
Get a range query object for the given distance query and k. -
Uses of RangeSearcher in elki.index.distancematrix
Classes in elki.index.distancematrix that implement RangeSearcher Modifier and Type Class Description class
PrecomputedDistanceMatrix.PrecomputedDistancePrioritySearcher
Range query using the distance matrix.class
PrecomputedDistanceMatrix.PrecomputedRangeQuery
Range query using the distance matrix.private class
PrecomputedSimilarityMatrix.PrecomputedSimilarityRangeQuery
Range query using the distance matrix.Methods in elki.index.distancematrix that return RangeSearcher Modifier and Type Method Description RangeSearcher<DBIDRef>
PrecomputedDistanceMatrix. rangeByDBID(DistanceQuery<O> distanceQuery, double maxrange, int flags)
RangeSearcher<O>
PrecomputedDistanceMatrix. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
RangeSearcher<DBIDRef>
PrecomputedSimilarityMatrix. similarityRangeByDBID(SimilarityQuery<O> simQuery, double maxradius, int flags)
RangeSearcher<O>
PrecomputedSimilarityMatrix. similarityRangeByObject(SimilarityQuery<O> simQuery, double maxrange, int flags)
-
Uses of RangeSearcher in elki.index.idistance
Classes in elki.index.idistance that implement RangeSearcher Modifier and Type Class Description protected class
InMemoryIDistanceIndex.IDistanceRangeSearcher
Exact range query implementation.Methods in elki.index.idistance that return RangeSearcher Modifier and Type Method Description RangeSearcher<O>
InMemoryIDistanceIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
-
Uses of RangeSearcher in elki.index.invertedlist
Classes in elki.index.invertedlist that implement RangeSearcher Modifier and Type Class Description protected class
InMemoryInvertedIndex.ArcCosineRangeQuery
Range query object, for cosine distance.protected class
InMemoryInvertedIndex.CosineRangeQuery
kNN query object, for cosine distance.Methods in elki.index.invertedlist that return RangeSearcher Modifier and Type Method Description RangeSearcher<V>
InMemoryInvertedIndex. rangeByObject(DistanceQuery<V> distanceQuery, double maxradius, int flags)
-
Uses of RangeSearcher in elki.index.laesa
Classes in elki.index.laesa that implement RangeSearcher Modifier and Type Class Description class
LAESA.LAESARangeByDBIDSearcher
Range searcher by DBID classclass
LAESA.LAESARangeByObjectSearcher
Range searcher by object classclass
LAESA.LAESARangeSearcher<Q>
Range searcher classMethods in elki.index.laesa that return RangeSearcher Modifier and Type Method Description RangeSearcher<DBIDRef>
LAESA. rangeByDBID(DistanceQuery<O> distanceQuery, double maxrange, int flags)
RangeSearcher<O>
LAESA. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
-
Uses of RangeSearcher in elki.index.lsh
Classes in elki.index.lsh that implement RangeSearcher Modifier and Type Class Description protected class
InMemoryLSHIndex.Instance.LSHRangeQuery
Class for handling kNN queries against the LSH index.Methods in elki.index.lsh that return RangeSearcher Modifier and Type Method Description RangeSearcher<V>
InMemoryLSHIndex.Instance. rangeByObject(DistanceQuery<V> distanceQuery, double maxradius, int flags)
-
Uses of RangeSearcher in elki.index.projected
Classes in elki.index.projected that implement RangeSearcher Modifier and Type Class Description (package private) class
ProjectedIndex.ProjectedRangeByDBID
Class to proxy range queries.(package private) class
ProjectedIndex.ProjectedRangeByObject
Class to proxy range queries.Fields in elki.index.projected declared as RangeSearcher Modifier and Type Field Description (package private) RangeSearcher<I>
ProjectedIndex.ProjectedRangeByDBID. inner
Inner range query.(package private) RangeSearcher<I>
ProjectedIndex.ProjectedRangeByObject. inner
Inner range query.Methods in elki.index.projected that return RangeSearcher Modifier and Type Method Description RangeSearcher<DBIDRef>
ProjectedIndex. rangeByDBID(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
LatLngAsECEFIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
LngLatAsECEFIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
ProjectedIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
Constructors in elki.index.projected with parameters of type RangeSearcher Constructor Description ProjectedRangeByDBID(DistanceQuery<O> distanceQuery, RangeSearcher<I> inner)
Constructor.ProjectedRangeByObject(DistanceQuery<O> distanceQuery, RangeSearcher<I> inner)
Constructor. -
Uses of RangeSearcher in elki.index.tree.metrical.covertree
Classes in elki.index.tree.metrical.covertree that implement RangeSearcher Modifier and Type Class Description class
CoverTree.CoverTreePriorityDBIDSearcher
Priority query class.class
CoverTree.CoverTreePriorityObjectSearcher
Priority query class.class
CoverTree.CoverTreePrioritySearcher<Q>
Priority query class.class
CoverTree.CoverTreeRangeDBIDSearcher
Range query class.class
CoverTree.CoverTreeRangeObjectSearcher
Range query class.class
SimplifiedCoverTree.CoverTreePriorityDBIDSearcher
Priority query class.class
SimplifiedCoverTree.CoverTreePriorityObjectSearcher
Priority query class.class
SimplifiedCoverTree.CoverTreePrioritySearcher<Q>
Priority query class.class
SimplifiedCoverTree.CoverTreeRangeDBIDSearcher
Range query class.class
SimplifiedCoverTree.CoverTreeRangeObjectSearcher
Range query class.Methods in elki.index.tree.metrical.covertree that return RangeSearcher Modifier and Type Method Description RangeSearcher<DBIDRef>
CoverTree. rangeByDBID(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<DBIDRef>
SimplifiedCoverTree. rangeByDBID(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
CoverTree. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
SimplifiedCoverTree. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
-
Uses of RangeSearcher in elki.index.tree.metrical.mtreevariants.mktrees.mkapp
Methods in elki.index.tree.metrical.mtreevariants.mktrees.mkapp that return RangeSearcher Modifier and Type Method Description RangeSearcher<DBIDRef>
MkAppTreeIndex. rangeByDBID(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
MkAppTreeIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
-
Uses of RangeSearcher in elki.index.tree.metrical.mtreevariants.mktrees.mkcop
Methods in elki.index.tree.metrical.mtreevariants.mktrees.mkcop that return RangeSearcher Modifier and Type Method Description RangeSearcher<DBIDRef>
MkCoPTreeIndex. rangeByDBID(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
MkCoPTreeIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
-
Uses of RangeSearcher in elki.index.tree.metrical.mtreevariants.mktrees.mkmax
Methods in elki.index.tree.metrical.mtreevariants.mktrees.mkmax that return RangeSearcher Modifier and Type Method Description RangeSearcher<DBIDRef>
MkMaxTreeIndex. rangeByDBID(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
MkMaxTreeIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
-
Uses of RangeSearcher in elki.index.tree.metrical.mtreevariants.mktrees.mktab
Methods in elki.index.tree.metrical.mtreevariants.mktrees.mktab that return RangeSearcher Modifier and Type Method Description RangeSearcher<DBIDRef>
MkTabTreeIndex. rangeByDBID(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
MkTabTreeIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
-
Uses of RangeSearcher in elki.index.tree.metrical.mtreevariants.mtree
Methods in elki.index.tree.metrical.mtreevariants.mtree that return RangeSearcher Modifier and Type Method Description RangeSearcher<DBIDRef>
MTreeIndex. rangeByDBID(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
MTreeIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
-
Uses of RangeSearcher in elki.index.tree.metrical.mtreevariants.query
Classes in elki.index.tree.metrical.mtreevariants.query that implement RangeSearcher Modifier and Type Class Description class
MTreeRangeByDBID<O>
Instance of a range query for a particular spatial index.class
MTreeRangeByObject<O>
Instance of a range query for a particular spatial index. -
Uses of RangeSearcher in elki.index.tree.metrical.vptree
Classes in elki.index.tree.metrical.vptree that implement RangeSearcher Modifier and Type Class Description class
GNAT.GNATPriorityDBIDSearcher
Range search for the VP-tree.class
GNAT.GNATPriorityObjectSearcher
Range search for the VP-tree.class
GNAT.GNATPrioritySearcher<T>
priority search query for mvp-treeclass
GNAT.GNATRangeDBIDSearcher
Range search for the VP-tree.class
GNAT.GNATRangeObjectSearcher
Range search for the VP-tree.class
VPTree.VPTreePriorityDBIDSearcher
Range search for the VP-tree.class
VPTree.VPTreePriorityObjectSearcher
Range search for the VP-tree.class
VPTree.VPTreePrioritySearcher<Q>
Priority search for the VP-Tree.class
VPTree.VPTreeRangeDBIDSearcher
Range search for the VP-tree.class
VPTree.VPTreeRangeObjectSearcher
Range search for the VP-tree.Methods in elki.index.tree.metrical.vptree that return RangeSearcher Modifier and Type Method Description RangeSearcher<DBIDRef>
GNAT. rangeByDBID(DistanceQuery<O> distanceQuery, double maxrange, int flags)
RangeSearcher<DBIDRef>
VPTree. rangeByDBID(DistanceQuery<O> distanceQuery, double maxrange, int flags)
RangeSearcher<O>
GNAT. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
RangeSearcher<O>
VPTree. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
-
Uses of RangeSearcher in elki.index.tree.spatial.kd
Classes in elki.index.tree.spatial.kd that implement RangeSearcher Modifier and Type Class Description class
MemoryKDTree.KDTreePrioritySearcher
Priority search for the k-d-tree.class
MemoryKDTree.KDTreeRangeSearcher
Range query for the k-d-tree.class
MinimalisticMemoryKDTree.KDTreePrioritySearcher
Priority search for the k-d-tree.class
MinimalisticMemoryKDTree.KDTreeRangeSearcher
Range query for the k-d-tree.class
SmallMemoryKDTree.KDTreePrioritySearcher
Priority search for the k-d-tree.class
SmallMemoryKDTree.KDTreeRangeSearcher
Range query for the k-d-tree.Methods in elki.index.tree.spatial.kd that return RangeSearcher Modifier and Type Method Description RangeSearcher<O>
MemoryKDTree. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
RangeSearcher<O>
MinimalisticMemoryKDTree. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
RangeSearcher<O>
SmallMemoryKDTree. rangeByObject(DistanceQuery<O> distanceQuery, double maxrange, int flags)
-
Uses of RangeSearcher in elki.index.tree.spatial.rstarvariants.deliclu
Methods in elki.index.tree.spatial.rstarvariants.deliclu that return RangeSearcher Modifier and Type Method Description RangeSearcher<O>
DeLiCluTreeIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
-
Uses of RangeSearcher in elki.index.tree.spatial.rstarvariants.flat
Methods in elki.index.tree.spatial.rstarvariants.flat that return RangeSearcher Modifier and Type Method Description RangeSearcher<O>
FlatRStarTreeIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
-
Uses of RangeSearcher in elki.index.tree.spatial.rstarvariants.query
Classes in elki.index.tree.spatial.rstarvariants.query that implement RangeSearcher Modifier and Type Class Description class
EuclideanRStarTreeDistancePrioritySearcher<O extends SpatialComparable>
Instance of priority search for a particular spatial index.class
EuclideanRStarTreeRangeQuery<O extends NumberVector>
Instance of a range query for a particular spatial index.class
RStarTreeDistancePrioritySearcher<O extends SpatialComparable>
Instance of priority search for a particular spatial index.class
RStarTreeRangeSearcher<O extends SpatialComparable>
Instance of a range query for a particular spatial index.Methods in elki.index.tree.spatial.rstarvariants.query that return RangeSearcher Modifier and Type Method Description static <O extends SpatialComparable>
RangeSearcher<O>RStarTreeUtil. getRangeQuery(AbstractRStarTree<?,?,?> tree, SpatialDistanceQuery<O> distanceQuery, java.lang.Object... hints)
Get an RTree range query, using an optimized version for Euclidean distances. -
Uses of RangeSearcher in elki.index.tree.spatial.rstarvariants.rdknn
Methods in elki.index.tree.spatial.rstarvariants.rdknn that return RangeSearcher Modifier and Type Method Description RangeSearcher<O>
RdKNNTree. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
-
Uses of RangeSearcher in elki.index.tree.spatial.rstarvariants.rstar
Methods in elki.index.tree.spatial.rstarvariants.rstar that return RangeSearcher Modifier and Type Method Description RangeSearcher<O>
RStarTreeIndex. rangeByObject(DistanceQuery<O> distanceQuery, double maxradius, int flags)
-
Uses of RangeSearcher in elki.index.vafile
Classes in elki.index.vafile that implement RangeSearcher Modifier and Type Class Description class
PartialVAFile.PartialVAFileRangeQuery
Range query for this index.class
VAFile.VAFileRangeQuery
Range query for this index.Methods in elki.index.vafile that return RangeSearcher Modifier and Type Method Description RangeSearcher<V>
PartialVAFile. rangeByObject(DistanceQuery<V> distanceQuery, double maxradius, int flags)
RangeSearcher<V>
VAFile. rangeByObject(DistanceQuery<V> distanceQuery, double maxradius, int flags)
-
Uses of RangeSearcher in elki.math.statistics.intrinsicdimensionality
Methods in elki.math.statistics.intrinsicdimensionality with parameters of type RangeSearcher Modifier and Type Method Description double
ALIDEstimator. estimate(RangeSearcher<DBIDRef> rnq, DistanceQuery<?> distq, DBIDRef cur, double range)
default double
DistanceBasedIntrinsicDimensionalityEstimator. estimate(RangeSearcher<DBIDRef> rnq, DistanceQuery<? extends java.lang.Object> distq, DBIDRef cur, double range)
double
IntrinsicDimensionalityEstimator. estimate(RangeSearcher<DBIDRef> rnq, DistanceQuery<? extends O> distq, DBIDRef cur, double range)
Estimate from a distance list.double
LPCAEstimator. estimate(RangeSearcher<DBIDRef> rnq, DistanceQuery<? extends NumberVector> distq, DBIDRef cur, double range)
double
TightLIDEstimator. estimate(RangeSearcher<DBIDRef> rnq, DistanceQuery<? extends java.lang.Object> distq, DBIDRef cur, double range)
-
Uses of RangeSearcher in elki.outlier
Methods in elki.outlier with parameters of type RangeSearcher Modifier and Type Method Description private void
DWOF. clusterData(DBIDs ids, RangeSearcher<DBIDRef> rnnQuery, WritableDoubleDataStore radii, WritableDataStore<ModifiableDBIDs> labels)
This method applies a density based clustering algorithm. -
Uses of RangeSearcher in elki.outlier.lof
Methods in elki.outlier.lof with parameters of type RangeSearcher Modifier and Type Method Description protected void
LOCI. precomputeInterestingRadii(DBIDs ids, RangeSearcher<DBIDRef> rangeQuery, WritableDataStore<LOCI.DoubleIntArrayList> interestingDistances)
Preprocessing step: determine the radii of interest for each point.
-