Request for performing Google Cloud Vision API tasks over a user-provided image, with user-requested features, and with context information.
JSON representation |
---|
{ "image" : { object ( |
Fields | |
---|---|
image
|
The image to be processed. |
features[]
|
Requested features. |
imageContext
|
Additional context that may accompany the image. |
Image
Client image to perform Google Cloud Vision API tasks over.
JSON representation |
---|
{
"content"
:
string
,
"source"
:
{
object (
|
Fields | |
---|---|
content
|
Image content, represented as a stream of bytes. Note: As with all Currently, this field only works for images.annotate requests. It does not work for images.asyncBatchAnnotate requests. A base64-encoded string. |
source
|
Google Cloud Storage image location, or publicly-accessible image URL. If both |
ImageSource
External image source (Google Cloud Storage or web URL image location).
JSON representation |
---|
{ "gcsImageUri" : string , "imageUri" : string } |
gcsImageUri
string
Use imageUri
instead.
The Google Cloud Storage URI of the form gs://bucket_name/object_name
. Object versioning is not supported. See Google Cloud Storage Request URIs
for more info.
imageUri
string
The URI of the source image. Can be either:
-
A Google Cloud Storage URI of the form
gs://bucket_name/object_name
. Object versioning is not supported. See Google Cloud Storage Request URIs for more info. -
A publicly-accessible image HTTP/HTTPS URL. When fetching images from HTTP/HTTPS URLs, Google cannot guarantee that the request will be completed. Your request may fail if the specified host denies the request (e.g. due to request throttling or DOS prevention), or if Google throttles requests to the site for abuse prevention. You should not depend on externally-hosted images for production applications.
When both gcsImageUri
and imageUri
are specified, imageUri
takes precedence.