Class CentroidTranslate
Sequential pipeline to translate X and Y Features to Centroid. The following Transforms are called: CentroidExtraction, Multiply(-1), Translate
Default Pipeline Output: (List{double}) Centroid
Inherited Members
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class CentroidTranslate : SequentialTransformPipeline, ILoggerObject, IProgress, IEnumerable, ITransformation, IPipelineIO
Remarks
This is a special case of Translate
Constructors
| Improve this Doc View SourceCentroidTranslate()
Initializes a new instance of the CentroidTranslate class.
Declaration
public CentroidTranslate()
Properties
| Improve this Doc View SourceInputX
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>> |
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 output feature representing the X coordinates of an online signature
Declaration
public FeatureDescriptor<List<double>> OutputY { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
Implements
IEnumerable