[BindServiceMethod(typeof(ImageAnnotator), "BindService")]
public abstract class ImageAnnotator.ImageAnnotatorBaseReference documentation and code samples for the Google Cloud Vision v1 API class ImageAnnotator.ImageAnnotatorBase.
Base class for server-side implementations of ImageAnnotator
Namespace
Google.Cloud.Vision.V1Assembly
Google.Cloud.Vision.V1.dll
Methods
AsyncBatchAnnotateFiles(AsyncBatchAnnotateFilesRequest, ServerCallContext)
public virtual Task<Operation> AsyncBatchAnnotateFiles(AsyncBatchAnnotateFilesRequest request, ServerCallContext context)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).
| Parameters | |
|---|---|
| Name | Description |
request |
AsyncBatchAnnotateFilesRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskOperation |
The response to send back to the client (wrapped by a task). |
AsyncBatchAnnotateImages(AsyncBatchAnnotateImagesRequest, ServerCallContext)
public virtual Task<Operation> AsyncBatchAnnotateImages(AsyncBatchAnnotateImagesRequest request, ServerCallContext context)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.
| Parameters | |
|---|---|
| Name | Description |
request |
AsyncBatchAnnotateImagesRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskOperation |
The response to send back to the client (wrapped by a task). |
BatchAnnotateFiles(BatchAnnotateFilesRequest, ServerCallContext)
public virtual Task<BatchAnnotateFilesResponse> BatchAnnotateFiles(BatchAnnotateFilesRequest request, ServerCallContext context)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.
| Parameters | |
|---|---|
| Name | Description |
request |
BatchAnnotateFilesRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskBatchAnnotateFilesResponse |
The response to send back to the client (wrapped by a task). |
BatchAnnotateImages(BatchAnnotateImagesRequest, ServerCallContext)
public virtual Task<BatchAnnotateImagesResponse> BatchAnnotateImages(BatchAnnotateImagesRequest request, ServerCallContext context)Run image detection and annotation for a batch of images.
| Parameters | |
|---|---|
| Name | Description |
request |
BatchAnnotateImagesRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskBatchAnnotateImagesResponse |
The response to send back to the client (wrapped by a task). |