0.0.20240509 • Published 16 hours ago

@maxim_mazurok/gapi.client.vision-v1 v0.0.20240509

Weekly downloads
-
License
MIT
Repository
github
Last release
16 hours ago

TypeScript typings for Cloud Vision API v1

Integrates Google Vision features, including image labeling, face, logo, and landmark detection, optical character recognition (OCR), and detection of explicit content, into applications. For detailed description please check documentation.

Installing

Install typings for Cloud Vision API:

npm install @types/gapi.client.vision-v1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load(
  'https://vision.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.vision
  }
);
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('vision', 'v1', () => {
  // now we can use:
  // gapi.client.vision
});

Don't forget to authenticate your client before sending any request to resources:

// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [
    // See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
    'https://www.googleapis.com/auth/cloud-platform',

    // Apply machine learning models to understand and label images
    'https://www.googleapis.com/auth/cloud-vision',
  ],
  immediate = true;
// ...

gapi.auth.authorize(
  {client_id: client_id, scope: scope, immediate: immediate},
  authResult => {
    if (authResult && !authResult.error) {
      /* handle successful authorization */
    } else {
      /* handle authorization error */
    }
  }
);

After that you can use Cloud Vision API resources:

/*
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.
*/
await gapi.client.vision.files.annotate({});

/*
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).
*/
await gapi.client.vision.files.asyncBatchAnnotate({});

/*
Run image detection and annotation for a batch of images.
*/
await gapi.client.vision.images.annotate({});

/*
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.
*/
await gapi.client.vision.images.asyncBatchAnnotate({});

/*
Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
*/
await gapi.client.vision.operations.cancel({name: 'name'});

/*
Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
*/
await gapi.client.vision.operations.delete({name: 'name'});

/*
Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.
*/
await gapi.client.vision.operations.get({name: 'name'});

/*
Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.
*/
await gapi.client.vision.operations.list({name: 'name'});
0.0.20240509

16 hours ago

0.0.20240503

4 days ago

0.0.20240426

10 days ago

0.0.20240419

18 days ago

0.0.20240412

25 days ago

0.0.20240325

2 months ago

0.0.20240315

2 months ago

0.0.20240314

2 months ago

0.0.20240312

2 months ago

0.0.20240313

2 months ago

0.0.20240301

2 months ago

0.0.20240223

3 months ago

0.0.20240216

3 months ago

0.0.20240212

3 months ago

0.0.20240207

3 months ago

0.0.20240204

3 months ago

0.0.20240201

3 months ago

0.0.20240127

3 months ago

0.0.20240119

4 months ago

0.0.20240113

4 months ago

0.0.20240105

4 months ago

0.0.20231219

5 months ago

0.0.20231212

5 months ago

0.0.20231208

5 months ago

0.0.20231206

5 months ago

0.0.20230811

9 months ago

0.0.20231110

6 months ago

0.0.20230728

9 months ago

0.0.20230721

10 months ago

0.0.20230804

9 months ago

0.0.20230922

8 months ago

0.0.20231020

7 months ago

0.0.20231102

6 months ago

0.0.20230915

8 months ago

0.0.20230717

10 months ago

0.0.20231006

7 months ago

0.0.20230710

10 months ago

0.0.20230908

8 months ago

0.0.20230822

9 months ago

0.0.20230901

8 months ago

0.0.20231003

7 months ago

0.0.20230630

10 months ago

0.0.20230623

11 months ago

0.0.20230519

12 months ago

0.0.20230608

11 months ago

0.0.20230601

11 months ago

0.0.20230501

1 year ago

0.0.20230505

1 year ago

0.0.20230414

1 year ago

0.0.20230314

1 year ago

0.0.20230317

1 year ago

0.0.20230421

1 year ago

0.0.20230303

1 year ago

0.0.20230407

1 year ago

0.0.20230328

1 year ago

0.0.20230203

1 year ago

0.0.20230210

1 year ago

0.0.20230106

1 year ago

0.0.20230118

1 year ago

0.0.20221214

1 year ago

0.0.20221112

1 year ago

0.0.20230113

1 year ago

0.0.20221205

1 year ago

0.0.20221028

2 years ago

0.0.20221004

2 years ago

0.0.20221014

2 years ago

0.0.20221021

2 years ago

0.0.20220926

2 years ago

0.0.20220819

2 years ago

0.0.20220826

2 years ago

0.0.20220915

2 years ago

0.0.20220904

2 years ago

0.0.20220805

2 years ago