Package elki.clustering.optics
Class OPTICSHeap<O>
- java.lang.Object
-
- elki.clustering.optics.AbstractOPTICS<O>
-
- elki.clustering.optics.OPTICSHeap<O>
-
- Type Parameters:
O
- the type of objects handled by the algorithm
- All Implemented Interfaces:
Algorithm
,OPTICSTypeAlgorithm
@Title("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") public class OPTICSHeap<O> extends AbstractOPTICS<O>
The OPTICS algorithm for density-based hierarchical clustering.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)- Since:
- 0.1
- Author:
- Elke Achtert, Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private class
OPTICSHeap.Instance
Instance for processing a single data set.static class
OPTICSHeap.Par<O>
Parameterization class.-
Nested classes/interfaces inherited from interface elki.Algorithm
Algorithm.Utils
-
-
Constructor Summary
Constructors Constructor Description OPTICSHeap(Distance<? super O> distance, double epsilon, int minpts)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClusterOrder
run(Relation<O> relation)
Run OPTICS on the database.-
Methods inherited from class elki.clustering.optics.AbstractOPTICS
getInputTypeRestriction, getMinPts
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface elki.clustering.optics.OPTICSTypeAlgorithm
autorun
-
-
-
-
Field Detail
-
LOG
private static final Logging LOG
The logger for this class.
-
-
Method Detail
-
run
public ClusterOrder run(Relation<O> relation)
Description copied from class:AbstractOPTICS
Run OPTICS on the database.- Specified by:
run
in classAbstractOPTICS<O>
- Parameters:
relation
- Relation- Returns:
- Result
-
-