我使用System.Speech庫能夠識別語音,但它通常認識到非常不同。改進語音識別C#
SpeechRecognizer_rec = new SpeechRecognizer();
DictationGrammar grammar = new DictationGrammar();
grammar.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(grammar_SpeechRecognized);
_rec.LoadGrammar(grammar);
如何改善recgonition?它與Grammer類有關係嗎?
你能訓練語音識別引擎嗎? – NuWin 2016-08-30 00:17:54
看起來你可以使用SAPI。 – NuWin 2016-08-30 01:32:00