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 intRangeQueryBenchmark. run(RangeSearcher<DBIDRef> rangeQuery, Relation<O> relation, double radius, Duration dur, MeanVariance mv)Run the algorithm, with constant radiusprotected intRangeQueryBenchmark. run(RangeSearcher<DBIDRef> rangeQuery, Relation<O> relation, Relation<NumberVector> radrel, Duration dur, MeanVariance mv)Run the algorithm, with separate radius relationprotected intRangeQueryBenchmark. 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. rangeQueryRange query to use.Methods in elki.clustering.dbscan with parameters of type RangeSearcher Modifier and Type Method Description protected intGriDBSCAN.Instance. expandCluster(DBIDRef seed, int clusterid, WritableIntegerDataStore clusterids, ModifiableDoubleDBIDList neighbors, ArrayModifiableDBIDs activeSet, RangeSearcher<DBIDRef> rq, FiniteProgress pprog)Set-based expand cluster implementation.protected voidDBSCAN.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. rqRange query to use on the database.protected RangeSearcher<DBIDRef>SimilarityNeighborPredicate.Instance. rqRange 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. rangeQueryRange query.(package private) RangeSearcher<DBIDRef>OPTICSList.Instance. rangeQueryRange 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 interfacePrioritySearcher<O>Distance priority-based searcher.Classes in elki.database.query that implement RangeSearcher Modifier and Type Class Description classExactPrioritySearcher<O>Priority searcher that refines all objects to their exact distances, using another priority searcher inside to provide candidates.classWrappedPrioritySearchDBIDByLookup<O>Find nearest neighbors by querying with the original object.static classWrappedPrioritySearchDBIDByLookup.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 classLinearScanEuclideanPrioritySearcher<Q,O extends NumberVector>Default linear scan search class, for Euclidean distance.static classLinearScanEuclideanPrioritySearcher.ByDBID<O extends NumberVector>Search by DBID.static classLinearScanEuclideanPrioritySearcher.ByObject<O extends NumberVector>Search by Object.classLinearScanPrioritySearcher<Q,O>Default linear scan search class.static classLinearScanPrioritySearcher.ByDBID<O>Search by DBID.static classLinearScanPrioritySearcher.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 classLinearScanDistanceRangeByDBID<O>Default linear scan range query class.classLinearScanDistanceRangeByObject<O>Default linear scan range query class.classLinearScanEuclideanRangeByObject<O extends NumberVector>Optimized linear scan for Euclidean distance range queries.classLinearScanPrimitiveDistanceRangeByObject<O>Default linear scan range query class.classLinearScanPrimitiveSimilarityRangeByObject<O>Default linear scan range query class.classLinearScanSimilarityRangeByDBID<O>Default linear scan range query class.classLinearScanSimilarityRangeByObject<O>Default linear scan range query class.classWrappedRangeDBIDByLookup<O>Find radius neighbors by querying with the original object.static classWrappedRangeDBIDByLookup.Linear<O>Linear scan searcher.Fields in elki.database.query.range declared as RangeSearcher Modifier and Type Field Description private RangeSearcher<O>WrappedRangeDBIDByLookup. innerInner 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 classPrecomputedDistanceMatrix.PrecomputedDistancePrioritySearcherRange query using the distance matrix.classPrecomputedDistanceMatrix.PrecomputedRangeQueryRange query using the distance matrix.private classPrecomputedSimilarityMatrix.PrecomputedSimilarityRangeQueryRange 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 classInMemoryIDistanceIndex.IDistanceRangeSearcherExact 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 classInMemoryInvertedIndex.ArcCosineRangeQueryRange query object, for cosine distance.protected classInMemoryInvertedIndex.CosineRangeQuerykNN 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 classLAESA.LAESARangeByDBIDSearcherRange searcher by DBID classclassLAESA.LAESARangeByObjectSearcherRange searcher by object classclassLAESA.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 classInMemoryLSHIndex.Instance.LSHRangeQueryClass 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) classProjectedIndex.ProjectedRangeByDBIDClass to proxy range queries.(package private) classProjectedIndex.ProjectedRangeByObjectClass to proxy range queries.Fields in elki.index.projected declared as RangeSearcher Modifier and Type Field Description (package private) RangeSearcher<I>ProjectedIndex.ProjectedRangeByDBID. innerInner range query.(package private) RangeSearcher<I>ProjectedIndex.ProjectedRangeByObject. innerInner 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 classCoverTree.CoverTreePriorityDBIDSearcherPriority query class.classCoverTree.CoverTreePriorityObjectSearcherPriority query class.classCoverTree.CoverTreePrioritySearcher<Q>Priority query class.classCoverTree.CoverTreeRangeDBIDSearcherRange query class.classCoverTree.CoverTreeRangeObjectSearcherRange query class.classSimplifiedCoverTree.CoverTreePriorityDBIDSearcherPriority query class.classSimplifiedCoverTree.CoverTreePriorityObjectSearcherPriority query class.classSimplifiedCoverTree.CoverTreePrioritySearcher<Q>Priority query class.classSimplifiedCoverTree.CoverTreeRangeDBIDSearcherRange query class.classSimplifiedCoverTree.CoverTreeRangeObjectSearcherRange 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 classMTreeRangeByDBID<O>Instance of a range query for a particular spatial index.classMTreeRangeByObject<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 classGNAT.GNATPriorityDBIDSearcherRange search for the VP-tree.classGNAT.GNATPriorityObjectSearcherRange search for the VP-tree.classGNAT.GNATPrioritySearcher<T>priority search query for mvp-treeclassGNAT.GNATRangeDBIDSearcherRange search for the VP-tree.classGNAT.GNATRangeObjectSearcherRange search for the VP-tree.classVPTree.VPTreePriorityDBIDSearcherRange search for the VP-tree.classVPTree.VPTreePriorityObjectSearcherRange search for the VP-tree.classVPTree.VPTreePrioritySearcher<Q>Priority search for the VP-Tree.classVPTree.VPTreeRangeDBIDSearcherRange search for the VP-tree.classVPTree.VPTreeRangeObjectSearcherRange 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 classMemoryKDTree.KDTreePrioritySearcherPriority search for the k-d-tree.classMemoryKDTree.KDTreeRangeSearcherRange query for the k-d-tree.classMinimalisticMemoryKDTree.KDTreePrioritySearcherPriority search for the k-d-tree.classMinimalisticMemoryKDTree.KDTreeRangeSearcherRange query for the k-d-tree.classSmallMemoryKDTree.KDTreePrioritySearcherPriority search for the k-d-tree.classSmallMemoryKDTree.KDTreeRangeSearcherRange 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 classEuclideanRStarTreeDistancePrioritySearcher<O extends SpatialComparable>Instance of priority search for a particular spatial index.classEuclideanRStarTreeRangeQuery<O extends NumberVector>Instance of a range query for a particular spatial index.classRStarTreeDistancePrioritySearcher<O extends SpatialComparable>Instance of priority search for a particular spatial index.classRStarTreeRangeSearcher<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 classPartialVAFile.PartialVAFileRangeQueryRange query for this index.classVAFile.VAFileRangeQueryRange 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 doubleALIDEstimator. estimate(RangeSearcher<DBIDRef> rnq, DistanceQuery<?> distq, DBIDRef cur, double range)default doubleDistanceBasedIntrinsicDimensionalityEstimator. estimate(RangeSearcher<DBIDRef> rnq, DistanceQuery<? extends java.lang.Object> distq, DBIDRef cur, double range)doubleIntrinsicDimensionalityEstimator. estimate(RangeSearcher<DBIDRef> rnq, DistanceQuery<? extends O> distq, DBIDRef cur, double range)Estimate from a distance list.doubleLPCAEstimator. estimate(RangeSearcher<DBIDRef> rnq, DistanceQuery<? extends NumberVector> distq, DBIDRef cur, double range)doubleTightLIDEstimator. 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 voidDWOF. 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 voidLOCI. precomputeInterestingRadii(DBIDs ids, RangeSearcher<DBIDRef> rangeQuery, WritableDataStore<LOCI.DoubleIntArrayList> interestingDistances)Preprocessing step: determine the radii of interest for each point.
-