Table of Contents

Class IdentificationResult

Namespace
AiDotNet.Audio.Speaker
Assembly
AiDotNet.dll

Result of speaker identification.

public class IdentificationResult
Inheritance
IdentificationResult
Inherited Members

Properties

IdentifiedSpeakerId

Gets or sets the identified speaker ID (null if no match above threshold).

public string? IdentifiedSpeakerId { get; set; }

Property Value

string

Matches

Gets or sets ranked matches for all enrolled speakers.

public List<SpeakerMatch> Matches { get; set; }

Property Value

List<SpeakerMatch>

Threshold

Gets or sets the threshold used for identification.

public double Threshold { get; set; }

Property Value

double

TopScore

Gets or sets the top match score.

public double TopScore { get; set; }

Property Value

double