Class ImageAnnotatorClient (2.0.29)

public class ImageAnnotatorClient implements BackgroundResource

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:


 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().

The surface of this class includes several types of Java methods for each of the API's methods:

  1. A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
  2. A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
  3. A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.

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:


 ImageAnnotatorSettings imageAnnotatorSettings =
     ImageAnnotatorSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create(imageAnnotatorSettings);
 

To customize the endpoint:


 ImageAnnotatorSettings imageAnnotatorSettings =
     ImageAnnotatorSettings.newBuilder().setEndpoint(myEndpoint).build();
 ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create(imageAnnotatorSettings);
 

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

Inheritance

java.lang.Object > ImageAnnotatorClient

Implements

BackgroundResource

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

awaitTermination(long duration, TimeUnit unit)

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

batchAnnotateImages(BatchAnnotateImagesRequest request)

public final BatchAnnotateImagesResponse batchAnnotateImages(BatchAnnotateImagesRequest request)

Run image detection and annotation for a batch of images.

Sample code:


 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:


 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:


 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()

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()