Uses of Interface
adams.ml.preprocessing.StreamFilter
-
Packages that use StreamFilter Package Description adams.flow.transformer adams.ml.preprocessing adams.ml.preprocessing.unsupervised -
-
Uses of StreamFilter in adams.flow.transformer
Fields in adams.flow.transformer declared as StreamFilter Modifier and Type Field Description protected StreamFilter
DatasetRowFilter. m_ActualFilter
the actual filter to use.protected StreamFilter
DatasetRowFilter. m_Filter
the batch filter to use.Methods in adams.flow.transformer that return StreamFilter Modifier and Type Method Description StreamFilter
DatasetRowFilter. getFilter()
Returns the filter in use.Methods in adams.flow.transformer with parameters of type StreamFilter Modifier and Type Method Description void
DatasetRowFilter. setFilter(StreamFilter value)
Sets the filter to use. -
Uses of StreamFilter in adams.ml.preprocessing
Classes in adams.ml.preprocessing that implement StreamFilter Modifier and Type Class Description class
AbstractColumnSubsetStreamFilter
Ancestor for stream filters with column subset handling.class
AbstractStreamFilter
Ancestor for stream filters. -
Uses of StreamFilter in adams.ml.preprocessing.unsupervised
Classes in adams.ml.preprocessing.unsupervised that implement StreamFilter Modifier and Type Class Description class
MultiStream
Applies the specified filters sequentially.class
PassThrough
Dummy, just passes through the data.class
SavitzkyGolay
A filter that applies Savitzky-Golay smoothing.
For more information see:
A.Fields in adams.ml.preprocessing.unsupervised declared as StreamFilter Modifier and Type Field Description protected StreamFilter[]
MultiBatch. m_Filters
the filters to apply.protected StreamFilter[]
MultiStream. m_Filters
the filters to apply.Methods in adams.ml.preprocessing.unsupervised that return StreamFilter Modifier and Type Method Description StreamFilter[]
MultiBatch. getFilters()
Returns the filters to apply.StreamFilter[]
MultiStream. getFilters()
Returns the filters to apply.Methods in adams.ml.preprocessing.unsupervised with parameters of type StreamFilter Modifier and Type Method Description void
MultiBatch. setFilters(StreamFilter[] value)
Sets the filters to apply.void
MultiStream. setFilters(StreamFilter[] value)
Sets the filters to apply.
-