我有一个Windows窗体应用程序。我想制作一个Voice Recognition
。问题是我使用的Grammar
仅限于我的选择列表(参见下面的程序)。我希望我的程序能够识别所有单词。
Choices sList = new Choices();
sList.Add(new string[] { "hello", "test", "it works", "how", "are", "you", "today", "i", "am", "fine", "exit", "close", "quit", "so" });
Grammar gr = new Grammar(new GrammarBuilder(sList));
你知道我怎么能让我的程序识别出所有单词吗?
声明:
using System.Speech;
using System.Speech.Recognition;
using System.Speech.Synthesis;
计划:
private void button2_Click(object sender, EventArgs e)
{
button2.Enabled = false; // Start record
button3.Enabled = true; // Stop record
Choices sList = new Choices();
sList.Add(new string[] { "hello", "test", "it works", "how", "are", "you", "today", "i", "am", "fine", "exit", "close", "quit", "so" });
Grammar gr = new Grammar(new GrammarBuilder(sList));
try
{
sRecognize.RequestRecognizerUpdate();
sRecognize.LoadGrammar(gr);
sRecognize.SpeechRecognized += sRecognize_SpeechRecognized ;
sRecognize.SetInputToDefaultAudioDevice();
sRecognize.RecognizeAsync(RecognizeMode.Multiple);
sRecognize.Recognize();
}
catch
{
return;
}
}
private void sRecognize_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
{
if (e.Result.Text == "exit")
{
Application.Exit();
}
else
{
textBox1.Text = textBox1.Text + " " + e.Result.Text.ToString();
}
}
此程序的问题无法识别所有单词,对于我的项目,我想让它识别所有单词。
感谢Stackoverflowers
答案 0 :(得分:6)
如果我理解正确,你的意思是,这应该是你需要的: 只需在DictationMode中使用SpeechRecognitionEngine,就可以识别单词(例如参见http://csharp-tricks-en.blogspot.de/2011/03/speech-recognition-part-1-dictation-mode.html)