Package elki.application.experiments
Class VisualizeGeodesicDistances.Par
- java.lang.Object
-
- elki.application.AbstractApplication.Par
-
- elki.application.experiments.VisualizeGeodesicDistances.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- VisualizeGeodesicDistances
public static class VisualizeGeodesicDistances.Par extends AbstractApplication.Par
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected VisualizeGeodesicDistances.Mode
mode
Visualization mode.static OptionID
MODE_ID
Visualization mode.protected EarthModel
model
Earth model to use.protected java.nio.file.Path
out
Holds the file to print results to.protected int
resolution
Horizontal resolution.static OptionID
RESOLUTION_ID
Image resolution.protected int
steps
Number of steps in the color map.static OptionID
STEPS_ID
Number of steps in the distance map.-
Fields inherited from class elki.application.AbstractApplication.Par
DATABASE_ID, DEBUG_ID, DESCRIPTION_ID, HELP_ID, HELP_LONG_ID, INPUT_ID, OUTPUT_ID, VERBOSE_ID
-
-
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.VisualizeGeodesicDistances
make()
Make an instance after successful configuration.-
Methods inherited from class elki.application.AbstractApplication.Par
applyLoggingLevels, getParameterInputFile, getParameterInputFile, getParameterOutputFile, getParameterOutputFile, parseDebugParameter, parseVerbose
-
-
-
-
Field Detail
-
STEPS_ID
public static final OptionID STEPS_ID
Number of steps in the distance map.
-
RESOLUTION_ID
public static final OptionID RESOLUTION_ID
Image resolution.
-
MODE_ID
public static final OptionID MODE_ID
Visualization mode.
-
out
protected java.nio.file.Path out
Holds the file to print results to.
-
steps
protected int steps
Number of steps in the color map.
-
resolution
protected int resolution
Horizontal resolution.
-
mode
protected VisualizeGeodesicDistances.Mode mode
Visualization mode.
-
model
protected EarthModel model
Earth model to use.
-
-
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.
- Parameters:
config
- Parameterization
-
make
public VisualizeGeodesicDistances 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
- Specified by:
make
in classAbstractApplication.Par
- Returns:
- a new instance
-
-