Show / Hide Table of Contents

Class AddVector

Adds a vector feature's elements to other features.

Default Pipeline Output: Pipeline Input

Inheritance
System.Object
PipelineBase
AddVector
Implements
ILoggerObject
IProgress
ITransformation
IPipelineIO
Inherited Members
PipelineBase.PipelineInputs
PipelineBase.PipelineOutputs
PipelineBase.Logger
PipelineBase.Progress
PipelineBase.ProgressChanged
PipelineBase.OnProgressChanged()
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class AddVector : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Examples

Inputs are: Centroid.xy, X, Y . Adds Centroid.x to each element of X. Adds Centroid.y to each element of Y.

Constructors

| Improve this Doc View Source

AddVector(FeatureDescriptor<List<Double>>)

Initializes a new instance of the AddVector class with a vector feature. Don't forget to add as many Inputs as the vector's dimension.

Declaration
public AddVector(FeatureDescriptor<List<double>> vectorFeature)
Parameters
Type Name Description
FeatureDescriptor<List<System.Double>> vectorFeature

A collection-type feature where each element represents a dimension of the vector.

Properties

| Improve this Doc View Source

Inputs

Inputs

Declaration
public List<FeatureDescriptor<List<double>>> Inputs { get; set; }
Property Value
Type Description
List<FeatureDescriptor<List<System.Double>>>
| Improve this Doc View Source

Outputs

Outputs

Declaration
public List<FeatureDescriptor<List<double>>> Outputs { get; set; }
Property Value
Type Description
List<FeatureDescriptor<List<System.Double>>>

Methods

| Improve this Doc View Source

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

Implements

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