Class SampleRate
Performs rotation normalization on the online signature
Inherited Members
Namespace: SigStat.Common.PipelineItems.Transforms.Preprocessing
Assembly: SigStat.Common.dll
Syntax
public class SampleRate : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Properties
| Improve this Doc View SourceInputP
Gets or sets the input feature representing the timestamps of an online signature
Declaration
public FeatureDescriptor<List<double>> InputP { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
InputX
Gets or sets the input feature representing the X coordinates of an online signature
Declaration
public FeatureDescriptor<List<double>> InputX { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
InputY
Gets or sets the input feature representing the Y coordinates of an online signature
Declaration
public FeatureDescriptor<List<double>> InputY { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
OutputP
Gets or sets the input feature representing the Pressure values of an online signature
Declaration
public FeatureDescriptor<List<double>> OutputP { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
OutputX
Gets or sets the output feature representing the X coordinates of an online signature
Declaration
public FeatureDescriptor<List<double>> OutputX { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
OutputY
Gets or sets the input feature representing the Y coordinates of an online signature
Declaration
public FeatureDescriptor<List<double>> OutputY { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
samplerate
Gets or sets the input feature representing the X coordinates of an online signature
Declaration
public int samplerate { 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. |