SpeechRecognitionGrammarFileConstraint クラス

定義

SpeechRecognizer オブジェクトで認識できる単語または語句の一覧 (音声認識文法仕様 (SRGS) ファイルで定義) に基づくカスタム文法制約。

注意

カスタム制約を使う音声認識は、デバイスで実行されます。

public ref class SpeechRecognitionGrammarFileConstraint sealed
/// [Windows.Foundation.Metadata.Activatable(Windows.Media.SpeechRecognition.ISpeechRecognitionGrammarFileConstraintFactory, 65536, Windows.Foundation.UniversalApiContract)]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class SpeechRecognitionGrammarFileConstraint final
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Activatable(Windows.Media.SpeechRecognition.ISpeechRecognitionGrammarFileConstraintFactory, 65536, "Windows.Foundation.UniversalApiContract")]
class SpeechRecognitionGrammarFileConstraint final
[Windows.Foundation.Metadata.Activatable(typeof(Windows.Media.SpeechRecognition.ISpeechRecognitionGrammarFileConstraintFactory), 65536, typeof(Windows.Foundation.UniversalApiContract))]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class SpeechRecognitionGrammarFileConstraint
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Activatable(typeof(Windows.Media.SpeechRecognition.ISpeechRecognitionGrammarFileConstraintFactory), 65536, "Windows.Foundation.UniversalApiContract")]
public sealed class SpeechRecognitionGrammarFileConstraint
function SpeechRecognitionGrammarFileConstraint(file, tag)
Public NotInheritable Class SpeechRecognitionGrammarFileConstraint
継承
Object Platform::Object IInspectable SpeechRecognitionGrammarFileConstraint
属性
実装

Windows の要件

デバイス ファミリ
Windows 10 (10.0.10240.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v1.0 で導入)

注釈

制約 (文法) は、発声される単語や語句を定義します。これらの単語や語句は、音声認識エンジンによって照合することができる単語や語句です。 定義済みの Web サービス文法 (SpeechRecognitionTopicConstraint) のいずれかを指定することも、アプリと共にインストールされるカスタム文法を作成することもできます (カスタム制約を使用した音声認識はデバイスで実行されます)。

  • プログラムによるリスト制約 (SpeechRecognitionListConstraint) は、単語または語句のリストを使用して単純な文法を作成するための軽量なアプローチを提供します。 個別の短い語句を認識するには、一覧の制約が適しています。 文法にすべての単語を明示的に指定すると、音声認識エンジンは音声と単語の一致を確認する際に音声だけを処理すればよいので、認識の精度が向上します。 また、一覧はプログラムで更新することもできます。
  • 音声認識文法仕様 (SRGS) 文法 (SpeechRecognitionGrammarFileConstraint) は、プログラムリスト制約とは異なり、 バージョン 1.0 で定義された XML 形式を使用する静的ドキュメントです。 音声認識文法仕様 (SRGS) 文法では、1 つの認識で複数の意味をキャプチャできるようにすることで、音声認識エクスペリエンスを最大限に制御できます。

Constraints プロパティに制約が指定されていない場合でも、CompileConstraintsAsyncRecognizeAsync または RecognizeWithUIAsync の前に常に呼び出す必要があります。

コンストラクター

SpeechRecognitionGrammarFileConstraint(StorageFile)

ファイル オブジェクトから SpeechRecognitionGrammarFileConstraint クラスのインスタンスを作成します。

SpeechRecognitionGrammarFileConstraint(StorageFile, String)

ファイル オブジェクトとタグから SpeechRecognitionGrammarFileConstraint クラスのインスタンスを作成します。

プロパティ

GrammarFile

音声認識文法仕様 (SRGS) 文法ファイルを表す StorageFile オブジェクトを取得します。

IsEnabled

音声認識エンジンが認識を実行するために制約を使用できるかどうかを取得または設定します。

Probability

制約の重み付けされた値を取得または設定します。

Tag

制約を識別するのに役立つタグを取得または設定します。

Type

制約の型を取得します。

適用対象

こちらもご覧ください