O
- the type of DatabaseObjects handled by the algorithm@Title(value="OPTICS: Density-Based Hierarchical Clustering") @Description(value="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.") @Reference(authors="M. Ankerst, M. Breunig, H.-P. Kriegel, and J. Sander", title="OPTICS: Ordering Points to Identify the Clustering Structure", booktitle="Proc. ACM SIGMOD Int. Conf. on Management of Data (SIGMOD \'99)", url="http://dx.doi.org/10.1145/304181.304187") @Alias(value={"OPTICS","de.lmu.ifi.dbs.elki.algorithm.clustering.OPTICS","de.lmu.ifi.dbs.elki.algorithm.clustering.optics.OPTICS"}) public class OPTICSHeap<O> extends AbstractOPTICS<O>
M. Ankerst, M. Breunig, H.-P. Kriegel, and J. Sander:
OPTICS: Ordering Points to Identify the Clustering Structure.
In: 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, minpts
DISTANCE_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, getMinPts
getDistanceFunction
makeParameterDistanceFunction, run
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
run
private 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)
AbstractOPTICS
run
in class AbstractOPTICS<O>
db
- Databaserelation
- Relationprotected Logging getLogger()
AbstractAlgorithm
getLogger
in class AbstractAlgorithm<ClusterOrder>
Copyright © 2015 ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München. License information.