Show / Hide Table of Contents

Class DtwSignerModel

Represents a trained model for DtwClassifier

Inheritance
System.Object
DtwSignerModel
Implements
ISignerModel
Namespace: SigStat.Common.PipelineItems.Classifiers
Assembly: SigStat.Common.dll
Syntax
public class DtwSignerModel : object, ISignerModel

Fields

| Improve this Doc View Source

DistanceMatrix

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

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 Source

GenuineSignatures

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

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.

Implements

ISignerModel
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX