Package elki.clustering.optics
Class AbstractOPTICS<O>
- java.lang.Object
-
- elki.clustering.optics.AbstractOPTICS<O>
-
- Type Parameters:
O
- the type of DatabaseObjects handled by the algorithm
- All Implemented Interfaces:
Algorithm
,OPTICSTypeAlgorithm
- Direct Known Subclasses:
OPTICSHeap
,OPTICSList
@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("OPTICS") public abstract class AbstractOPTICS<O> extends java.lang.Object implements OPTICSTypeAlgorithm
The OPTICS algorithm for density-based hierarchical clustering.This is the abstract base class, providing the shared parameters only.
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.7.0
- Author:
- Elke Achtert, Erich Schubert
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface elki.Algorithm
Algorithm.Utils
-
-
Constructor Summary
Constructors Constructor Description AbstractOPTICS(Distance<? super O> distance, double epsilon, int minpts)
Constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description TypeInformation[]
getInputTypeRestriction()
Get the input type restriction used for negotiating the data query.int
getMinPts()
Get the minpts value used.abstract ClusterOrder
run(Relation<O> relation)
Run OPTICS on the database.-
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
-
-
-
-
Method Detail
-
getInputTypeRestriction
public TypeInformation[] getInputTypeRestriction()
Description copied from interface:Algorithm
Get the input type restriction used for negotiating the data query.- Specified by:
getInputTypeRestriction
in interfaceAlgorithm
- Returns:
- Type restriction
-
run
public abstract ClusterOrder run(Relation<O> relation)
Run OPTICS on the database.- Parameters:
relation
- Relation- Returns:
- Result
-
getMinPts
public int getMinPts()
Description copied from interface:OPTICSTypeAlgorithm
Get the minpts value used. Needed for OPTICS Xi.- Specified by:
getMinPts
in interfaceOPTICSTypeAlgorithm
- Returns:
- minpts value
-
-