The ClassificationResults class associates an utterance with an identifier. An identifier is simply an integer that allows an application to determine which utterances were spoken by the same speaker. All utterances returned by a classification engine that have the same speaker should have the same identifier. There is no correlation between identifiers that were produced during different sessions. The 0 identifier is reserved for audio which was not spoken by a person. If an engine generates utterances for non-spoken audio (this is optional), it should use an identifier of 0 to do so.
See Also: ClassificationEngine, ClassificationNotify
public ClassificationResults(Utterance Utterance, int Identifier)
Constructs a new ClassificationResults from an utterance and an identifier.
public Utterance getUtterance()
Gets the utterance.
public int getIdentifier()
Gets the identifier.