helpers.js
37.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
"use strict";
// Copyright 2017 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **
Object.defineProperty(exports, "__esModule", { value: true });
exports.call = void 0;
const fs = require("fs");
const is = require("is");
const promisify_1 = require("@google-cloud/promisify");
const gax = require("google-gax");
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const _requestToObject = (request) => {
if (is.string(request)) {
// Is this a URL or a local file?
// Guess based on what the string looks like, and build the full
// request object in the correct format.
if (request.indexOf('://') === -1 || request.indexOf('file://') === 0) {
request = {
image: { source: { filename: request } },
};
}
else {
request = {
image: { source: { imageUri: request } },
};
}
}
else if (Buffer.isBuffer(request)) {
// Drop the buffer one level lower; it will get dealt with later
// in the function. This allows sending <Buffer> and {image: <Buffer>} to
// both work identically.
request = { image: request };
}
return request;
};
const _coerceRequest = (request, callback) => {
// At this point, request must be an object with an `image` key; if not,
// it is an error. If there is no image, throw an exception.
if (!is.object(request) || is.undefined(request.image)) {
return callback(new Error('No image present.'));
}
// If this is a buffer, read it and send the object
// that the Vision API expects.
if (Buffer.isBuffer(request.image)) {
request.image = { content: request.image.toString('base64') };
}
// If the file is specified as a filename and exists on disk, read it
// and coerce it into the base64 content.
if (request.image.source && request.image.source.filename) {
fs.readFile(request.image.source.filename, (err, blob) => {
if (err) {
callback(err);
return;
}
request.image.content = blob.toString('base64');
delete request.image.source;
return callback(null, request);
});
}
else {
return callback(null, request);
}
};
const _createSingleFeatureMethod = (featureValue) => {
return function (request, callOptionsOrCallback, callback) {
// confidence check: If we got a string or buffer, we need this to be
// in object form now, so we can tack on the features list.
//
// Do the minimum required conversion, which can also be guaranteed to
// be synchronous (e.g. no file loading yet; that is handled by
// annotateImage later.
const annotateImageRequest = _requestToObject(request);
// If a callback was provided and options were skipped, normalize
// the argument names.
let callOptions;
if (is.undefined(callback) && is.function(callOptionsOrCallback)) {
callback = callOptionsOrCallback;
callOptions = undefined;
}
else {
callOptions = callOptionsOrCallback;
}
// Add the feature to the request.
annotateImageRequest.features = annotateImageRequest.features || [
{
type: featureValue,
},
];
// If the user submitted explicit features that do not line up with
// the precise method called, throw an exception.
for (const feature of annotateImageRequest.features) {
if (feature.type !== featureValue) {
throw new Error('Setting explicit features is not supported on this method. ' +
'Use the #annotateImage method instead.');
}
}
// Call the underlying #annotateImage method.
return this.annotateImage(annotateImageRequest, callOptions, callback);
};
};
function call(apiVersion) {
const methods = {};
/**
* Annotate a single image with the requested features.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#annotateImage
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object[]} request.features An array of the specific annotation
* features being requested. This should take a form such as:
*
* [{type: vision.types.Feature.Type.FACE_DETECTION},
* {type: vision.types.Feature.Type.WEB_DETECTION}]
*
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {source: {imageUri: 'gs://path/to/image.jpg'}},
* features: [],
* };
* client
* .annotateImage(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.annotateImage = promisify_1.promisify(function (request, callOptionsOrCallback, callback) {
// If a callback was provided and options were skipped, normalize
// the argument names.
let callOptions;
if (is.undefined(callback) && is.function(callOptionsOrCallback)) {
callback = callOptionsOrCallback;
callOptions = undefined;
}
else {
callOptions = callOptionsOrCallback;
}
// If we got a filename for the image, open the file and transform
// it to content.
return _coerceRequest(request, (err, req) => {
if (err) {
return callback(err);
}
// Call the GAPIC batch annotation function.
const requests = { requests: [req] };
return this.batchAnnotateImages(requests, callOptions, (err, r) => {
// If there is an error, handle it.
if (err) {
return callback(err);
}
// We are guaranteed to only have one response element, since we
// only sent one image.
const response = r.responses[0];
// Fire the callback if applicable.
return callback(undefined, response);
});
});
});
const protoFilesRoot = gax.protobuf.Root.fromJSON(
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('../protos/protos.json'));
const features = protoFilesRoot.lookup(`google.cloud.vision.${apiVersion}.Feature.Type`).values;
/**
* Annotate a single image with face detection.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#faceDetection
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .faceDetection(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.faceDetection = promisify_1.promisify(_createSingleFeatureMethod(features.FACE_DETECTION));
/**
* Annotate a single image with landmark detection.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#landmarkDetection
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .landmarkDetection(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.landmarkDetection = promisify_1.promisify(_createSingleFeatureMethod(features.LANDMARK_DETECTION));
/**
* Annotate a single image with logo detection.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#logoDetection
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .logoDetection(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.logoDetection = promisify_1.promisify(_createSingleFeatureMethod(features.LOGO_DETECTION));
/**
* Annotate a single image with label detection.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#labelDetection
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .labelDetection(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.labelDetection = promisify_1.promisify(_createSingleFeatureMethod(features.LABEL_DETECTION));
/**
* Annotate a single image with text detection.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#textDetection
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .textDetection(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.textDetection = promisify_1.promisify(_createSingleFeatureMethod(features.TEXT_DETECTION));
/**
* Annotate a single image with document text detection.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#documentTextDetection
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .documentTextDetection(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.documentTextDetection = promisify_1.promisify(_createSingleFeatureMethod(features.DOCUMENT_TEXT_DETECTION));
/**
* Annotate a single image with safe search detection.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#safeSearchDetection
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .safeSearchDetection(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.safeSearchDetection = promisify_1.promisify(_createSingleFeatureMethod(features.SAFE_SEARCH_DETECTION));
/**
* Annotate a single image with image properties.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#imageProperties
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .imageProperties(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.imageProperties = promisify_1.promisify(_createSingleFeatureMethod(features.IMAGE_PROPERTIES));
/**
* Annotate a single image with crop hints.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#cropHints
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .cropHints(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.cropHints = promisify_1.promisify(_createSingleFeatureMethod(features.CROP_HINTS));
/**
* Annotate a single image with web detection.
*
* @see v1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1.AnnotateImageRequest
*
* @method v1.ImageAnnotatorClient#webDetection
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision');
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .webDetection(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
methods.webDetection = promisify_1.promisify(_createSingleFeatureMethod(features.WEB_DETECTION));
/**
* Annotate a single image with the result from Product Search.
*
* @see v1p3beta1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1p3beta1.AnnotateImageRequest
*
* @method v1p3beta1.ImageAnnotatorClient#productSearch
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1p3beta1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* const vision = require('@google-cloud/vision').v1p3beta1;
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .productSearch(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
if (features.PRODUCT_SEARCH !== undefined) {
methods.productSearch = promisify_1.promisify(_createSingleFeatureMethod(features.PRODUCT_SEARCH));
}
/**
* Annotate a single image with localization vectors.
*
* @see v1p3beta1.ImageAnnotatorClient#batchAnnotateImages
* @see google.cloud.vision.v1p3beta1.AnnotateImageRequest
*
* @method v1p3beta1.ImageAnnotatorClient#objectLocalization
* @param {object|string|Buffer} request A representation of the request
* being sent to the Vision API. This is an
* {@link google.cloud.vision.v1.AnnotateImageRequest AnnotateImageRequest}.
* For simple cases, you may also send a string (the URL or filename of
* the image) or a buffer (the image itself).
* @param {object} request.image A dictionary-like object representing the
* image. This should have a single key (`source`, `content`).
*
* If the key is `source`, the value should be another object containing
* `imageUri` or `filename` as a key and a string as a value.
*
* If the key is `content`, the value should be a Buffer.
* @param {object} [callOptions] Optional parameters. You can override the
* default settings for this call, e.g, timeout, retries, paginations,
* etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/global.html#CallOptions}
* for the details.
* @param {function(?Error, ?object)} [callback] The function which will be
* called with the result of the API call.
*
* The second parameter to the callback is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* @returns {Promise} The promise which resolves to an array. The first
* element of the array is an object representing
* [BatchAnnotateImagesResponse]{@link BatchAnnotateImagesResponse}.
* The promise has a method named "cancel" which cancels the ongoing API
* call.
*
* @example
* // Object localization is only available in v1p3beta1.
* const vision = require('@google-cloud/vision').v1p3beta1;
* const client = new vision.ImageAnnotatorClient();
*
* const request = {
* image: {
* source: {imageUri: 'gs://path/to/image.jpg'}
* }
* };
*
* client
* .objectLocalization(request)
* .then(response => {
* // doThingsWith(response);
* })
* .catch(err => {
* console.error(err);
* });
*/
if (features.OBJECT_LOCALIZATION !== undefined) {
methods.objectLocalization = promisify_1.promisify(_createSingleFeatureMethod(features.OBJECT_LOCALIZATION));
}
return methods;
}
exports.call = call;
//# sourceMappingURL=helpers.js.map