次の方法で共有


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」を参照してください。

適用対象

こちらもご覧ください