Class FilterPoints
Removes samples based on a criteria from online signature time series
Inherited Members
Namespace: SigStat.Common.PipelineItems.Transforms.Preprocessing
Assembly: SigStat.Common.dll
Syntax
public class FilterPoints : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Properties
| Improve this Doc View SourceInputFeatures
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>>> |
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>> |
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>> |
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>>> |
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 SourceTransform(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. |