O - the type of objects handled by the algorithm@Title(value="OPTICS: Density-Based Hierarchical Clustering (implementation using a heap)") @Reference(authors="Mihael Ankerst, Markus M. Breunig, Hans-Peter Kriegel, J\u00f6rg Sander", title="OPTICS: Ordering Points to Identify the Clustering Structure", booktitle="Proc. ACM SIGMOD Int. Conf. on Management of Data (SIGMOD \'99)", url="https://doi.org/10.1145/304181.304187", bibkey="DBLP:conf/sigmod/AnkerstBKS99") @Alias(value="de.lmu.ifi.dbs.elki.algorithm.clustering.OPTICS") public class OPTICSHeap<O> extends AbstractOPTICS<O>
Algorithm to find density-connected sets in a database based on the parameters 'minPts' and 'epsilon' (specifying a volume). These two parameters determine a density threshold for clustering.
This implementation uses a heap.
Reference:
Mihael Ankerst, Markus M. Breunig, Hans-Peter Kriegel, Jörg Sander
OPTICS: Ordering Points to Identify the Clustering Structure
Proc. ACM SIGMOD Int. Conf. on Management of Data (SIGMOD '99)
| Modifier and Type | Class and Description |
|---|---|
private class |
OPTICSHeap.Instance
Instance for processing a single data set.
|
static class |
OPTICSHeap.Parameterizer<O>
Parameterization class.
|
| Modifier and Type | Field and Description |
|---|---|
private static Logging |
LOG
The logger for this class.
|
epsilon, minptsALGORITHM_IDDISTANCE_FUNCTION_ID| Constructor and Description |
|---|
OPTICSHeap(DistanceFunction<? super O> distanceFunction,
double epsilon,
int minpts)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
protected Logging |
getLogger()
Get the (STATIC) logger for this class.
|
ClusterOrder |
run(Database db,
Relation<O> relation)
Run OPTICS on the database.
|
getInputTypeRestriction, getMinPtsgetDistanceFunctionrunclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitrunprivate static final Logging LOG
public OPTICSHeap(DistanceFunction<? super O> distanceFunction, double epsilon, int minpts)
distanceFunction - Distance functionepsilon - Epsilon valueminpts - Minpts valuepublic ClusterOrder run(Database db, Relation<O> relation)
AbstractOPTICSrun in class AbstractOPTICS<O>db - Databaserelation - Relationprotected Logging getLogger()
AbstractAlgorithmgetLogger in class AbstractAlgorithm<ClusterOrder>Copyright © 2019 ELKI Development Team. License information.