AprilAsr
|
Classes | |
class | AprilModel |
Models end with the file extension .april . You need to pass a path to such a file to construct a Model type. More... | |
class | AprilSession |
The session is what performs the actual speech recognition. It has methods to input audio, and it calls your given handler with decoded results. More... | |
struct | AprilToken |
A token may be a single letter, a word chunk, an entire word, punctuation, or other arbitrary set of characters. More... | |
Enumerations | |
enum class | AprilResultKind : int { PartialRecognition = 1 , FinalRecognition = 2 , ErrorCantKeepUp = 3 , Silence = 4 } |
Result type that is passed to your handler More... | |
Functions | |
delegate void | SessionCallback (AprilResultKind kind, AprilToken[] tokens) |
Session callback type. You must provide one of such type when constructing a session. More... | |
|
strong |
Result type that is passed to your handler
delegate void AprilAsr.SessionCallback | ( | AprilResultKind | kind, |
AprilToken[] | tokens | ||
) |
Session callback type. You must provide one of such type when constructing a session.