次の方法で共有


RecognizedEntity コンストラクター

定義

オーバーロード

RecognizedEntity()

RecognizedEntity クラスの新しいインスタンスを初期化します。

RecognizedEntity(String, String, String, Thing, Nullable<Double>)

RecognizedEntity クラスの新しいインスタンスを初期化します。

RecognizedEntity()

RecognizedEntity クラスの新しいインスタンスを初期化します。

public RecognizedEntity ();
Public Sub New ()

適用対象

RecognizedEntity(String, String, String, Thing, Nullable<Double>)

RecognizedEntity クラスの新しいインスタンスを初期化します。

public RecognizedEntity (string id = default, string readLink = default, string webSearchUrl = default, Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.Thing entity = default, double? matchConfidence = default);
new Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RecognizedEntity : string * string * string * Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.Thing * Nullable<double> -> Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RecognizedEntity
Public Sub New (Optional id As String = Nothing, Optional readLink As String = Nothing, Optional webSearchUrl As String = Nothing, Optional entity As Thing = Nothing, Optional matchConfidence As Nullable(Of Double) = Nothing)

パラメーター

id
String

文字列識別子。

readLink
String

このリソースを返す URL。

webSearchUrl
String

このアイテムの検索結果をBingする URL。

entity
Thing

認識されたエンティティ。 考えられるエンティティ オブジェクトは次のとおりです: Person

matchConfidence
Nullable<Double>

イメージ内のエンティティがこのエンティティと一致するBingの信頼度。 信頼度の範囲は 0.0 から 1.0 で、1.0 は非常に自信があります。

適用対象