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 boolean
keepsteep
static OptionID
KEEPSTEEP_ID
Parameter to keep the steep areasprotected boolean
nocorrect
static OptionID
NOCORRECT_ID
Parameter to disable the correction function.protected OPTICSTypeAlgorithm
optics
protected double
xi
static OptionID
XI_ID
Parameter to specify the steepness threshold.static OptionID
XIALG_ID
Parameter 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 void
configure(Parameterization config)
Configure the class.OPTICSXi
make()
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:Parameterizer
Configure 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:
configure
in interfaceParameterizer
- Parameters:
config
- Parameterization
-
make
public OPTICSXi make()
Description copied from interface:Parameterizer
Make an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Object
as return type.- Specified by:
make
in interfaceParameterizer
- Returns:
- a new instance
-
-