sre.LoadGrammar(new DictationGrammar());
sre.SetInputToDefaultAudioDevice(); // set recording souce to default
RecognitionResult Result = sre.Recognize(); // record sound and recognize
string ResultString = "";
// add all recognized words to the result string
foreach (RecognizedWordUnit w in Result.Words)
{
ResultString += w.Text;
}
如何檢測我們說的任何單詞而不是將單詞列表分配給LoadGrammar?用於語音識別的LoadGrammar
我想檢測完美的單詞我說什麼 現在它檢測到任何隨機單詞。
只是一些簡短的信息(不是答案),當我爲我提出的申請發言時,我不是英語母語的人,Speach識別器錯過了單詞和完整的句子。最後以最後的單詞結尾,以便它能匹配/理解correclty。 – Andreas