如何识别语法中没有的单词

本文关键字:单词 语法 何识别 识别 | 更新日期: 2023-09-27 18:31:45

我正在尝试使用c#(Windows表单)制作语音识别应用程序。

这是我正在使用的代码

//recognizing speech
SpeechRecognitionEngine r = new SpeechRecognitionEngine();
//then load the grammar
r.LoadGrammar(new Grammar(new GrammarBuilder
        (new Choices("hello","how are you","nice to meet you")))
        { Name = "speechGrammar" });
r.SetInputToDefaultAudioDevice(); // set the input of the speech recognizer to the default audio device
r.RecognizeAsync(RecognizeMode.Multiple); // recognize speech asynchronous
//adding a event handler
r.SpeechRecognized += r_SpeechRecognized;
//then create a method for that
void r_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
{
    if (e.Result.Text == "test") // e.Result.Text contains the recognized text
    {
        SpeechSynthesizer s = new SpeechSynthesizer();
        s.Speak("hello");
        MessageBox.Show("Hi User");
        s.Dispose();
    } 
} 

所以我希望程序将文本框的文本更改为已说出但不在语法中的单词/短语。

前任 send a mail to xyz句子不在语法列表中所以当它被说出来时,我想要

textbox1.text = spokenword;

我应该对此结果的代码进行哪些更改。

如何识别语法中没有的单词

您无法识别语法中没有的单词。你只需要做更大的语法。如果你想识别任意文本,你可以使用听写语法,它应该覆盖大部分单词。

识别文本后,您可以将其分配给文本框:

 textbox1.text = e.Result.Text;