tencentcloud-sdk-tiia 1.0.358 → 1.0.361
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 +19 -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: 0f0d6aca19499f0972da4d5c13bd7188e10e1088
|
|
4
|
+
data.tar.gz: 003ad8b9f030b232f40d2d62439386d114da59b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: beb67e62bbc508e420b1c119a844333dd987b2b12e37feeb829f61ad16e3672624e2947b7a5438c73f856f54b6a888ad08a94988a7d733fbaea1edb0f0dda88c
|
|
7
|
+
data.tar.gz: d32336dcfa49e6c16325fd2eb484823fdf4511cc9c13cbdd4e2fd46936ab58a84a67d2300048a5cd0c239b5a1b7f302db1de2d90e4f47f3d3a1370c26cf35add
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.361
|
data/lib/v20190529/models.rb
CHANGED
|
@@ -181,19 +181,28 @@ module TencentCloud
|
|
|
181
181
|
# @type Type: String
|
|
182
182
|
# @param Color: 车辆颜色
|
|
183
183
|
# @type Color: String
|
|
184
|
-
# @param Confidence:
|
|
184
|
+
# @param Confidence: 车系置信度,0-100
|
|
185
185
|
# @type Confidence: Integer
|
|
186
186
|
# @param Year: 年份,没识别出年份的时候返回0
|
|
187
187
|
# @type Year: Integer
|
|
188
188
|
# @param CarLocation: 车辆在图片中的坐标信息
|
|
189
189
|
# @type CarLocation: Array
|
|
190
|
-
# @param PlateContent:
|
|
190
|
+
# @param PlateContent: 车牌信息,仅车辆识别(增强版)支持
|
|
191
191
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
192
192
|
# @type PlateContent: :class:`Tencentcloud::Tiia.v20190529.models.CarPlateContent`
|
|
193
|
+
# @param PlateConfidence: 车牌信息置信度,0-100,仅车辆识别(增强版)支持
|
|
194
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
195
|
+
# @type PlateConfidence: Integer
|
|
196
|
+
# @param TypeConfidence: 车辆类型置信度,0-100,仅车辆识别(增强版)支持
|
|
197
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
198
|
+
# @type TypeConfidence: Integer
|
|
199
|
+
# @param ColorConfidence: 车辆颜色置信度,0-100,仅车辆识别(增强版)支持
|
|
200
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
201
|
+
# @type ColorConfidence: Integer
|
|
193
202
|
|
|
194
|
-
attr_accessor :Serial, :Brand, :Type, :Color, :Confidence, :Year, :CarLocation, :PlateContent
|
|
203
|
+
attr_accessor :Serial, :Brand, :Type, :Color, :Confidence, :Year, :CarLocation, :PlateContent, :PlateConfidence, :TypeConfidence, :ColorConfidence
|
|
195
204
|
|
|
196
|
-
def initialize(serial=nil, brand=nil, type=nil, color=nil, confidence=nil, year=nil, carlocation=nil, platecontent=nil)
|
|
205
|
+
def initialize(serial=nil, brand=nil, type=nil, color=nil, confidence=nil, year=nil, carlocation=nil, platecontent=nil, plateconfidence=nil, typeconfidence=nil, colorconfidence=nil)
|
|
197
206
|
@Serial = serial
|
|
198
207
|
@Brand = brand
|
|
199
208
|
@Type = type
|
|
@@ -202,6 +211,9 @@ module TencentCloud
|
|
|
202
211
|
@Year = year
|
|
203
212
|
@CarLocation = carlocation
|
|
204
213
|
@PlateContent = platecontent
|
|
214
|
+
@PlateConfidence = plateconfidence
|
|
215
|
+
@TypeConfidence = typeconfidence
|
|
216
|
+
@ColorConfidence = colorconfidence
|
|
205
217
|
end
|
|
206
218
|
|
|
207
219
|
def deserialize(params)
|
|
@@ -223,6 +235,9 @@ module TencentCloud
|
|
|
223
235
|
@PlateContent = CarPlateContent.new
|
|
224
236
|
@PlateContent.deserialize(params['PlateContent'])
|
|
225
237
|
end
|
|
238
|
+
@PlateConfidence = params['PlateConfidence']
|
|
239
|
+
@TypeConfidence = params['TypeConfidence']
|
|
240
|
+
@ColorConfidence = params['ColorConfidence']
|
|
226
241
|
end
|
|
227
242
|
end
|
|
228
243
|
|
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: 1.0.
|
|
4
|
+
version: 1.0.361
|
|
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-07-
|
|
11
|
+
date: 2022-07-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|