Class TangentExtraction
Extracts tangent values of the standard X, Y Features
Default Pipeline Input: X, Y Features
Default Pipeline Output: (List{double}) Tangent
Inherited Members
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class TangentExtraction : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Properties
| Improve this Doc View SourceOutputTangent
Gets or sets the output feature representing the tangent angles of an online signature
Declaration
public FeatureDescriptor<List<double>> OutputTangent { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
X
Gets or sets the input feature representing the X coordinates of an online signature
Declaration
public FeatureDescriptor<List<double>> X { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
Y
Gets or sets the input feature representing the Y coordinates of an online signature
Declaration
public FeatureDescriptor<List<double>> Y { 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. |