4

我想知道如何在 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);
 }
4

1 回答 1

2

在这种情况下,您真的不是在寻找麦克风灵敏度。我相信您正在寻找的是短语信心。

当引擎返回识别结果时,它还会返回一个置信度分数。“基本上说这就是我有多自信,我听到的就是你所说的。”

if (Speech.Recognition.RecognitionResult.Confidence > .20)
{
    //do some good stuff
}
else
{
   // ignore
}

这包含一个从 0 到 1 的值,其中 1 是最有信心的,而 0 基本上是导致 reco 事件的背景噪声。您将不得不玩弄什么是有意义的置信度值,因为它是高度语法和环境特定的。

您可以做的另一件事是更改触发词。我怀疑语音引擎的词典中有短语 SIVRAJ。在这种情况下,引擎将尝试猜测该单词由哪些音素组成(如果您有语言背景,您可以在语法中自己提供它们作为自定义发音)。开始录制之类的东西将有更好的机会为您提供更体面的体验。

于 2013-05-04T16:01:59.620 回答