Package elki.clustering.optics
Interface OPTICSTypeAlgorithm
-
- All Superinterfaces:
Algorithm
- All Known Subinterfaces:
GeneralizedOPTICS
- All Known Implementing Classes:
AbstractOPTICS
,DeLiClu
,FastOPTICS
,HiCO
,HiSC
,OPTICSHeap
,OPTICSList
public interface OPTICSTypeAlgorithm extends Algorithm
Interface for OPTICS type algorithms, that can be analyzed by OPTICS Xi etc.- Since:
- 0.7.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface elki.Algorithm
Algorithm.Utils
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ClusterOrder
autorun(Database database)
Try to auto-run the algorithm on a database by calling a method calledrun
, with an optionalDatabase
first, and with data relations as specified byAlgorithm.getInputTypeRestriction()
.int
getMinPts()
Get the minpts value used.-
Methods inherited from interface elki.Algorithm
getInputTypeRestriction
-
-
-
-
Method Detail
-
autorun
default ClusterOrder autorun(Database database)
Description copied from interface:Algorithm
Try to auto-run the algorithm on a database by calling a method calledrun
, with an optionalDatabase
first, and with data relations as specified byAlgorithm.getInputTypeRestriction()
.
-
getMinPts
int getMinPts()
Get the minpts value used. Needed for OPTICS Xi.- Returns:
- minpts value
-
-