Class ImageAnnotatorGrpc.ImageAnnotatorFutureStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractFutureStub<ImageAnnotatorGrpc.ImageAnnotatorFutureStub>
-
- com.google.cloud.vision.v1p4beta1.ImageAnnotatorGrpc.ImageAnnotatorFutureStub
-
- Enclosing class:
- ImageAnnotatorGrpc
public static final class ImageAnnotatorGrpc.ImageAnnotatorFutureStub extends io.grpc.stub.AbstractFutureStub<ImageAnnotatorGrpc.ImageAnnotatorFutureStub>
A stub to allow clients to do ListenableFuture-style rpc calls to service ImageAnnotator.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.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation>
asyncBatchAnnotateFiles(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.com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation>
asyncBatchAnnotateImages(AsyncBatchAnnotateImagesRequest request)
Run asynchronous image detection and annotation for a list of images.com.google.common.util.concurrent.ListenableFuture<BatchAnnotateFilesResponse>
batchAnnotateFiles(BatchAnnotateFilesRequest request)
Service that performs image detection and annotation for a batch of files.com.google.common.util.concurrent.ListenableFuture<BatchAnnotateImagesResponse>
batchAnnotateImages(BatchAnnotateImagesRequest request)
Run image detection and annotation for a batch of images.protected ImageAnnotatorGrpc.ImageAnnotatorFutureStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
-
-
-
Method Detail
-
build
protected ImageAnnotatorGrpc.ImageAnnotatorFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<ImageAnnotatorGrpc.ImageAnnotatorFutureStub>
-
batchAnnotateImages
public com.google.common.util.concurrent.ListenableFuture<BatchAnnotateImagesResponse> batchAnnotateImages(BatchAnnotateImagesRequest request)
Run image detection and annotation for a batch of images.
-
batchAnnotateFiles
public com.google.common.util.concurrent.ListenableFuture<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.
-
asyncBatchAnnotateImages
public com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation> asyncBatchAnnotateImages(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.
-
asyncBatchAnnotateFiles
public com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation> asyncBatchAnnotateFiles(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).
-
-