我想知道如何使用C#中的System.Speech降低麦克风灵敏度。
为了解释自己,我有一个语法文件,当我说SIVRAJ(我的程序名称)时,我的应用程序应该开始记录我
但是,我可以说一些完全不同的东西,我的应用程序会理解'SIVRAJ'......
我的XML文件中有一部分:
<rule id="mouskie" scope="public">
<item>
<one-of>
<item>SIVRAJ</item>
</one-of>
</item>
<ruleref special="GARBAGE" />
<one-of>
<item>
<one-of>
<item>quit</item>
</one-of>
<tag>$.mouskie={}; $.mouskie._value="QUIT";</tag> // quit programm when i say SIVRAJ + quit
</item>
..... etc etc
这是启动识别引擎的功能:
SrgsDocument xmlGrammar = new SrgsDocument("Grammaire.grxml");
Grammar grammar = new Grammar(xmlGrammar);
ASREngine = new SpeechRecognitionEngine();
ASREngine.SetInputToDefaultAudioDevice();
ASREngine.LoadGrammar(grammar);
ASREngine.SpeechRecognized += ASREngine_SpeechRecognized;
ASREngine.SpeechRecognitionRejected += ASREngine_SpeechRecognitionRejected;
ASREngine.SpeechHypothesized += ASREngine_SpeechHypothesized;
最后,我在这里恢复数据:
recoText.Text = e.Result.Text;
devine.Text = "";
affiche.Text = "";
string baseCommand = e.Result.Semantics["mouskie"].Value.ToString();
commandText.Text = baseCommand;
if (baseCommand.Equals("QUIT"))
{
m_SpeechSynth.Speech("au revoir", VoiceGender.Male, VoiceAge.Adult);
Environment.Exit(0);
}
答案 0 :(得分:2)
在这种情况下,您真的不是在寻找麦克风灵敏度。我相信你正在寻找的是短语自信。
当引擎返回识别结果时,它还会返回置信度分数。 “基本上说这就是我的自信,我所听到的就是你所说的。”
if (Speech.Recognition.RecognitionResult.Confidence > .20)
{
//do some good stuff
}
else
{
// ignore
}
这包含从0到1的值,其中1表示最自信,0表示基本上是导致重新发生事件的背景噪音。由于它具有高度语法和环境特定性,因此您必须充分利用信心值才有意义。
您可以做的另一件事是更改触发词。我怀疑语音引擎的词汇中有短语SIVRAJ。在这种情况下,引擎会尝试猜测哪个音素组成了这个单词(如果你有语言背景,你可以自己在语法中提供它们作为自定义发音)。像Start Recording这样的东西会有更好的机会为你提供更体面的体验。