Uses of Class
adams.data.baseline.AbstractBaselineCorrection
-
Packages that use AbstractBaselineCorrection Package Description adams.data.baseline adams.data.filter adams.flow.source.wekaforecastersetup weka.classifiers.timeseries -
-
Uses of AbstractBaselineCorrection in adams.data.baseline
Subclasses of AbstractBaselineCorrection in adams.data.baseline Modifier and Type Class Description class
AbstractDatabaseConnectionBaselineCorrection<T extends DataContainer>
Ancestor for baseline correction schemes that require database access.class
AbstractLinearRegressionBased<T extends DataContainer>
Abstract ancestor for linear regression based baseline correction schemes.class
AbstractLOWESSBased<T extends DataContainer>
Ancestor for LOWESS-based baseline correction schemes.class
AbstractSavitzkyGolayBased<T extends DataContainer>
Ancestor for SavitzkyGolay-based baseline correction schemes.class
PassThrough
Dummy scheme, performs no basline correction at all.class
SlidingWindow<T extends DataContainer>
Applies a baseline correction scheme on partitions of the data with a sliding window approach.class
TimeseriesLOWESSBased
A baseline correction scheme that uses LOWESS smoothing to determine the baseline.
For more information see:
WikiPedia.class
TimeseriesSavitzkyGolayBased
A baseline correction scheme that uses SavitzkyGolay smoothing to determine the baseline.
For more information see:
A.Fields in adams.data.baseline declared as AbstractBaselineCorrection Modifier and Type Field Description protected AbstractBaselineCorrection
AbstractBaselineCorrection.BaselineCorrectionJob. m_BaselineCorrection
the baseline correction scheme to use.protected AbstractBaselineCorrection
SlidingWindow. m_BaselineCorrection
the actual baseline correction scheme to apply.Methods in adams.data.baseline that return AbstractBaselineCorrection Modifier and Type Method Description static AbstractBaselineCorrection
AbstractBaselineCorrection. forCommandLine(String cmdline)
Instantiates the baseline correction scheme from the given commandline (i.e., classname and optional options).AbstractBaselineCorrection
SlidingWindow. getBaselineCorrection()
Returns the current baseline correction algorithm.AbstractBaselineCorrection
AbstractBaselineCorrection.BaselineCorrectionJob. getBaselineCorretion()
Returns the baseline correction scheme being used.AbstractBaselineCorrection
AbstractBaselineCorrection. shallowCopy()
Returns a shallow copy of itself, i.e., based on the commandline options.AbstractBaselineCorrection
AbstractBaselineCorrection. shallowCopy(boolean expand)
Returns a shallow copy of itself, i.e., based on the commandline options.Methods in adams.data.baseline with parameters of type AbstractBaselineCorrection Modifier and Type Method Description void
SlidingWindow. setBaselineCorrection(AbstractBaselineCorrection value)
Sets the baseline correction algorithm.Constructors in adams.data.baseline with parameters of type AbstractBaselineCorrection Constructor Description BaselineCorrectionJob(AbstractBaselineCorrection baseline, T data)
Initializes the job. -
Uses of AbstractBaselineCorrection in adams.data.filter
Fields in adams.data.filter declared as AbstractBaselineCorrection Modifier and Type Field Description protected AbstractBaselineCorrection
BaselineCorrection. m_BaselineCorrection
the baseline correction algorithm.Methods in adams.data.filter that return AbstractBaselineCorrection Modifier and Type Method Description AbstractBaselineCorrection
BaselineCorrection. getBaselineCorrection()
Returns the current baseline correction algorithm.Methods in adams.data.filter with parameters of type AbstractBaselineCorrection Modifier and Type Method Description void
BaselineCorrection. setBaselineCorrection(AbstractBaselineCorrection value)
Sets the baseline correction algorithm. -
Uses of AbstractBaselineCorrection in adams.flow.source.wekaforecastersetup
Fields in adams.flow.source.wekaforecastersetup declared as AbstractBaselineCorrection Modifier and Type Field Description protected AbstractBaselineCorrection
BaselineAdjustedForecasterGenerator. m_Correction
the baseline correction scheme.Methods in adams.flow.source.wekaforecastersetup that return AbstractBaselineCorrection Modifier and Type Method Description AbstractBaselineCorrection
BaselineAdjustedForecasterGenerator. getCorrection()
Returns the baseline correction scheme in use.Methods in adams.flow.source.wekaforecastersetup with parameters of type AbstractBaselineCorrection Modifier and Type Method Description void
BaselineAdjustedForecasterGenerator. setCorrection(AbstractBaselineCorrection value)
Sets the baseline correction scheme to use. -
Uses of AbstractBaselineCorrection in weka.classifiers.timeseries
Fields in weka.classifiers.timeseries declared as AbstractBaselineCorrection Modifier and Type Field Description protected AbstractBaselineCorrection
BaselineAdjustedForecaster. m_Correction
the baseline correction scheme to use.Methods in weka.classifiers.timeseries that return AbstractBaselineCorrection Modifier and Type Method Description AbstractBaselineCorrection
BaselineAdjustedForecaster. getCorrection()
Returns the baseline correction scheme in use.Methods in weka.classifiers.timeseries with parameters of type AbstractBaselineCorrection Modifier and Type Method Description void
BaselineAdjustedForecaster. setCorrection(AbstractBaselineCorrection value)
Sets the baseline correction scheme to use.
-