Class ImageAnnotatorClient (3.39.0)

GitHub RepositoryProduct ReferenceREST DocumentationRPC Documentation

Service Description: Service that performs Google Cloud Vision API detection tasks over client images, such as face, landmark, logo, label, and text detection. The ImageAnnotator service returns detected entities from the images.

This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   List<AnnotateImageRequest> requests = new ArrayList<>();
   BatchAnnotateImagesResponse response = imageAnnotatorClient.batchAnnotateImages(requests);
 }
 

Note: close() needs to be called on the ImageAnnotatorClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

Methods
MethodDescriptionMethod Variants

BatchAnnotateImages

Run image detection and annotation for a batch of images.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • batchAnnotateImages(List<AnnotateImageRequest> requests)

  • batchAnnotateImages(BatchAnnotateImagesRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • batchAnnotateImagesCallable()

BatchAnnotateFiles

Service that performs image detection and annotation for a batch of files. Now only "application/pdf", "image/tiff" and "image/gif" are supported.

This service will extract at most 5 (customers can specify which 5 in AnnotateFileRequest.pages) frames (gif) or pages (pdf or tiff) from each file provided and perform detection and annotation for each image extracted.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • batchAnnotateFiles(List<AnnotateFileRequest> requests)

  • batchAnnotateFiles(BatchAnnotateFilesRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • batchAnnotateFilesCallable()

AsyncBatchAnnotateImages

Run asynchronous image detection and annotation for a list of images.

Progress and results can be retrieved through the google.longrunning.Operations interface. Operation.metadata contains OperationMetadata (metadata). Operation.response contains AsyncBatchAnnotateImagesResponse (results).

This service will write image annotation outputs to json files in customer GCS bucket, each json file containing BatchAnnotateImagesResponse proto.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • asyncBatchAnnotateImagesAsync(List<AnnotateImageRequest> requests, OutputConfig outputConfig)

  • asyncBatchAnnotateImagesAsync(AsyncBatchAnnotateImagesRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • asyncBatchAnnotateImagesOperationCallable()

  • asyncBatchAnnotateImagesCallable()

AsyncBatchAnnotateFiles

Run asynchronous image detection and annotation for a list of generic files, such as PDF files, which may contain multiple pages and multiple images per page. Progress and results can be retrieved through the google.longrunning.Operations interface. Operation.metadata contains OperationMetadata (metadata). Operation.response contains AsyncBatchAnnotateFilesResponse (results).

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • asyncBatchAnnotateFilesAsync(List<AsyncAnnotateFileRequest> requests)

  • asyncBatchAnnotateFilesAsync(AsyncBatchAnnotateFilesRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • asyncBatchAnnotateFilesOperationCallable()

  • asyncBatchAnnotateFilesCallable()

See the individual methods for example code.

Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.

This class can be customized by passing in a custom instance of ImageAnnotatorSettings to create(). For example:

To customize credentials:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 ImageAnnotatorSettings imageAnnotatorSettings =
     ImageAnnotatorSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create(imageAnnotatorSettings);
 

To customize the endpoint:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 ImageAnnotatorSettings imageAnnotatorSettings =
     ImageAnnotatorSettings.newBuilder().setEndpoint(myEndpoint).build();
 ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create(imageAnnotatorSettings);
 

To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 ImageAnnotatorSettings imageAnnotatorSettings =
     ImageAnnotatorSettings.newHttpJsonBuilder().build();
 ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create(imageAnnotatorSettings);
 

Please refer to the GitHub repository's samples for more quickstart code snippets.

Inheritance

java.lang.Object > ImageAnnotatorClient

Static Methods

create()

public static final ImageAnnotatorClient create()

Constructs an instance of ImageAnnotatorClient with default settings.

Returns
TypeDescription
ImageAnnotatorClient
Exceptions
TypeDescription
IOException

create(ImageAnnotatorSettings settings)

public static final ImageAnnotatorClient create(ImageAnnotatorSettings settings)

Constructs an instance of ImageAnnotatorClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.

Parameter
NameDescription
settingsImageAnnotatorSettings
Returns
TypeDescription
ImageAnnotatorClient
Exceptions
TypeDescription
IOException

create(ImageAnnotatorStub stub)

public static final ImageAnnotatorClient create(ImageAnnotatorStub stub)

Constructs an instance of ImageAnnotatorClient, using the given stub for making calls. This is for advanced usage - prefer using create(ImageAnnotatorSettings).

Parameter
NameDescription
stubImageAnnotatorStub
Returns
TypeDescription
ImageAnnotatorClient

Constructors

ImageAnnotatorClient(ImageAnnotatorSettings settings)

protected ImageAnnotatorClient(ImageAnnotatorSettings settings)

Constructs an instance of ImageAnnotatorClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.

Parameter
NameDescription
settingsImageAnnotatorSettings

ImageAnnotatorClient(ImageAnnotatorStub stub)

protected ImageAnnotatorClient(ImageAnnotatorStub stub)
Parameter
NameDescription
stubImageAnnotatorStub

Methods

asyncBatchAnnotateFilesAsync(AsyncBatchAnnotateFilesRequest request)

public final OperationFuture<AsyncBatchAnnotateFilesResponse,OperationMetadata> asyncBatchAnnotateFilesAsync(AsyncBatchAnnotateFilesRequest request)

Run asynchronous image detection and annotation for a list of generic files, such as PDF files, which may contain multiple pages and multiple images per page. Progress and results can be retrieved through the google.longrunning.Operations interface. Operation.metadata contains OperationMetadata (metadata). Operation.response contains AsyncBatchAnnotateFilesResponse (results).

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   AsyncBatchAnnotateFilesRequest request =
       AsyncBatchAnnotateFilesRequest.newBuilder()
           .addAllRequests(new ArrayList<AsyncAnnotateFileRequest>())
           .build();
   AsyncBatchAnnotateFilesResponse response =
       imageAnnotatorClient.asyncBatchAnnotateFilesAsync(request).get();
 }
 
Parameter
NameDescription
requestAsyncBatchAnnotateFilesRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
OperationFuture<AsyncBatchAnnotateFilesResponse,OperationMetadata>

asyncBatchAnnotateFilesAsync(List<AsyncAnnotateFileRequest> requests)

public final OperationFuture<AsyncBatchAnnotateFilesResponse,OperationMetadata> asyncBatchAnnotateFilesAsync(List<AsyncAnnotateFileRequest> requests)

Run asynchronous image detection and annotation for a list of generic files, such as PDF files, which may contain multiple pages and multiple images per page. Progress and results can be retrieved through the google.longrunning.Operations interface. Operation.metadata contains OperationMetadata (metadata). Operation.response contains AsyncBatchAnnotateFilesResponse (results).

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   List<AsyncAnnotateFileRequest> requests = new ArrayList<>();
   AsyncBatchAnnotateFilesResponse response =
       imageAnnotatorClient.asyncBatchAnnotateFilesAsync(requests).get();
 }
 
Parameter
NameDescription
requestsList<AsyncAnnotateFileRequest>

Required. Individual async file annotation requests for this batch.

Returns
TypeDescription
OperationFuture<AsyncBatchAnnotateFilesResponse,OperationMetadata>

asyncBatchAnnotateFilesCallable()

public final UnaryCallable<AsyncBatchAnnotateFilesRequest,Operation> asyncBatchAnnotateFilesCallable()

Run asynchronous image detection and annotation for a list of generic files, such as PDF files, which may contain multiple pages and multiple images per page. Progress and results can be retrieved through the google.longrunning.Operations interface. Operation.metadata contains OperationMetadata (metadata). Operation.response contains AsyncBatchAnnotateFilesResponse (results).

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   AsyncBatchAnnotateFilesRequest request =
       AsyncBatchAnnotateFilesRequest.newBuilder()
           .addAllRequests(new ArrayList<AsyncAnnotateFileRequest>())
           .build();
   ApiFuture<Operation> future =
       imageAnnotatorClient.asyncBatchAnnotateFilesCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<AsyncBatchAnnotateFilesRequest,Operation>

asyncBatchAnnotateFilesOperationCallable()

public final OperationCallable<AsyncBatchAnnotateFilesRequest,AsyncBatchAnnotateFilesResponse,OperationMetadata> asyncBatchAnnotateFilesOperationCallable()

Run asynchronous image detection and annotation for a list of generic files, such as PDF files, which may contain multiple pages and multiple images per page. Progress and results can be retrieved through the google.longrunning.Operations interface. Operation.metadata contains OperationMetadata (metadata). Operation.response contains AsyncBatchAnnotateFilesResponse (results).

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   AsyncBatchAnnotateFilesRequest request =
       AsyncBatchAnnotateFilesRequest.newBuilder()
           .addAllRequests(new ArrayList<AsyncAnnotateFileRequest>())
           .build();
   OperationFuture<AsyncBatchAnnotateFilesResponse, OperationMetadata> future =
       imageAnnotatorClient.asyncBatchAnnotateFilesOperationCallable().futureCall(request);
   // Do something.
   AsyncBatchAnnotateFilesResponse response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<AsyncBatchAnnotateFilesRequest,AsyncBatchAnnotateFilesResponse,OperationMetadata>

asyncBatchAnnotateImagesAsync(AsyncBatchAnnotateImagesRequest request)

public final OperationFuture<AsyncBatchAnnotateImagesResponse,OperationMetadata> asyncBatchAnnotateImagesAsync(AsyncBatchAnnotateImagesRequest request)

Run asynchronous image detection and annotation for a list of images.

Progress and results can be retrieved through the google.longrunning.Operations interface. Operation.metadata contains OperationMetadata (metadata). Operation.response contains AsyncBatchAnnotateImagesResponse (results).

This service will write image annotation outputs to json files in customer GCS bucket, each json file containing BatchAnnotateImagesResponse proto.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   AsyncBatchAnnotateImagesRequest request =
       AsyncBatchAnnotateImagesRequest.newBuilder()
           .addAllRequests(new ArrayList<AnnotateImageRequest>())
           .setOutputConfig(OutputConfig.newBuilder().build())
           .build();
   AsyncBatchAnnotateImagesResponse response =
       imageAnnotatorClient.asyncBatchAnnotateImagesAsync(request).get();
 }
 
Parameter
NameDescription
requestAsyncBatchAnnotateImagesRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
OperationFuture<AsyncBatchAnnotateImagesResponse,OperationMetadata>

asyncBatchAnnotateImagesAsync(List<AnnotateImageRequest> requests, OutputConfig outputConfig)

public final OperationFuture<AsyncBatchAnnotateImagesResponse,OperationMetadata> asyncBatchAnnotateImagesAsync(List<AnnotateImageRequest> requests, OutputConfig outputConfig)

Run asynchronous image detection and annotation for a list of images.

Progress and results can be retrieved through the google.longrunning.Operations interface. Operation.metadata contains OperationMetadata (metadata). Operation.response contains AsyncBatchAnnotateImagesResponse (results).

This service will write image annotation outputs to json files in customer GCS bucket, each json file containing BatchAnnotateImagesResponse proto.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   List<AnnotateImageRequest> requests = new ArrayList<>();
   OutputConfig outputConfig = OutputConfig.newBuilder().build();
   AsyncBatchAnnotateImagesResponse response =
       imageAnnotatorClient.asyncBatchAnnotateImagesAsync(requests, outputConfig).get();
 }
 
