Show / Hide Table of Contents

Class GoogleCloudVisionV1p1beta1LocalizedObjectAnnotation

Set of detected objects with bounding boxes.

Inheritance
System.Object
GoogleCloudVisionV1p1beta1LocalizedObjectAnnotation
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Vision.v1.Data
Assembly: Google.Apis.Vision.v1.dll
Syntax
public class GoogleCloudVisionV1p1beta1LocalizedObjectAnnotation : IDirectResponseSchema

Properties

BoundingPoly

Image region to which this object belongs. This must be populated.

Declaration
[JsonProperty("boundingPoly")]
public virtual GoogleCloudVisionV1p1beta1BoundingPoly BoundingPoly { get; set; }
Property Value
Type Description
GoogleCloudVisionV1p1beta1BoundingPoly

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LanguageCode

The BCP-47 language code, such as "en-US" or "sr-Latn". For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.

Declaration
[JsonProperty("languageCode")]
public virtual string LanguageCode { get; set; }
Property Value
Type Description
System.String

Mid

Object ID that should align with EntityAnnotation mid.

Declaration
[JsonProperty("mid")]
public virtual string Mid { get; set; }
Property Value
Type Description
System.String

Name

Object name, expressed in its language_code language.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

Score

Score of the result. Range [0, 1].

Declaration
[JsonProperty("score")]
public virtual float? Score { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

IDirectResponseSchema
In This Article
Back to top