Class TranslatePreproc
This transformations can be used to translate the coordinates of an online signature
Inherited Members
Namespace: SigStat.Common.PipelineItems.Transforms.Preprocessing
Assembly: SigStat.Common.dll
Syntax
public class TranslatePreproc : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Constructors
| Improve this Doc View SourceTranslatePreproc()
Initializes a new instance of the TranslatePreproc class.
Declaration
public TranslatePreproc()
TranslatePreproc(OriginType)
Initializes a new instance of the TranslatePreproc class.
Declaration
public TranslatePreproc(OriginType goalOrigin)
Parameters
Type | Name | Description |
---|---|---|
OriginType | goalOrigin | The goal origin. |
Properties
| Improve this Doc View SourceGoalOrigin
Goal origin of the translation
Declaration
public OriginType GoalOrigin { get; set; }
Property Value
Type | Description |
---|---|
OriginType |
InputFeature
Input FeatureDescriptor (e.g. X)
Declaration
public FeatureDescriptor<List<double>> InputFeature { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
NewOrigin
New origin after the translation
Declaration
public double NewOrigin { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
OutputFeature
Output FeatureDescriptor (e.g. X)
Declaration
public FeatureDescriptor<List<double>> OutputFeature { 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. |