Parameters
NameDescription
requestsList<AnnotateImageRequest>

Required. Individual image annotation requests for this batch.

outputConfigOutputConfig

Required. The desired output location and metadata (e.g. format).

Returns
TypeDescription
OperationFuture<AsyncBatchAnnotateImagesResponse,OperationMetadata>

asyncBatchAnnotateImagesCallable()

public final UnaryCallable<AsyncBatchAnnotateImagesRequest,Operation> asyncBatchAnnotateImagesCallable()

Run asynchronous image detection and annotation for a list of images.

Progress and results can be retrieved through the google.longrunning.Operations interface. Operation.metadata contains OperationMetadata (metadata). Operation.response contains AsyncBatchAnnotateImagesResponse (results).

This service will write image annotation outputs to json files in customer GCS bucket, each json file containing BatchAnnotateImagesResponse proto.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   AsyncBatchAnnotateImagesRequest request =
       AsyncBatchAnnotateImagesRequest.newBuilder()
           .addAllRequests(new ArrayList<AnnotateImageRequest>())
           .setOutputConfig(OutputConfig.newBuilder().build())
           .build();
   ApiFuture<Operation> future =
       imageAnnotatorClient.asyncBatchAnnotateImagesCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<AsyncBatchAnnotateImagesRequest,Operation>

