Class CentroidExtraction
Extracts the Centroid (aka. Center Of Gravity) of the input features.
Default Pipeline Output: (List{double}) Centroid.
Inherited Members
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class CentroidExtraction : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Properties
| Improve this Doc View SourceInputs
List of features to process
Declaration
public List<FeatureDescriptor<List<double>>> Inputs { get; set; }
Property Value
Type | Description |
---|---|
List<FeatureDescriptor<List<System.Double>>> |
OutputCentroid
List of centroid values
Declaration
public FeatureDescriptor<List<double>> OutputCentroid { 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. |