Class Translate
Sequential pipeline to translate X and Y Features by specified vector (constant or feature). The following Transforms are called: AddConst twice, or AddVector.
Inherited Members
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class Translate : SequentialTransformPipeline, ILoggerObject, IProgress, IEnumerable, ITransformation, IPipelineIO
Constructors
| Improve this Doc View SourceTranslate(FeatureDescriptor<List<Double>>)
Declaration
public Translate(FeatureDescriptor<List<double>> vectorFeature)
Parameters
Type | Name | Description |
---|---|---|
FeatureDescriptor<List<System.Double>> | vectorFeature | Feature to translate X and Y by. |
Translate(Double, Double)
Declaration
public Translate(double xAdd, double yAdd)
Parameters
Type | Name | Description |
---|---|---|
System.Double | xAdd | Value to translate X by. |
System.Double | yAdd | Value to translate Y by. |
Properties
| Improve this Doc View SourceInputX
The feature representing the horizontal coordinates of an online signature
Declaration
public FeatureDescriptor<List<double>> InputX { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
InputY
The feature representing the vertical coordinates of an online signature
Declaration
public FeatureDescriptor<List<double>> InputY { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
OutputX
Target feature for storing the transformed horizontal coordinates
Declaration
public FeatureDescriptor<List<double>> OutputX { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
OutputY
Target feature for storing the transformed vertical coordinates
Declaration
public FeatureDescriptor<List<double>> OutputY { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
Implements
IEnumerable