Package elki.clustering.optics
Class OPTICSXi.Par
- java.lang.Object
-
- elki.clustering.optics.OPTICSXi.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- OPTICSXi
public static class OPTICSXi.Par extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected booleankeepsteepstatic OptionIDKEEPSTEEP_IDParameter to keep the steep areasprotected booleannocorrectstatic OptionIDNOCORRECT_IDParameter to disable the correction function.protected OPTICSTypeAlgorithmopticsprotected doublexistatic OptionIDXI_IDParameter to specify the steepness threshold.static OptionIDXIALG_IDParameter to specify the actual OPTICS algorithm to use.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(Parameterization config)Configure the class.OPTICSXimake()Make an instance after successful configuration.
-
-
-
Field Detail
-
XIALG_ID
public static final OptionID XIALG_ID
Parameter to specify the actual OPTICS algorithm to use.
-
XI_ID
public static final OptionID XI_ID
Parameter to specify the steepness threshold.
-
NOCORRECT_ID
public static final OptionID NOCORRECT_ID
Parameter to disable the correction function.
-
KEEPSTEEP_ID
public static final OptionID KEEPSTEEP_ID
Parameter to keep the steep areas
-
optics
protected OPTICSTypeAlgorithm optics
-
xi
protected double xi
-
nocorrect
protected boolean nocorrect
-
keepsteep
protected boolean keepsteep
-
-
Method Detail
-
configure
public void configure(Parameterization config)
Description copied from interface:ParameterizerConfigure the class.Note: the status is collected by the parameterization object, so that multiple errors may arise and be reported in one run.
- Specified by:
configurein interfaceParameterizer- Parameters:
config- Parameterization
-
make
public OPTICSXi make()
Description copied from interface:ParameterizerMake an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Objectas return type.- Specified by:
makein interfaceParameterizer- Returns:
- a new instance
-
-