Class DtwSignerModel
Represents a trained model for DtwClassifier
Inheritance
System.Object
DtwSignerModel
Implements
Namespace: SigStat.Common.PipelineItems.Classifiers
Assembly: SigStat.Common.dll
Syntax
public class DtwSignerModel : object, ISignerModel
Fields
| Improve this Doc View SourceDistanceMatrix
DTW distance matrix of the genuine signatures
Declaration
public DistanceMatrix<string, string, double> DistanceMatrix
Field Value
Type | Description |
---|---|
DistanceMatrix<System.String, System.String, System.Double> |
Threshold
A threshold, that will be used for classification. Signatures with an average DTW distance from the genuines above this threshold will be classified as forgeries
Declaration
public double Threshold
Field Value
Type | Description |
---|---|
System.Double |
Properties
| Improve this Doc View SourceGenuineSignatures
A list a of genuine signatures used for training
Declaration
public List<KeyValuePair<string, double[][]>> GenuineSignatures { get; set; }
Property Value
Type | Description |
---|---|
List<KeyValuePair<System.String, System.Double[][]>> |
SignerID
Identifies the signer, to whom this model belongs to
Declaration
public string SignerID { get; set; }
Property Value
Type | Description |
---|---|
System.String | The signer identifier. |