Class IdentificationResult
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
Matches
Gets or sets ranked matches for all enrolled speakers.
public List<SpeakerMatch> Matches { get; set; }
Property Value
Threshold
Gets or sets the threshold used for identification.
public double Threshold { get; set; }
Property Value
TopScore
Gets or sets the top match score.
public double TopScore { get; set; }