RecognizedEntityRegion Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
RecognizedEntityRegion() |
Initialise une nouvelle instance de la classe RecognizedEntityRegion. |
RecognizedEntityRegion(String, String, String, NormalizedRectangle, IList<RecognizedEntity>) |
Initialise une nouvelle instance de la classe RecognizedEntityRegion. |
RecognizedEntityRegion()
Initialise une nouvelle instance de la classe RecognizedEntityRegion.
public RecognizedEntityRegion ();
Public Sub New ()
S’applique à
RecognizedEntityRegion(String, String, String, NormalizedRectangle, IList<RecognizedEntity>)
Initialise une nouvelle instance de la classe RecognizedEntityRegion.
public RecognizedEntityRegion (string id = default, string readLink = default, string webSearchUrl = default, Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.NormalizedRectangle region = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RecognizedEntity> matchingEntities = default);
new Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RecognizedEntityRegion : string * string * string * Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.NormalizedRectangle * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RecognizedEntity> -> Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RecognizedEntityRegion
Public Sub New (Optional id As String = Nothing, Optional readLink As String = Nothing, Optional webSearchUrl As String = Nothing, Optional region As NormalizedRectangle = Nothing, Optional matchingEntities As IList(Of RecognizedEntity) = Nothing)
Paramètres
- id
- String
Identificateur de chaîne.
- readLink
- String
URL qui retourne cette ressource.
- webSearchUrl
- String
URL vers le résultat de recherche bing pour cet élément.
- region
- NormalizedRectangle
Région de l’image qui contient une entité. Les valeurs du rectangle sont relatives à la largeur et la hauteur de l’image d’origine et sont comprises dans la plage de 0,0 à 1,0. Par exemple, si l’image est de 300 x 200 et que la région est supérieure, l’angle gauche est au point (10, 20) et le coin inférieur droit est au point (290, 150), puis le rectangle normalisé est : Left = 0.03333333333333333333, Top = 0.1, Right = 0.9666666666666666666667, Bottom = 0.75. Pour les personnes, la région représente le visage de la personne.
- matchingEntities
- IList<RecognizedEntity>
Liste des entités qui, selon Bing, correspondent à l’entité trouvée dans la région. Les entités sont dans l’ordre décroissant de confiance (voir le champ matchConfidence de RecognizedEntity).
S’applique à
Azure SDK for .NET