Show / Hide Table of Contents

Class AnnotateImageRequest

Request for performing Google Cloud Vision API tasks over a user-provided image, with user-requested features, and with context information.

Inheritance
System.Object
AnnotateImageRequest
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 AnnotateImageRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Features

Requested features.

Declaration
[JsonProperty("features")]
public virtual IList<Feature> Features { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Feature>

Image

The image to be processed.

Declaration
[JsonProperty("image")]
public virtual Image Image { get; set; }
Property Value
Type Description
Image

ImageContext

Additional context that may accompany the image.

Declaration
[JsonProperty("imageContext")]
public virtual ImageContext ImageContext { get; set; }
Property Value
Type Description
ImageContext

Implements

IDirectResponseSchema
In This Article
Back to top