2

音声認識エンジンを使用するアプリケーションを作成する必要があります。

c#で音声を介して複数のテキストボックスに異なる値を入力するにはどうすればよいですか?

1 つのテキスト ボックスに値を入力できますが、2 番目のテキスト ボックスには入力できません。単一のテキストボックスに値を入力するための次のコードがあります。

private SpeechRecognitionEngine rec;

private void voice()     
{
    rec = new SpeechRecognitionEngine();
    rec.SetInputToDefaultAudioDevice();
    Choices choice = new Choices("apple","Orange","Onion");
    GrammarBuilder gr = new GrammarBuilder(choice);
    Grammar grammar = new Grammar(gr);
    rec.LoadGrammar(grammar);
    rec.SpeechRecognized += 
        new EventHandler<SpeechRecognizedEventArgs>(rec_SpeechRecogonized);
    rec.RecognizeAsync(RecognizeMode.Multiple);
}

void rec_SpeechRecogonized(object sender, SpeechRecognizedEventArgs e)
{
    foreach (RecognizedWordUnit word in e.Result.Words)
    {
         textBox1.Text = word.Text;
    }
}
4

1 に答える 1

0

私はこのようなことをします(非常に単純な例):

private SpeechRecognitionEngine rec;

private void voice()     
{
    rec = new SpeechRecognitionEngine();
    rec.SetInputToDefaultAudioDevice();
    Choices choice = new Choices("apple","Orange","Onion", "next");
    GrammarBuilder gr = new GrammarBuilder(choice);
    Grammar grammar = new Grammar(gr);
    rec.LoadGrammar(grammar);
    rec.SpeechRecognized += 
        new EventHandler<SpeechRecognizedEventArgs>(rec_SpeechRecogonized);
    rec.RecognizeAsync(RecognizeMode.Multiple);
}

private TextBox currentInput;
void rec_SpeechRecogonized(object sender, SpeechRecognizedEventArgs e)
{
    if (currentInput == null) currentInput = textBox1;

    foreach (RecognizedWordUnit word in e.Result.Words)
    {
         if (word.Text = "next") { currentInput = textBox2; }
         else { currentInput.Text = word.Text; }
    }
}
于 2012-09-13T06:38:01.040 に答える