asyncBatchAnnotateImagesOperationCallable()

public final OperationCallable<AsyncBatchAnnotateImagesRequest,AsyncBatchAnnotateImagesResponse,OperationMetadata> asyncBatchAnnotateImagesOperationCallable()

Run asynchronous image detection and annotation for a list of images.

Progress and results can be retrieved through the google.longrunning.Operations interface. Operation.metadata contains OperationMetadata (metadata). Operation.response contains AsyncBatchAnnotateImagesResponse (results).

This service will write image annotation outputs to json files in customer GCS bucket, each json file containing BatchAnnotateImagesResponse proto.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   AsyncBatchAnnotateImagesRequest request =
       AsyncBatchAnnotateImagesRequest.newBuilder()
           .addAllRequests(new ArrayList<AnnotateImageRequest>())
           .setOutputConfig(OutputConfig.newBuilder().build())
           .build();
   OperationFuture<AsyncBatchAnnotateImagesResponse, OperationMetadata> future =
       imageAnnotatorClient.asyncBatchAnnotateImagesOperationCallable().futureCall(request);
   // Do something.
   AsyncBatchAnnotateImagesResponse response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<AsyncBatchAnnotateImagesRequest,AsyncBatchAnnotateImagesResponse,OperationMetadata>

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
NameDescription
durationlong
unitTimeUnit
Returns
TypeDescription
boolean
Exceptions
TypeDescription
InterruptedException

