google-cloud-vision-v1 0.3.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +8 -8
- data/LICENSE.md +188 -190
- data/README.md +67 -3
- data/lib/google/cloud/vision/v1/image_annotator/client.rb +21 -27
- data/lib/google/cloud/vision/v1/image_annotator/operations.rb +95 -10
- data/lib/google/cloud/vision/v1/image_annotator_pb.rb +2 -0
- data/lib/google/cloud/vision/v1/image_annotator_services_pb.rb +1 -2
- data/lib/google/cloud/vision/v1/product_search/client.rb +50 -103
- data/lib/google/cloud/vision/v1/product_search/operations.rb +95 -10
- data/lib/google/cloud/vision/v1/product_search_pb.rb +1 -1
- data/lib/google/cloud/vision/v1/product_search_service_services_pb.rb +1 -2
- data/lib/google/cloud/vision/v1/version.rb +1 -1
- data/proto_docs/google/api/field_behavior.rb +12 -0
- data/proto_docs/google/cloud/vision/v1/image_annotator.rb +11 -2
- data/proto_docs/google/cloud/vision/v1/product_search.rb +1 -1
- data/proto_docs/google/cloud/vision/v1/product_search_service.rb +4 -7
- data/proto_docs/google/longrunning/operations.rb +17 -3
- data/proto_docs/google/protobuf/any.rb +5 -2
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/timestamp.rb +10 -1
- data/proto_docs/google/type/color.rb +16 -11
- data/proto_docs/google/type/latlng.rb +2 -2
- metadata +21 -11
@@ -70,7 +70,16 @@ module Google
|
|
70
70
|
# .setNanos((int) ((millis % 1000) * 1000000)).build();
|
71
71
|
#
|
72
72
|
#
|
73
|
-
# Example 5: Compute Timestamp from
|
73
|
+
# Example 5: Compute Timestamp from Java `Instant.now()`.
|
74
|
+
#
|
75
|
+
# Instant now = Instant.now();
|
76
|
+
#
|
77
|
+
# Timestamp timestamp =
|
78
|
+
# Timestamp.newBuilder().setSeconds(now.getEpochSecond())
|
79
|
+
# .setNanos(now.getNano()).build();
|
80
|
+
#
|
81
|
+
#
|
82
|
+
# Example 6: Compute Timestamp from current time in Python.
|
74
83
|
#
|
75
84
|
# timestamp = Timestamp()
|
76
85
|
# timestamp.GetCurrentTime()
|
@@ -21,17 +21,22 @@ module Google
|
|
21
21
|
module Type
|
22
22
|
# Represents a color in the RGBA color space. This representation is designed
|
23
23
|
# for simplicity of conversion to/from color representations in various
|
24
|
-
# languages over compactness
|
25
|
-
# can be trivially provided to the constructor of
|
26
|
-
# can also be trivially provided to UIColor's
|
24
|
+
# languages over compactness. For example, the fields of this representation
|
25
|
+
# can be trivially provided to the constructor of `java.awt.Color` in Java; it
|
26
|
+
# can also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
27
27
|
# method in iOS; and, with just a little work, it can be easily formatted into
|
28
|
-
# a CSS
|
28
|
+
# a CSS `rgba()` string in JavaScript.
|
29
29
|
#
|
30
|
-
#
|
30
|
+
# This reference page doesn't carry information about the absolute color
|
31
|
+
# space
|
31
32
|
# that should be used to interpret the RGB value (e.g. sRGB, Adobe RGB,
|
32
|
-
# DCI-P3, BT.2020, etc.). By default, applications
|
33
|
+
# DCI-P3, BT.2020, etc.). By default, applications should assume the sRGB color
|
33
34
|
# space.
|
34
35
|
#
|
36
|
+
# When color equality needs to be decided, implementations, unless
|
37
|
+
# documented otherwise, treat two colors as equal if all their red,
|
38
|
+
# green, blue, and alpha values each differ by at most 1e-5.
|
39
|
+
#
|
35
40
|
# Example (Java):
|
36
41
|
#
|
37
42
|
# import com.google.type.Color;
|
@@ -117,7 +122,7 @@ module Google
|
|
117
122
|
# var blue = Math.floor(blueFrac * 255);
|
118
123
|
#
|
119
124
|
# if (!('alpha' in rgb_color)) {
|
120
|
-
# return
|
125
|
+
# return rgbToCssColor(red, green, blue);
|
121
126
|
# }
|
122
127
|
#
|
123
128
|
# var alphaFrac = rgb_color.alpha.value || 0.0;
|
@@ -125,7 +130,7 @@ module Google
|
|
125
130
|
# return ['rgba(', rgbParams, ',', alphaFrac, ')'].join('');
|
126
131
|
# };
|
127
132
|
#
|
128
|
-
# var
|
133
|
+
# var rgbToCssColor = function(red, green, blue) {
|
129
134
|
# var rgbNumber = new Number((red << 16) | (green << 8) | blue);
|
130
135
|
# var hexString = rgbNumber.toString(16);
|
131
136
|
# var missingZeros = 6 - hexString.length;
|
@@ -152,14 +157,14 @@ module Google
|
|
152
157
|
# The fraction of this color that should be applied to the pixel. That is,
|
153
158
|
# the final pixel color is defined by the equation:
|
154
159
|
#
|
155
|
-
# pixel color = alpha * (this color) + (1.0 - alpha) * (background color)
|
160
|
+
# `pixel color = alpha * (this color) + (1.0 - alpha) * (background color)`
|
156
161
|
#
|
157
162
|
# This means that a value of 1.0 corresponds to a solid color, whereas
|
158
163
|
# a value of 0.0 corresponds to a completely transparent color. This
|
159
164
|
# uses a wrapper message rather than a simple float scalar so that it is
|
160
165
|
# possible to distinguish between a default value and the value being unset.
|
161
|
-
# If omitted, this color object is
|
162
|
-
# (as if the alpha value had been explicitly given
|
166
|
+
# If omitted, this color object is rendered as a solid color
|
167
|
+
# (as if the alpha value had been explicitly given a value of 1.0).
|
163
168
|
class Color
|
164
169
|
include ::Google::Protobuf::MessageExts
|
165
170
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -19,8 +19,8 @@
|
|
19
19
|
|
20
20
|
module Google
|
21
21
|
module Type
|
22
|
-
# An object
|
23
|
-
# of doubles
|
22
|
+
# An object that represents a latitude/longitude pair. This is expressed as a
|
23
|
+
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
24
24
|
# specified otherwise, this must conform to the
|
25
25
|
# <a href="http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf">WGS84
|
26
26
|
# standard</a>. Values must be within normalized ranges.
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-vision-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.5'
|
20
|
+
- - "<"
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.5'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: google-cloud-errors
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,14 +50,14 @@ dependencies:
|
|
44
50
|
requirements:
|
45
51
|
- - "~>"
|
46
52
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.
|
53
|
+
version: 1.25.1
|
48
54
|
type: :development
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
51
57
|
requirements:
|
52
58
|
- - "~>"
|
53
59
|
- !ruby/object:Gem::Version
|
54
|
-
version: 1.
|
60
|
+
version: 1.25.1
|
55
61
|
- !ruby/object:Gem::Dependency
|
56
62
|
name: minitest
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -152,7 +158,10 @@ dependencies:
|
|
152
158
|
version: '0.9'
|
153
159
|
description: Cloud Vision API allows developers to easily integrate vision detection
|
154
160
|
features within applications, including image labeling, face and landmark detection,
|
155
|
-
optical character recognition (OCR), and tagging of explicit content.
|
161
|
+
optical character recognition (OCR), and tagging of explicit content. Note that
|
162
|
+
google-cloud-vision-v1 is a version-specific client library. For most uses, we recommend
|
163
|
+
installing the main client library google-cloud-vision instead. See the readme for
|
164
|
+
more details.
|
156
165
|
email: googleapis-packages@google.com
|
157
166
|
executables: []
|
158
167
|
extensions: []
|
@@ -195,6 +204,7 @@ files:
|
|
195
204
|
- proto_docs/google/cloud/vision/v1/web_detection.rb
|
196
205
|
- proto_docs/google/longrunning/operations.rb
|
197
206
|
- proto_docs/google/protobuf/any.rb
|
207
|
+
- proto_docs/google/protobuf/duration.rb
|
198
208
|
- proto_docs/google/protobuf/empty.rb
|
199
209
|
- proto_docs/google/protobuf/field_mask.rb
|
200
210
|
- proto_docs/google/protobuf/timestamp.rb
|
@@ -214,14 +224,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
214
224
|
requirements:
|
215
225
|
- - ">="
|
216
226
|
- !ruby/object:Gem::Version
|
217
|
-
version: '2.
|
227
|
+
version: '2.5'
|
218
228
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
219
229
|
requirements:
|
220
230
|
- - ">="
|
221
231
|
- !ruby/object:Gem::Version
|
222
232
|
version: '0'
|
223
233
|
requirements: []
|
224
|
-
rubygems_version: 3.2.
|
234
|
+
rubygems_version: 3.2.17
|
225
235
|
signing_key:
|
226
236
|
specification_version: 4
|
227
237
|
summary: API Client library for the Cloud Vision V1 API
|