tencentcloud-sdk-tiia 3.0.397 → 3.0.398
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/lib/VERSION +1 -1
- data/lib/v20190529/models.rb +29 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3aba5fb21c609e72409070e4bab6ef7d474d7980
|
4
|
+
data.tar.gz: 969088744aceb49f38e96be4602065a9fcc41077
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19f540480fce74110b76235bd1f39cf37d4beff79308c3003e397421746aa1ef5bbd563a79d36c242d7a9a9288c9d623bff175ba18225a6961ffb6da99cc3e17
|
7
|
+
data.tar.gz: 419a5c85f8b7ea74b02cf38d02cda1bb6a5f6b0579e34d41759c88f350191ee606bdc65a7dee758e0c1cb23fa364480ae6ce256eed5297d952ccf652fec36461
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.398
|
data/lib/v20190529/models.rb
CHANGED
@@ -150,14 +150,26 @@ module TencentCloud
|
|
150
150
|
# @param PlateLocation: 车牌在图片中的坐标信息。
|
151
151
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
152
152
|
# @type PlateLocation: Array
|
153
|
+
# @param PlateStatus: 判断车牌是否遮挡。
|
154
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
155
|
+
# @type PlateStatus: String
|
156
|
+
# @param PlateStatusConfidence: 车牌遮挡的置信度,0-100。
|
157
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
158
|
+
# @type PlateStatusConfidence: Integer
|
159
|
+
# @param PlateAngle: 车牌角度。
|
160
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
161
|
+
# @type PlateAngle: Float
|
153
162
|
|
154
|
-
attr_accessor :Plate, :Color, :Type, :PlateLocation
|
163
|
+
attr_accessor :Plate, :Color, :Type, :PlateLocation, :PlateStatus, :PlateStatusConfidence, :PlateAngle
|
155
164
|
|
156
|
-
def initialize(plate=nil, color=nil, type=nil, platelocation=nil)
|
165
|
+
def initialize(plate=nil, color=nil, type=nil, platelocation=nil, platestatus=nil, platestatusconfidence=nil, plateangle=nil)
|
157
166
|
@Plate = plate
|
158
167
|
@Color = color
|
159
168
|
@Type = type
|
160
169
|
@PlateLocation = platelocation
|
170
|
+
@PlateStatus = platestatus
|
171
|
+
@PlateStatusConfidence = platestatusconfidence
|
172
|
+
@PlateAngle = plateangle
|
161
173
|
end
|
162
174
|
|
163
175
|
def deserialize(params)
|
@@ -172,6 +184,9 @@ module TencentCloud
|
|
172
184
|
@PlateLocation << coord_tmp
|
173
185
|
end
|
174
186
|
end
|
187
|
+
@PlateStatus = params['PlateStatus']
|
188
|
+
@PlateStatusConfidence = params['PlateStatusConfidence']
|
189
|
+
@PlateAngle = params['PlateAngle']
|
175
190
|
end
|
176
191
|
end
|
177
192
|
|
@@ -203,10 +218,16 @@ module TencentCloud
|
|
203
218
|
# @param ColorConfidence: 车辆颜色置信度,0-100,仅车辆识别(增强版)支持
|
204
219
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
205
220
|
# @type ColorConfidence: Integer
|
221
|
+
# @param Orientation: 车辆朝向,仅车辆识别(增强版)支持
|
222
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
223
|
+
# @type Orientation: String
|
224
|
+
# @param OrientationConfidence: 车辆朝向置信度,0-100,仅车辆识别(增强版)支持
|
225
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
226
|
+
# @type OrientationConfidence: Integer
|
206
227
|
|
207
|
-
attr_accessor :Serial, :Brand, :Type, :Color, :Confidence, :Year, :CarLocation, :PlateContent, :PlateConfidence, :TypeConfidence, :ColorConfidence
|
228
|
+
attr_accessor :Serial, :Brand, :Type, :Color, :Confidence, :Year, :CarLocation, :PlateContent, :PlateConfidence, :TypeConfidence, :ColorConfidence, :Orientation, :OrientationConfidence
|
208
229
|
|
209
|
-
def initialize(serial=nil, brand=nil, type=nil, color=nil, confidence=nil, year=nil, carlocation=nil, platecontent=nil, plateconfidence=nil, typeconfidence=nil, colorconfidence=nil)
|
230
|
+
def initialize(serial=nil, brand=nil, type=nil, color=nil, confidence=nil, year=nil, carlocation=nil, platecontent=nil, plateconfidence=nil, typeconfidence=nil, colorconfidence=nil, orientation=nil, orientationconfidence=nil)
|
210
231
|
@Serial = serial
|
211
232
|
@Brand = brand
|
212
233
|
@Type = type
|
@@ -218,6 +239,8 @@ module TencentCloud
|
|
218
239
|
@PlateConfidence = plateconfidence
|
219
240
|
@TypeConfidence = typeconfidence
|
220
241
|
@ColorConfidence = colorconfidence
|
242
|
+
@Orientation = orientation
|
243
|
+
@OrientationConfidence = orientationconfidence
|
221
244
|
end
|
222
245
|
|
223
246
|
def deserialize(params)
|
@@ -242,6 +265,8 @@ module TencentCloud
|
|
242
265
|
@PlateConfidence = params['PlateConfidence']
|
243
266
|
@TypeConfidence = params['TypeConfidence']
|
244
267
|
@ColorConfidence = params['ColorConfidence']
|
268
|
+
@Orientation = params['Orientation']
|
269
|
+
@OrientationConfidence = params['OrientationConfidence']
|
245
270
|
end
|
246
271
|
end
|
247
272
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tiia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.398
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|