batchAnnotateFiles(BatchAnnotateFilesRequest request)

public final BatchAnnotateFilesResponse batchAnnotateFiles(BatchAnnotateFilesRequest request)

Service that performs image detection and annotation for a batch of files. Now only "application/pdf", "image/tiff" and "image/gif" are supported.

This service will extract at most 5 (customers can specify which 5 in AnnotateFileRequest.pages) frames (gif) or pages (pdf or tiff) from each file provided and perform detection and annotation for each image extracted.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   BatchAnnotateFilesRequest request =
       BatchAnnotateFilesRequest.newBuilder()
           .addAllRequests(new ArrayList<AnnotateFileRequest>())
           .build();
   BatchAnnotateFilesResponse response = imageAnnotatorClient.batchAnnotateFiles(request);
 }
 
Parameter
NameDescription
requestBatchAnnotateFilesRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
BatchAnnotateFilesResponse

batchAnnotateFiles(List<AnnotateFileRequest> requests)

public final BatchAnnotateFilesResponse batchAnnotateFiles(List<AnnotateFileRequest> requests)

Service that performs image detection and annotation for a batch of files. Now only "application/pdf", "image/tiff" and "image/gif" are supported.

This service will extract at most 5 (customers can specify which 5 in AnnotateFileRequest.pages) frames (gif) or pages (pdf or tiff) from each file provided and perform detection and annotation for each image extracted.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   List<AnnotateFileRequest> requests = new ArrayList<>();
   BatchAnnotateFilesResponse response = imageAnnotatorClient.batchAnnotateFiles(requests);
 }
 
