Class ResampleSamplesCountBased
Resamples an online signature to a specific sample count using the specified IInterpolation algorithm
Inherited Members
Namespace: SigStat.Common.PipelineItems.Transforms.Preprocessing
Assembly: SigStat.Common.dll
Syntax
public class ResampleSamplesCountBased : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Properties
| Improve this Doc View SourceInputFeatures
Gets or sets the input features.
Declaration
public List<FeatureDescriptor<List<double>>> InputFeatures { get; set; }
Property Value
Type | Description |
---|---|
List<FeatureDescriptor<List<System.Double>>> |
InterpolationType
Gets or sets the type of the interpolation. IInterpolation
Declaration
public Type InterpolationType { get; set; }
Property Value
Type | Description |
---|---|
Type |
NumOfSamples
Gets or sets the number of samples.
Declaration
public int NumOfSamples { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
OriginalTFeature
Gets or sets the input timestamp feature.
Declaration
public FeatureDescriptor<List<double>> OriginalTFeature { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
OutputFeatures
Gets or sets the resampled features.
Declaration
public List<FeatureDescriptor<List<double>>> OutputFeatures { get; set; }
Property Value
Type | Description |
---|---|
List<FeatureDescriptor<List<System.Double>>> |
ResampledTFeature
Gets or sets the resampled timestamp feature.
Declaration
public FeatureDescriptor<List<double>> ResampledTFeature { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
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. |