- 3.50.0 (latest)
- 3.49.0
- 3.47.0
- 3.46.0
- 3.45.0
- 3.44.0
- 3.43.0
- 3.42.0
- 3.41.0
- 3.40.0
- 3.39.0
- 3.38.0
- 3.37.0
- 3.35.0
- 3.34.0
- 3.33.0
- 3.32.0
- 3.31.0
- 3.30.0
- 3.29.0
- 3.28.0
- 3.27.0
- 3.26.0
- 3.25.0
- 3.22.0
- 3.21.0
- 3.20.0
- 3.19.0
- 3.18.0
- 3.17.0
- 3.16.0
- 3.15.0
- 3.14.0
- 3.13.0
- 3.12.0
- 3.11.0
- 3.10.0
- 3.9.0
- 3.7.0
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.0
- 3.2.0
- 3.1.3
- 2.1.4
- 2.0.29
GitHub Repository | Product Reference | REST Documentation | RPC 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().
Method | Description | Method 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.
Callable method variants take no parameters and return 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:
// 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.
Static Methods
create()
public static final ImageAnnotatorClient create()
Constructs an instance of ImageAnnotatorClient with default settings.
Returns | |
---|---|
Type | Description |
ImageAnnotatorClient |
Exceptions | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
settings |
ImageAnnotatorSettings |
Returns | |
---|---|
Type | Description |
ImageAnnotatorClient |
Exceptions | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
stub |
ImageAnnotatorStub |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
settings |
ImageAnnotatorSettings |
ImageAnnotatorClient(ImageAnnotatorStub stub)
protected ImageAnnotatorClient(ImageAnnotatorStub stub)
Parameter | |
---|---|
Name | Description |
stub |
ImageAnnotatorStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Parameters | |
---|---|
Name | Description |
duration |
long |
unit |
TimeUnit |
Returns | |
---|---|
Type | Description |
boolean |
Exceptions | |
---|---|
Type | Description |
InterruptedException |
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 | |
---|---|
Name | Description |
request |
BatchAnnotateImagesRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
requests |
List<AnnotateImageRequest> Required. Individual image annotation requests for this batch. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
UnaryCallable<BatchAnnotateImagesRequest,BatchAnnotateImagesResponse> |
close()
public final void close()
getSettings()
public final ImageAnnotatorSettings getSettings()
Returns | |
---|---|
Type | Description |
ImageAnnotatorSettings |
getStub()
public ImageAnnotatorStub getStub()
Returns | |
---|---|
Type | Description |
ImageAnnotatorStub |
isShutdown()
public boolean isShutdown()
Returns | |
---|---|
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Returns | |
---|---|
Type | Description |
boolean |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()