tencentcloud-sdk-tiia 3.0.397 → 3.0.401
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 +33 -5
- 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: 2c4c6f4005f3fef161a9a5ecdf005e240cc40e19
|
|
4
|
+
data.tar.gz: bb4124a62d64335c9a3397b3e18136d16eb978b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8988246dff6be963dbdafe1b523cc8d1905c3fa51a936ef9e1cf0364af877af6d27459594fdcca9bbc5f040b7773e65f3b552094e65cb7f79b1a7b011f299300
|
|
7
|
+
data.tar.gz: 1b91111a9d0408d247428a73e53e028e0cb1e897ef717b5fd573c090e3943363c68d567211f12546b0b27f4686c48e10ca0e00b69b95534bea4cd401e9f6c8bd
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.401
|
data/lib/v20190529/models.rb
CHANGED
|
@@ -144,20 +144,35 @@ module TencentCloud
|
|
|
144
144
|
# @param Color: 车牌颜色。
|
|
145
145
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
146
146
|
# @type Color: String
|
|
147
|
-
# @param Type:
|
|
147
|
+
# @param Type: 车牌类型,包含:0普通蓝牌,1双层黄牌,2单层黄牌,3新能源车牌,4使馆车牌,5领馆车牌,6澳门车牌,7香港车牌,8警用车牌,9教练车牌,10武警车牌,11军用车牌 -2遮挡污损模糊车牌/异常 其他无牌
|
|
148
|
+
# 注意:
|
|
149
|
+
# 此字段可能返回 null,表示取不到有效值。
|
|
150
|
+
# 此字段结果遮挡污损模糊车牌/异常:包含PlateStatus参数的“遮挡污损模糊车牌”,针对车牌异常,建议参考此字段,更全面
|
|
148
151
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
149
152
|
# @type Type: String
|
|
150
153
|
# @param PlateLocation: 车牌在图片中的坐标信息。
|
|
151
154
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
152
155
|
# @type PlateLocation: Array
|
|
156
|
+
# @param PlateStatus: 判断车牌是否遮挡:“遮挡污损模糊车牌”和"正常车牌"。
|
|
157
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
158
|
+
# @type PlateStatus: String
|
|
159
|
+
# @param PlateStatusConfidence: 车牌遮挡的置信度,0-100。
|
|
160
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
161
|
+
# @type PlateStatusConfidence: Integer
|
|
162
|
+
# @param PlateAngle: 车牌角度。
|
|
163
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
164
|
+
# @type PlateAngle: Float
|
|
153
165
|
|
|
154
|
-
attr_accessor :Plate, :Color, :Type, :PlateLocation
|
|
166
|
+
attr_accessor :Plate, :Color, :Type, :PlateLocation, :PlateStatus, :PlateStatusConfidence, :PlateAngle
|
|
155
167
|
|
|
156
|
-
def initialize(plate=nil, color=nil, type=nil, platelocation=nil)
|
|
168
|
+
def initialize(plate=nil, color=nil, type=nil, platelocation=nil, platestatus=nil, platestatusconfidence=nil, plateangle=nil)
|
|
157
169
|
@Plate = plate
|
|
158
170
|
@Color = color
|
|
159
171
|
@Type = type
|
|
160
172
|
@PlateLocation = platelocation
|
|
173
|
+
@PlateStatus = platestatus
|
|
174
|
+
@PlateStatusConfidence = platestatusconfidence
|
|
175
|
+
@PlateAngle = plateangle
|
|
161
176
|
end
|
|
162
177
|
|
|
163
178
|
def deserialize(params)
|
|
@@ -172,6 +187,9 @@ module TencentCloud
|
|
|
172
187
|
@PlateLocation << coord_tmp
|
|
173
188
|
end
|
|
174
189
|
end
|
|
190
|
+
@PlateStatus = params['PlateStatus']
|
|
191
|
+
@PlateStatusConfidence = params['PlateStatusConfidence']
|
|
192
|
+
@PlateAngle = params['PlateAngle']
|
|
175
193
|
end
|
|
176
194
|
end
|
|
177
195
|
|
|
@@ -203,10 +221,16 @@ module TencentCloud
|
|
|
203
221
|
# @param ColorConfidence: 车辆颜色置信度,0-100,仅车辆识别(增强版)支持
|
|
204
222
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
205
223
|
# @type ColorConfidence: Integer
|
|
224
|
+
# @param Orientation: 车辆朝向,仅车辆识别(增强版)支持
|
|
225
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
226
|
+
# @type Orientation: String
|
|
227
|
+
# @param OrientationConfidence: 车辆朝向置信度,0-100,仅车辆识别(增强版)支持
|
|
228
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
229
|
+
# @type OrientationConfidence: Integer
|
|
206
230
|
|
|
207
|
-
attr_accessor :Serial, :Brand, :Type, :Color, :Confidence, :Year, :CarLocation, :PlateContent, :PlateConfidence, :TypeConfidence, :ColorConfidence
|
|
231
|
+
attr_accessor :Serial, :Brand, :Type, :Color, :Confidence, :Year, :CarLocation, :PlateContent, :PlateConfidence, :TypeConfidence, :ColorConfidence, :Orientation, :OrientationConfidence
|
|
208
232
|
|
|
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)
|
|
233
|
+
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
234
|
@Serial = serial
|
|
211
235
|
@Brand = brand
|
|
212
236
|
@Type = type
|
|
@@ -218,6 +242,8 @@ module TencentCloud
|
|
|
218
242
|
@PlateConfidence = plateconfidence
|
|
219
243
|
@TypeConfidence = typeconfidence
|
|
220
244
|
@ColorConfidence = colorconfidence
|
|
245
|
+
@Orientation = orientation
|
|
246
|
+
@OrientationConfidence = orientationconfidence
|
|
221
247
|
end
|
|
222
248
|
|
|
223
249
|
def deserialize(params)
|
|
@@ -242,6 +268,8 @@ module TencentCloud
|
|
|
242
268
|
@PlateConfidence = params['PlateConfidence']
|
|
243
269
|
@TypeConfidence = params['TypeConfidence']
|
|
244
270
|
@ColorConfidence = params['ColorConfidence']
|
|
271
|
+
@Orientation = params['Orientation']
|
|
272
|
+
@OrientationConfidence = params['OrientationConfidence']
|
|
245
273
|
end
|
|
246
274
|
end
|
|
247
275
|
|
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.401
|
|
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-
|
|
11
|
+
date: 2022-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|