Parameter
NameDescription
requestsList<AnnotateFileRequest>

Required. The list of file annotation requests. Right now we support only one AnnotateFileRequest in BatchAnnotateFilesRequest.

Returns
TypeDescription
BatchAnnotateFilesResponse

batchAnnotateFilesCallable()

public final UnaryCallable<BatchAnnotateFilesRequest,BatchAnnotateFilesResponse> batchAnnotateFilesCallable()

Service that performs image detection and annotation for a batch of files. Now only "application/pdf", "image/tiff" and "image/gif" are supported.

This service will extract at most 5 (customers can specify which 5 in AnnotateFileRequest.pages) frames (gif) or pages (pdf or tiff) from each file provided and perform detection and annotation for each image extracted.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   BatchAnnotateFilesRequest request =
       BatchAnnotateFilesRequest.newBuilder()
           .addAllRequests(new ArrayList<AnnotateFileRequest>())
           .build();
   ApiFuture<BatchAnnotateFilesResponse> future =
       imageAnnotatorClient.batchAnnotateFilesCallable().futureCall(request);
   // Do something.
   BatchAnnotateFilesResponse response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<BatchAnnotateFilesRequest,BatchAnnotateFilesResponse>

batchAnnotateImages(BatchAnnotateImagesRequest request)

public final BatchAnnotateImagesResponse batchAnnotateImages(BatchAnnotateImagesRequest request)

Run image detection and annotation for a batch of images.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   BatchAnnotateImagesRequest request =
       BatchAnnotateImagesRequest.newBuilder()
           .addAllRequests(new ArrayList<AnnotateImageRequest>())
           .build();
   BatchAnnotateImagesResponse response = imageAnnotatorClient.batchAnnotateImages(request);
 }
 
Parameter
NameDescription
requestBatchAnnotateImagesRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
BatchAnnotateImagesResponse

batchAnnotateImages(List<AnnotateImageRequest> requests)

public final BatchAnnotateImagesResponse batchAnnotateImages(List<AnnotateImageRequest> requests)

Run image detection and annotation for a batch of images.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   List<AnnotateImageRequest> requests = new ArrayList<>();
   BatchAnnotateImagesResponse response = imageAnnotatorClient.batchAnnotateImages(requests);
 }
 
Parameter
NameDescription
requestsList<AnnotateImageRequest>

Required. Individual image annotation requests for this batch.

Returns
TypeDescription
BatchAnnotateImagesResponse

batchAnnotateImagesCallable()

public final UnaryCallable<BatchAnnotateImagesRequest,BatchAnnotateImagesResponse> batchAnnotateImagesCallable()

Run image detection and annotation for a batch of images.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create()) {
   BatchAnnotateImagesRequest request =
       BatchAnnotateImagesRequest.newBuilder()
           .addAllRequests(new ArrayList<AnnotateImageRequest>())
           .build();
   ApiFuture<BatchAnnotateImagesResponse> future =
       imageAnnotatorClient.batchAnnotateImagesCallable().futureCall(request);
   // Do something.
   BatchAnnotateImagesResponse response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<BatchAnnotateImagesRequest,BatchAnnotateImagesResponse>

close()

public final void close()

getHttpJsonOperationsClient()

public final OperationsClient getHttpJsonOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
TypeDescription
OperationsClient

getOperationsClient()

public final OperationsClient getOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
TypeDescription
OperationsClient

getSettings()

public final ImageAnnotatorSettings getSettings()
Returns
TypeDescription
ImageAnnotatorSettings

getStub()

public ImageAnnotatorStub getStub()
Returns
TypeDescription
ImageAnnotatorStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()