RecognizedPhrase.Words プロパティ

定義

認識された入力から音声認識エンジンによって生成される単語を取得します。

public:
 property System::Collections::ObjectModel::ReadOnlyCollection<System::Speech::Recognition::RecognizedWordUnit ^> ^ Words { System::Collections::ObjectModel::ReadOnlyCollection<System::Speech::Recognition::RecognizedWordUnit ^> ^ get(); };
public System.Collections.ObjectModel.ReadOnlyCollection<System.Speech.Recognition.RecognizedWordUnit> Words { get; }
member this.Words : System.Collections.ObjectModel.ReadOnlyCollection<System.Speech.Recognition.RecognizedWordUnit>
Public ReadOnly Property Words As ReadOnlyCollection(Of RecognizedWordUnit)

プロパティ値

認識された入力に対して音声認識エンジンによって生成される RecognizedWordUnit オブジェクトのコレクション。

注釈

このプロパティには、認識エンジンによる結果の音声テキスト変換の正規化の前に、音声認識エンジンによって入力から生成された単語が含まれます。

たとえば、読み上げられた入力 "25 ドル" は認識結果を生成します。この場合 Words 、プロパティには単語 "twenty"、"five"、"dollars" が含まれ Text 、プロパティには "$25.00" という語句が含まれます。 テキストの正規化の詳細については、「」を参照してください ReplacementText

適用対象

こちらもご覧ください