Show / Hide Table of Contents

Class FilterPoints

Removes samples based on a criteria from online signature time series

Inheritance
System.Object
PipelineBase
FilterPoints
Implements
ILoggerObject
IProgress
ITransformation
IPipelineIO
Inherited Members
PipelineBase.PipelineInputs
PipelineBase.PipelineOutputs
PipelineBase.Logger
PipelineBase.Progress
PipelineBase.ProgressChanged
PipelineBase.OnProgressChanged()
Namespace: SigStat.Common.PipelineItems.Transforms.Preprocessing
Assembly: SigStat.Common.dll
Syntax
public class FilterPoints : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO

Properties

| Improve this Doc View Source

InputFeatures

FeatureDescriptor list of all features to resample

Declaration
public List<FeatureDescriptor<List<double>>> InputFeatures { get; set; }
Property Value
Type Description
List<FeatureDescriptor<List<System.Double>>>
| Improve this Doc View Source

KeyFeatureInput

FeatureDescriptor that controls the removal of samples (e.g. Pressure)

Declaration
public FeatureDescriptor<List<double>> KeyFeatureInput { get; set; }
Property Value
Type Description
FeatureDescriptor<List<System.Double>>
| Improve this Doc View Source

KeyFeatureOutput

Resampled output for FeatureDescriptor that controls the removal of samples (e.g. Pressure)

Declaration
public FeatureDescriptor<List<double>> KeyFeatureOutput { get; set; }
Property Value
Type Description
FeatureDescriptor<List<System.Double>>
| Improve this Doc View Source

OutputFeatures

Resampled output for all input features

Declaration
public List<FeatureDescriptor<List<double>>> OutputFeatures { get; set; }
Property Value
Type Description
List<FeatureDescriptor<List<System.Double>>>
| Improve this Doc View Source

Percentile

The lowes percentile of the KeyFeatureInput will be removed during filtering

Declaration
public int Percentile { get; set; }
Property Value
Type Description
System.Int32

Methods

| Improve this Doc View Source

Transform(Signature)

Executes the transform on the signature parameter. This function gets called by the pipeline.

Declaration
public void Transform(Signature signature)
Parameters
Type Name Description
Signature signature

The Signature with a set of features to be transformed.

Implements

ILoggerObject
IProgress
ITransformation
IPipelineIO

See Also

PipelineBase
ITransformation
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX