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 classAbstractDatabaseConnectionBaselineCorrection<T extends DataContainer>Ancestor for baseline correction schemes that require database access.classAbstractLinearRegressionBased<T extends DataContainer>Abstract ancestor for linear regression based baseline correction schemes.classAbstractLOWESSBased<T extends DataContainer>Ancestor for LOWESS-based baseline correction schemes.classAbstractSavitzkyGolayBased<T extends DataContainer>Ancestor for SavitzkyGolay-based baseline correction schemes.classPassThroughDummy scheme, performs no basline correction at all.classSlidingWindow<T extends DataContainer>Applies a baseline correction scheme on partitions of the data with a sliding window approach.classTimeseriesLOWESSBasedA baseline correction scheme that uses LOWESS smoothing to determine the baseline.
For more information see:
WikiPedia.classTimeseriesSavitzkyGolayBasedA 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 AbstractBaselineCorrectionAbstractBaselineCorrection.BaselineCorrectionJob. m_BaselineCorrectionthe baseline correction scheme to use.protected AbstractBaselineCorrectionSlidingWindow. m_BaselineCorrectionthe actual baseline correction scheme to apply.Methods in adams.data.baseline that return AbstractBaselineCorrection Modifier and Type Method Description static AbstractBaselineCorrectionAbstractBaselineCorrection. forCommandLine(String cmdline)Instantiates the baseline correction scheme from the given commandline (i.e., classname and optional options).AbstractBaselineCorrectionSlidingWindow. getBaselineCorrection()Returns the current baseline correction algorithm.AbstractBaselineCorrectionAbstractBaselineCorrection.BaselineCorrectionJob. getBaselineCorretion()Returns the baseline correction scheme being used.AbstractBaselineCorrectionAbstractBaselineCorrection. shallowCopy()Returns a shallow copy of itself, i.e., based on the commandline options.AbstractBaselineCorrectionAbstractBaselineCorrection. 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 voidSlidingWindow. 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 AbstractBaselineCorrectionBaselineCorrection. m_BaselineCorrectionthe baseline correction algorithm.Methods in adams.data.filter that return AbstractBaselineCorrection Modifier and Type Method Description AbstractBaselineCorrectionBaselineCorrection. getBaselineCorrection()Returns the current baseline correction algorithm.Methods in adams.data.filter with parameters of type AbstractBaselineCorrection Modifier and Type Method Description voidBaselineCorrection. 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 AbstractBaselineCorrectionBaselineAdjustedForecasterGenerator. m_Correctionthe baseline correction scheme.Methods in adams.flow.source.wekaforecastersetup that return AbstractBaselineCorrection Modifier and Type Method Description AbstractBaselineCorrectionBaselineAdjustedForecasterGenerator. getCorrection()Returns the baseline correction scheme in use.Methods in adams.flow.source.wekaforecastersetup with parameters of type AbstractBaselineCorrection Modifier and Type Method Description voidBaselineAdjustedForecasterGenerator. 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 AbstractBaselineCorrectionBaselineAdjustedForecaster. m_Correctionthe baseline correction scheme to use.Methods in weka.classifiers.timeseries that return AbstractBaselineCorrection Modifier and Type Method Description AbstractBaselineCorrectionBaselineAdjustedForecaster. getCorrection()Returns the baseline correction scheme in use.Methods in weka.classifiers.timeseries with parameters of type AbstractBaselineCorrection Modifier and Type Method Description voidBaselineAdjustedForecaster. setCorrection(AbstractBaselineCorrection value)Sets the baseline correction scheme to use.
-