私は、パラレルポートを介してリレーを制御するための簡単な音声認識アプリケーションを使用していました。これは、動作するはずの基本プログラムです。.NETでの音声認識が動作しない
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Speech.Synthesis;
using Microsoft.Speech.Recognition;
namespace speechHardware
{
class Program
{
static void Main(string[] args)
{
// Create a new SpeechRecognitionEngine instance.
var sre = new SpeechRecognitionEngine();
SpeechSynthesizer s = new SpeechSynthesizer();
Console.WriteLine("starting recognizer.......");
s.Speak("starting recognizer.");
// Create a simple grammar that recognizes "light on", "light off", or "fan on","fan off".
Choices colors = new Choices();
Console.WriteLine("option list.......");
colors.Add("light on");
colors.Add("light off");
colors.Add("fan on");
colors.Add("fan off");
GrammarBuilder gb = new GrammarBuilder();
gb.Append(colors);
Console.WriteLine("starting grammer builder.......");
// Create the actual Grammar instance, and then load it into the speech recognizer.
Grammar g = new Grammar(gb);
sre.LoadGrammar(g);
// Register a handler for the SpeechRecognized event.
sre.SpeechRecognized += SreSpeechRecognized;
//sre.SetInputToWaveFile("C:\Users\Raghavendra\Documents\MATLAB\test.wav");
sre.SetInputToDefaultAudioDevice();
Console.WriteLine("input device recognised.......");
s.Speak("input device recognised.");
sre.RecognizeAsync(RecognizeMode.Multiple);
Console.ReadLine();
Console.WriteLine("stopping recognizer.....");
sre.RecognizeAsyncStop();
}
static void SreSpeechRecognized(object sender, SpeechRecognizedEventArgs e)
{
SpeechSynthesizer s = new SpeechSynthesizer();
Console.WriteLine("\nSpeech Recognized: \t{0}" + e.Result.Confidence, e.Result.Text);
if (e.Result.Confidence < 0.85)
return;
switch (e.Result.Text)
{
case "light on":
light(1);
s.Speak("the light has been turned on.");
break;
case "light off":
light(0);
s.Speak("the light has been turned off.");
break;
case "fan on":
fan(1);
s.Speak("the fan has been turned on.");
break;
case "fan off":
fan(0);
s.Speak("the fan has been turned off.");
break;
default:
break;
}
}
static void light(int val)
{
Console.WriteLine("\nSpeech Recognized:light ");
}
static void fan(int val)
{
Console.WriteLine("\nSpeech Recognized: fan");
}
}
}
これは私の友人のコンピュータ上で完璧に動作しますが、私のコンピュータでは、それは私が話す何を認識しない、多分それは、入力を取得されていません。私たちはどちらもほぼ同じ設定をしています。マイクもうまく働いていて、何が間違っているのか分かりません。
私がインストールされている Microsoft音声プラットフォーム - ソフトウェア開発キット(SDK)、バージョン10.2(のx86版) Microsoft音声プラットフォーム - サーバーランタイム、バージョン10.2(のx86版)
私を助けてください。
信頼値を記録してみます。それが何を出力するか見る。 – WoLfulus
"どちらもほぼ同じ設定です"。違いは?構成を同じにして、問題がなくなるかどうか確認してください。あなたは何が違うかを知ると、問題が原因であるかどうかを知ることができます。 – ChrisF
コントロールパネルの音声認識で「コンピュータを訓練して理解していますか?」を実行しましたか? –