Windows 7 で正常に動作する System.Speech を使用して音声認識用の C# アプリを作成しました。ただし、Windows 2003 (x86) で動作する同じアプリを作成した後です。
私のプログラミング環境: Windows 7 x64 Pro Visual Studio 2008
私のプログラミング環境でこのアプリケーションを開発するために、以下をインストールしました。
1.Microsoft Speech Platform - サーバー ランタイム (バージョン 10.1) (x86)
2.Microsoft 音声プラットフォーム - ソフトウェア開発キット (SDK) (バージョン 10.1) (x86)
3.Microsoft Speech Platform - サーバー ランタイム言語 (バージョン 10.1)
(ここでは en-GB の SR をインストールします)
私のプログラムでは、System.Speech の代わりに Microsoft.Speech.Recognition を使用しました。
SDKドキュメントからこのコードを貼り付けました:
using Microsoft.Speech.Recognition;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// Create a new SpeechRecognitionEngine instance.
sre = new SpeechRecognitionEngine();
// Create a simple grammar that recognizes “red”, “green”, or “blue”.
Choices colors = new Choices();
colors.Add("red");
colors.Add("green");
colors.Add("blue");
GrammarBuilder gb = new GrammarBuilder();
gb.Append(colors);
// 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 += new EventHandler<SpeechRecognizedEventArgs>(sre_SpeechRecognized);
sre.SetInputToDefaultAudioDevice();
sre.RecognizeAsync(RecognizeMode.Multiple);
}
// Simple handler for the SpeechRecognized event.
void sre_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
{
MessageBox.Show(e.Result.Text);
}
SpeechRecognitionEngine sre;
}
}
また、プロジェクトのプロパティでプラットフォーム ターゲットを x86 に設定しました。コードはコンパイルされますが、実行またはデバッグすると、認識が機能しません。私は何が欠けているのですか?