Show / Hide Table of Contents

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.

Default Pipeline Input: X, Y

Default Pipeline Output: X, Y

Inheritance
System.Object
PipelineBase
SequentialTransformPipeline
Translate
Implements
ILoggerObject
IProgress
IEnumerable
ITransformation
IPipelineIO
Inherited Members
SequentialTransformPipeline.Items
SequentialTransformPipeline.PipelineInputs
SequentialTransformPipeline.PipelineOutputs
SequentialTransformPipeline.GetEnumerator()
SequentialTransformPipeline.Add(ITransformation)
SequentialTransformPipeline.Transform(Signature)
PipelineBase.Logger
PipelineBase.Progress
PipelineBase.ProgressChanged
PipelineBase.OnProgressChanged()
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class Translate : SequentialTransformPipeline, ILoggerObject, IProgress, IEnumerable, ITransformation, IPipelineIO

Constructors

| Improve this Doc View Source

Translate(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.

| Improve this Doc View Source

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 Source

InputX

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>>
| Improve this Doc View Source

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>>
| Improve this Doc View Source

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>>
| Improve this Doc View Source

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

ILoggerObject
IProgress
IEnumerable
ITransformation
IPipelineIO
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX