Поделиться через


Grammar.SpeechRecognized Событие

Определение

Вызывается, когда распознаватель речи выполняет распознавание с помощью объекта Grammar.

public:
 event EventHandler<System::Speech::Recognition::SpeechRecognizedEventArgs ^> ^ SpeechRecognized;
public event EventHandler<System.Speech.Recognition.SpeechRecognizedEventArgs> SpeechRecognized;
member this.SpeechRecognized : EventHandler<System.Speech.Recognition.SpeechRecognizedEventArgs> 
Public Custom Event SpeechRecognized As EventHandler(Of SpeechRecognizedEventArgs) 
Public Event SpeechRecognized As EventHandler(Of SpeechRecognizedEventArgs) 

Тип события

Примеры

В следующем примере показано использование обработчика событий для Grammar события объекта SpeechRecognized . Он выводит результаты распознавания в консоль.

public partial class Form1 : Form
{
  SpeechRecognitionEngine sre;

  public Form1()
  {
  InitializeComponent();

  // Create an in-process speech recognizer.
  sre = new SpeechRecognitionEngine();

  // Configure input to the speech recognizer.
  sre.SetInputToDefaultAudioDevice();

  // Create a simple grammar and load it.
  Grammar testGrammar = new Grammar(new GrammarBuilder("testing"));
  sre.LoadGrammarAsync(testGrammar);

  // Add a handler for the grammar's speech recognized event.
  testGrammar.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(testGrammar_SpeechRecognized);

  // Start asynchronous speech recognition.
  sre.RecognizeAsync();
  }

  // Handle the grammar's SpeechRecognized event, output the recognized text.
  void testGrammar_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
  {
    Console.WriteLine("Recognized text: " + e.Result.Text);
  }
}

Комментарии

Распознаватель речи также вызывает SpeechRecognized событие при распознавании входных данных. Событие Grammar объекта SpeechRecognized возникает перед событием распознавателя SpeechRecognized речи . Дополнительные сведения см. в разделе о событиях SpeechRecognizer.SpeechRecognized, SpeechRecognitionEngine.SpeechRecognizedи RecognizeCompleted .

Все задачи, относящиеся к определенной грамматике, всегда должны обрабатываться обработчиками события Grammar объекта SpeechRecognized .

Применяется к

См. также раздел