tencentcloud-sdk-bda 3.0.1074 → 3.0.1161
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/v20200324/client.rb +1 -340
- data/lib/v20200324/models.rb +58 -1409
- metadata +3 -3
data/lib/v20200324/models.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# Copyright (c) 2017-
|
|
3
|
+
# Copyright (c) 2017-2025 Tencent. All Rights Reserved.
|
|
4
4
|
#
|
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
6
|
# you may not use this file except in compliance with the License.
|
|
@@ -17,417 +17,6 @@
|
|
|
17
17
|
module TencentCloud
|
|
18
18
|
module Bda
|
|
19
19
|
module V20200324
|
|
20
|
-
# 人体年龄信息。
|
|
21
|
-
# AttributesType 不含 Age 或检测超过 5 个人体时,此参数仍返回,但不具备参考意义。
|
|
22
|
-
class Age < TencentCloud::Common::AbstractModel
|
|
23
|
-
# @param Type: 人体年龄信息,返回值为以下集合中的一个{小孩,青年,中年,老年}。
|
|
24
|
-
# @type Type: String
|
|
25
|
-
# @param Probability: Type识别概率值,[0.0,1.0],代表判断正确的概率。如0.8则代表有Type值有80%概率正确。
|
|
26
|
-
# @type Probability: Float
|
|
27
|
-
|
|
28
|
-
attr_accessor :Type, :Probability
|
|
29
|
-
|
|
30
|
-
def initialize(type=nil, probability=nil)
|
|
31
|
-
@Type = type
|
|
32
|
-
@Probability = probability
|
|
33
|
-
end
|
|
34
|
-
|
|
35
|
-
def deserialize(params)
|
|
36
|
-
@Type = params['Type']
|
|
37
|
-
@Probability = params['Probability']
|
|
38
|
-
end
|
|
39
|
-
end
|
|
40
|
-
|
|
41
|
-
# 返回人体属性选项,此值不填则为不需要返回,可以选择的值为以下六个。
|
|
42
|
-
# Age、Bag、Gender、Orientation、UpperBodyCloth、LowerBodyCloth,详细的解释请看对象描述
|
|
43
|
-
# 需注意本接口最多返回面积最大的 5 个人体属性信息,超过 5 个人体(第 6 个及以后的人体)的人体属性不具备参考意义。
|
|
44
|
-
class AttributesOptions < TencentCloud::Common::AbstractModel
|
|
45
|
-
# @param Age: 返回年龄信息
|
|
46
|
-
# @type Age: Boolean
|
|
47
|
-
# @param Bag: 返回随身挎包信息
|
|
48
|
-
# @type Bag: Boolean
|
|
49
|
-
# @param Gender: 返回性别信息
|
|
50
|
-
# @type Gender: Boolean
|
|
51
|
-
# @param Orientation: 返回朝向信息
|
|
52
|
-
# @type Orientation: Boolean
|
|
53
|
-
# @param UpperBodyCloth: 返回上装信息
|
|
54
|
-
# @type UpperBodyCloth: Boolean
|
|
55
|
-
# @param LowerBodyCloth: 返回下装信息
|
|
56
|
-
# @type LowerBodyCloth: Boolean
|
|
57
|
-
|
|
58
|
-
attr_accessor :Age, :Bag, :Gender, :Orientation, :UpperBodyCloth, :LowerBodyCloth
|
|
59
|
-
|
|
60
|
-
def initialize(age=nil, bag=nil, gender=nil, orientation=nil, upperbodycloth=nil, lowerbodycloth=nil)
|
|
61
|
-
@Age = age
|
|
62
|
-
@Bag = bag
|
|
63
|
-
@Gender = gender
|
|
64
|
-
@Orientation = orientation
|
|
65
|
-
@UpperBodyCloth = upperbodycloth
|
|
66
|
-
@LowerBodyCloth = lowerbodycloth
|
|
67
|
-
end
|
|
68
|
-
|
|
69
|
-
def deserialize(params)
|
|
70
|
-
@Age = params['Age']
|
|
71
|
-
@Bag = params['Bag']
|
|
72
|
-
@Gender = params['Gender']
|
|
73
|
-
@Orientation = params['Orientation']
|
|
74
|
-
@UpperBodyCloth = params['UpperBodyCloth']
|
|
75
|
-
@LowerBodyCloth = params['LowerBodyCloth']
|
|
76
|
-
end
|
|
77
|
-
end
|
|
78
|
-
|
|
79
|
-
# 人体是否挎包。
|
|
80
|
-
# AttributesType 不含 Bag 或检测超过 5 个人体时,此参数仍返回,但不具备参考意义。
|
|
81
|
-
class Bag < TencentCloud::Common::AbstractModel
|
|
82
|
-
# @param Type: 挎包信息,返回值为以下集合中的一个{双肩包, 斜挎包, 手拎包, 无包}。
|
|
83
|
-
# @type Type: String
|
|
84
|
-
# @param Probability: Type识别概率值,[0.0,1.0],代表判断正确的概率。如0.8则代表有Type值有80%概率正确。
|
|
85
|
-
# @type Probability: Float
|
|
86
|
-
|
|
87
|
-
attr_accessor :Type, :Probability
|
|
88
|
-
|
|
89
|
-
def initialize(type=nil, probability=nil)
|
|
90
|
-
@Type = type
|
|
91
|
-
@Probability = probability
|
|
92
|
-
end
|
|
93
|
-
|
|
94
|
-
def deserialize(params)
|
|
95
|
-
@Type = params['Type']
|
|
96
|
-
@Probability = params['Probability']
|
|
97
|
-
end
|
|
98
|
-
end
|
|
99
|
-
|
|
100
|
-
# 图中检测出的人体属性信息。
|
|
101
|
-
class BodyAttributeInfo < TencentCloud::Common::AbstractModel
|
|
102
|
-
# @param Age: 人体年龄信息。
|
|
103
|
-
# AttributesType 不含 Age 或检测超过 5 个人体时,此参数仍返回,但不具备参考意义。
|
|
104
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
105
|
-
# @type Age: :class:`Tencentcloud::Bda.v20200324.models.Age`
|
|
106
|
-
# @param Bag: 人体是否挎包。
|
|
107
|
-
# AttributesType 不含 Bag 或检测超过 5 个人体时,此参数仍返回,但不具备参考意义。
|
|
108
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
109
|
-
# @type Bag: :class:`Tencentcloud::Bda.v20200324.models.Bag`
|
|
110
|
-
# @param Gender: 人体性别信息。
|
|
111
|
-
# AttributesType 不含 Gender 或检测超过 5 个人体时,此参数仍返回,但不具备参考意义。
|
|
112
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
113
|
-
# @type Gender: :class:`Tencentcloud::Bda.v20200324.models.Gender`
|
|
114
|
-
# @param Orientation: 人体朝向信息。
|
|
115
|
-
# AttributesType 不含 UpperBodyCloth 或检测超过 5 个人体时,此参数仍返回,但不具备参考意义。
|
|
116
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
117
|
-
# @type Orientation: :class:`Tencentcloud::Bda.v20200324.models.Orientation`
|
|
118
|
-
# @param UpperBodyCloth: 人体上衣属性信息。
|
|
119
|
-
# AttributesType 不含 Orientation 或检测超过 5 个人体时,此参数仍返回,但不具备参考意义。
|
|
120
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
121
|
-
# @type UpperBodyCloth: :class:`Tencentcloud::Bda.v20200324.models.UpperBodyCloth`
|
|
122
|
-
# @param LowerBodyCloth: 人体下衣属性信息。
|
|
123
|
-
# AttributesType 不含 LowerBodyCloth 或检测超过 5 个人体时,此参数仍返回,但不具备参考意义。
|
|
124
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
125
|
-
# @type LowerBodyCloth: :class:`Tencentcloud::Bda.v20200324.models.LowerBodyCloth`
|
|
126
|
-
|
|
127
|
-
attr_accessor :Age, :Bag, :Gender, :Orientation, :UpperBodyCloth, :LowerBodyCloth
|
|
128
|
-
|
|
129
|
-
def initialize(age=nil, bag=nil, gender=nil, orientation=nil, upperbodycloth=nil, lowerbodycloth=nil)
|
|
130
|
-
@Age = age
|
|
131
|
-
@Bag = bag
|
|
132
|
-
@Gender = gender
|
|
133
|
-
@Orientation = orientation
|
|
134
|
-
@UpperBodyCloth = upperbodycloth
|
|
135
|
-
@LowerBodyCloth = lowerbodycloth
|
|
136
|
-
end
|
|
137
|
-
|
|
138
|
-
def deserialize(params)
|
|
139
|
-
unless params['Age'].nil?
|
|
140
|
-
@Age = Age.new
|
|
141
|
-
@Age.deserialize(params['Age'])
|
|
142
|
-
end
|
|
143
|
-
unless params['Bag'].nil?
|
|
144
|
-
@Bag = Bag.new
|
|
145
|
-
@Bag.deserialize(params['Bag'])
|
|
146
|
-
end
|
|
147
|
-
unless params['Gender'].nil?
|
|
148
|
-
@Gender = Gender.new
|
|
149
|
-
@Gender.deserialize(params['Gender'])
|
|
150
|
-
end
|
|
151
|
-
unless params['Orientation'].nil?
|
|
152
|
-
@Orientation = Orientation.new
|
|
153
|
-
@Orientation.deserialize(params['Orientation'])
|
|
154
|
-
end
|
|
155
|
-
unless params['UpperBodyCloth'].nil?
|
|
156
|
-
@UpperBodyCloth = UpperBodyCloth.new
|
|
157
|
-
@UpperBodyCloth.deserialize(params['UpperBodyCloth'])
|
|
158
|
-
end
|
|
159
|
-
unless params['LowerBodyCloth'].nil?
|
|
160
|
-
@LowerBodyCloth = LowerBodyCloth.new
|
|
161
|
-
@LowerBodyCloth.deserialize(params['LowerBodyCloth'])
|
|
162
|
-
end
|
|
163
|
-
end
|
|
164
|
-
end
|
|
165
|
-
|
|
166
|
-
# 图中检测出来的人体框。
|
|
167
|
-
class BodyDetectResult < TencentCloud::Common::AbstractModel
|
|
168
|
-
# @param Confidence: 检测出的人体置信度。
|
|
169
|
-
# 误识率百分之十对应的阈值是0.14;误识率百分之五对应的阈值是0.32;误识率百分之二对应的阈值是0.62;误识率百分之一对应的阈值是0.81。
|
|
170
|
-
# 通常情况建议使用阈值0.32,可适用大多数情况。
|
|
171
|
-
# @type Confidence: Float
|
|
172
|
-
# @param BodyRect: 图中检测出来的人体框
|
|
173
|
-
# @type BodyRect: :class:`Tencentcloud::Bda.v20200324.models.BodyRect`
|
|
174
|
-
# @param BodyAttributeInfo: 图中检测出的人体属性信息。
|
|
175
|
-
# @type BodyAttributeInfo: :class:`Tencentcloud::Bda.v20200324.models.BodyAttributeInfo`
|
|
176
|
-
|
|
177
|
-
attr_accessor :Confidence, :BodyRect, :BodyAttributeInfo
|
|
178
|
-
|
|
179
|
-
def initialize(confidence=nil, bodyrect=nil, bodyattributeinfo=nil)
|
|
180
|
-
@Confidence = confidence
|
|
181
|
-
@BodyRect = bodyrect
|
|
182
|
-
@BodyAttributeInfo = bodyattributeinfo
|
|
183
|
-
end
|
|
184
|
-
|
|
185
|
-
def deserialize(params)
|
|
186
|
-
@Confidence = params['Confidence']
|
|
187
|
-
unless params['BodyRect'].nil?
|
|
188
|
-
@BodyRect = BodyRect.new
|
|
189
|
-
@BodyRect.deserialize(params['BodyRect'])
|
|
190
|
-
end
|
|
191
|
-
unless params['BodyAttributeInfo'].nil?
|
|
192
|
-
@BodyAttributeInfo = BodyAttributeInfo.new
|
|
193
|
-
@BodyAttributeInfo.deserialize(params['BodyAttributeInfo'])
|
|
194
|
-
end
|
|
195
|
-
end
|
|
196
|
-
end
|
|
197
|
-
|
|
198
|
-
# 人体框和人体关键点信息。
|
|
199
|
-
class BodyJointsResult < TencentCloud::Common::AbstractModel
|
|
200
|
-
# @param BoundBox: 图中检测出来的人体框。
|
|
201
|
-
# @type BoundBox: :class:`Tencentcloud::Bda.v20200324.models.BoundRect`
|
|
202
|
-
# @param BodyJoints: 14个人体关键点的坐标,人体关键点详见KeyPointInfo。
|
|
203
|
-
# @type BodyJoints: Array
|
|
204
|
-
# @param Confidence: 检测出的人体置信度,0-1之间,数值越高越准确。
|
|
205
|
-
# @type Confidence: Float
|
|
206
|
-
|
|
207
|
-
attr_accessor :BoundBox, :BodyJoints, :Confidence
|
|
208
|
-
|
|
209
|
-
def initialize(boundbox=nil, bodyjoints=nil, confidence=nil)
|
|
210
|
-
@BoundBox = boundbox
|
|
211
|
-
@BodyJoints = bodyjoints
|
|
212
|
-
@Confidence = confidence
|
|
213
|
-
end
|
|
214
|
-
|
|
215
|
-
def deserialize(params)
|
|
216
|
-
unless params['BoundBox'].nil?
|
|
217
|
-
@BoundBox = BoundRect.new
|
|
218
|
-
@BoundBox.deserialize(params['BoundBox'])
|
|
219
|
-
end
|
|
220
|
-
unless params['BodyJoints'].nil?
|
|
221
|
-
@BodyJoints = []
|
|
222
|
-
params['BodyJoints'].each do |i|
|
|
223
|
-
keypointinfo_tmp = KeyPointInfo.new
|
|
224
|
-
keypointinfo_tmp.deserialize(i)
|
|
225
|
-
@BodyJoints << keypointinfo_tmp
|
|
226
|
-
end
|
|
227
|
-
end
|
|
228
|
-
@Confidence = params['Confidence']
|
|
229
|
-
end
|
|
230
|
-
end
|
|
231
|
-
|
|
232
|
-
# 人体框
|
|
233
|
-
class BodyRect < TencentCloud::Common::AbstractModel
|
|
234
|
-
# @param X: 人体框左上角横坐标。
|
|
235
|
-
# @type X: Integer
|
|
236
|
-
# @param Y: 人体框左上角纵坐标。
|
|
237
|
-
# @type Y: Integer
|
|
238
|
-
# @param Width: 人体宽度。
|
|
239
|
-
# @type Width: Integer
|
|
240
|
-
# @param Height: 人体高度。
|
|
241
|
-
# @type Height: Integer
|
|
242
|
-
|
|
243
|
-
attr_accessor :X, :Y, :Width, :Height
|
|
244
|
-
|
|
245
|
-
def initialize(x=nil, y=nil, width=nil, height=nil)
|
|
246
|
-
@X = x
|
|
247
|
-
@Y = y
|
|
248
|
-
@Width = width
|
|
249
|
-
@Height = height
|
|
250
|
-
end
|
|
251
|
-
|
|
252
|
-
def deserialize(params)
|
|
253
|
-
@X = params['X']
|
|
254
|
-
@Y = params['Y']
|
|
255
|
-
@Width = params['Width']
|
|
256
|
-
@Height = params['Height']
|
|
257
|
-
end
|
|
258
|
-
end
|
|
259
|
-
|
|
260
|
-
# 人体框
|
|
261
|
-
class BoundRect < TencentCloud::Common::AbstractModel
|
|
262
|
-
# @param X: 人体框左上角横坐标。
|
|
263
|
-
# @type X: Integer
|
|
264
|
-
# @param Y: 人体框左上角纵坐标。
|
|
265
|
-
# @type Y: Integer
|
|
266
|
-
# @param Width: 人体宽度。
|
|
267
|
-
# @type Width: Integer
|
|
268
|
-
# @param Height: 人体高度。
|
|
269
|
-
# @type Height: Integer
|
|
270
|
-
|
|
271
|
-
attr_accessor :X, :Y, :Width, :Height
|
|
272
|
-
|
|
273
|
-
def initialize(x=nil, y=nil, width=nil, height=nil)
|
|
274
|
-
@X = x
|
|
275
|
-
@Y = y
|
|
276
|
-
@Width = width
|
|
277
|
-
@Height = height
|
|
278
|
-
end
|
|
279
|
-
|
|
280
|
-
def deserialize(params)
|
|
281
|
-
@X = params['X']
|
|
282
|
-
@Y = params['Y']
|
|
283
|
-
@Width = params['Width']
|
|
284
|
-
@Height = params['Height']
|
|
285
|
-
end
|
|
286
|
-
end
|
|
287
|
-
|
|
288
|
-
# 识别出的最相似候选人。
|
|
289
|
-
class Candidate < TencentCloud::Common::AbstractModel
|
|
290
|
-
# @param PersonId: 人员ID。
|
|
291
|
-
# @type PersonId: String
|
|
292
|
-
# @param TraceId: 人体动作轨迹ID。
|
|
293
|
-
# @type TraceId: String
|
|
294
|
-
# @param Score: 候选者的匹配得分。
|
|
295
|
-
# 十万人体库下,误识率百分之五对应的分数为70分;误识率百分之二对应的分数为80分;误识率百分之一对应的分数为90分。
|
|
296
|
-
|
|
297
|
-
# 二十万人体库下,误识率百分之五对应的分数为80分;误识率百分之二对应的分数为90分;误识率百分之一对应的分数为95分。
|
|
298
|
-
|
|
299
|
-
# 通常情况建议使用分数80分(保召回)。若希望获得较高精度,建议使用分数90分(保准确)。
|
|
300
|
-
# @type Score: Float
|
|
301
|
-
|
|
302
|
-
attr_accessor :PersonId, :TraceId, :Score
|
|
303
|
-
|
|
304
|
-
def initialize(personid=nil, traceid=nil, score=nil)
|
|
305
|
-
@PersonId = personid
|
|
306
|
-
@TraceId = traceid
|
|
307
|
-
@Score = score
|
|
308
|
-
end
|
|
309
|
-
|
|
310
|
-
def deserialize(params)
|
|
311
|
-
@PersonId = params['PersonId']
|
|
312
|
-
@TraceId = params['TraceId']
|
|
313
|
-
@Score = params['Score']
|
|
314
|
-
end
|
|
315
|
-
end
|
|
316
|
-
|
|
317
|
-
# CreateGroup请求参数结构体
|
|
318
|
-
class CreateGroupRequest < TencentCloud::Common::AbstractModel
|
|
319
|
-
# @param GroupName: 人体库名称,[1,60]个字符,可修改,不可重复。
|
|
320
|
-
# @type GroupName: String
|
|
321
|
-
# @param GroupId: 人体库 ID,不可修改,不可重复。支持英文、数字、-%@#&_,长度限制64B。
|
|
322
|
-
# @type GroupId: String
|
|
323
|
-
# @param Tag: 人体库信息备注,[0,40]个字符。
|
|
324
|
-
# @type Tag: String
|
|
325
|
-
# @param BodyModelVersion: 人体识别所用的算法模型版本。
|
|
326
|
-
# 目前入参仅支持 “1.0”1个输入。 默认为"1.0"。
|
|
327
|
-
# 不同算法模型版本对应的人体识别算法不同,新版本的整体效果会优于旧版本,后续我们将推出更新版本。
|
|
328
|
-
# @type BodyModelVersion: String
|
|
329
|
-
|
|
330
|
-
attr_accessor :GroupName, :GroupId, :Tag, :BodyModelVersion
|
|
331
|
-
|
|
332
|
-
def initialize(groupname=nil, groupid=nil, tag=nil, bodymodelversion=nil)
|
|
333
|
-
@GroupName = groupname
|
|
334
|
-
@GroupId = groupid
|
|
335
|
-
@Tag = tag
|
|
336
|
-
@BodyModelVersion = bodymodelversion
|
|
337
|
-
end
|
|
338
|
-
|
|
339
|
-
def deserialize(params)
|
|
340
|
-
@GroupName = params['GroupName']
|
|
341
|
-
@GroupId = params['GroupId']
|
|
342
|
-
@Tag = params['Tag']
|
|
343
|
-
@BodyModelVersion = params['BodyModelVersion']
|
|
344
|
-
end
|
|
345
|
-
end
|
|
346
|
-
|
|
347
|
-
# CreateGroup返回参数结构体
|
|
348
|
-
class CreateGroupResponse < TencentCloud::Common::AbstractModel
|
|
349
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
350
|
-
# @type RequestId: String
|
|
351
|
-
|
|
352
|
-
attr_accessor :RequestId
|
|
353
|
-
|
|
354
|
-
def initialize(requestid=nil)
|
|
355
|
-
@RequestId = requestid
|
|
356
|
-
end
|
|
357
|
-
|
|
358
|
-
def deserialize(params)
|
|
359
|
-
@RequestId = params['RequestId']
|
|
360
|
-
end
|
|
361
|
-
end
|
|
362
|
-
|
|
363
|
-
# CreatePerson请求参数结构体
|
|
364
|
-
class CreatePersonRequest < TencentCloud::Common::AbstractModel
|
|
365
|
-
# @param GroupId: 待加入的人员库ID。
|
|
366
|
-
# @type GroupId: String
|
|
367
|
-
# @param PersonName: 人员名称。[1,60]个字符,可修改,可重复。
|
|
368
|
-
# @type PersonName: String
|
|
369
|
-
# @param PersonId: 人员ID,单个腾讯云账号下不可修改,不可重复。
|
|
370
|
-
# 支持英文、数字、-%@#&_,,长度限制64B。
|
|
371
|
-
# @type PersonId: String
|
|
372
|
-
# @param Trace: 人体动作轨迹信息。
|
|
373
|
-
# @type Trace: :class:`Tencentcloud::Bda.v20200324.models.Trace`
|
|
374
|
-
|
|
375
|
-
attr_accessor :GroupId, :PersonName, :PersonId, :Trace
|
|
376
|
-
|
|
377
|
-
def initialize(groupid=nil, personname=nil, personid=nil, trace=nil)
|
|
378
|
-
@GroupId = groupid
|
|
379
|
-
@PersonName = personname
|
|
380
|
-
@PersonId = personid
|
|
381
|
-
@Trace = trace
|
|
382
|
-
end
|
|
383
|
-
|
|
384
|
-
def deserialize(params)
|
|
385
|
-
@GroupId = params['GroupId']
|
|
386
|
-
@PersonName = params['PersonName']
|
|
387
|
-
@PersonId = params['PersonId']
|
|
388
|
-
unless params['Trace'].nil?
|
|
389
|
-
@Trace = Trace.new
|
|
390
|
-
@Trace.deserialize(params['Trace'])
|
|
391
|
-
end
|
|
392
|
-
end
|
|
393
|
-
end
|
|
394
|
-
|
|
395
|
-
# CreatePerson返回参数结构体
|
|
396
|
-
class CreatePersonResponse < TencentCloud::Common::AbstractModel
|
|
397
|
-
# @param TraceId: 人员动作轨迹唯一标识。
|
|
398
|
-
# @type TraceId: String
|
|
399
|
-
# @param BodyModelVersion: 人体识别所用的算法模型版本。
|
|
400
|
-
# @type BodyModelVersion: String
|
|
401
|
-
# @param InputRetCode: 输入的人体动作轨迹图片中的合法性校验结果。
|
|
402
|
-
# 只有为0时结果才有意义。
|
|
403
|
-
# -1001: 输入图片不合法。-1002: 输入图片不能构成动作轨迹。
|
|
404
|
-
# @type InputRetCode: Integer
|
|
405
|
-
# @param InputRetCodeDetails: 输入的人体动作轨迹图片中的合法性校验结果详情。
|
|
406
|
-
# -1101:图片无效,-1102:url不合法。-1103:图片过大。-1104:图片下载失败。-1105:图片解码失败。-1109:图片分辨率过高。-2023:动作轨迹中有非同人图片。-2024: 动作轨迹提取失败。-2025: 人体检测失败。
|
|
407
|
-
# RetCode 的顺序和入参中Images 或 Urls 的顺序一致。
|
|
408
|
-
# @type InputRetCodeDetails: Array
|
|
409
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
410
|
-
# @type RequestId: String
|
|
411
|
-
|
|
412
|
-
attr_accessor :TraceId, :BodyModelVersion, :InputRetCode, :InputRetCodeDetails, :RequestId
|
|
413
|
-
|
|
414
|
-
def initialize(traceid=nil, bodymodelversion=nil, inputretcode=nil, inputretcodedetails=nil, requestid=nil)
|
|
415
|
-
@TraceId = traceid
|
|
416
|
-
@BodyModelVersion = bodymodelversion
|
|
417
|
-
@InputRetCode = inputretcode
|
|
418
|
-
@InputRetCodeDetails = inputretcodedetails
|
|
419
|
-
@RequestId = requestid
|
|
420
|
-
end
|
|
421
|
-
|
|
422
|
-
def deserialize(params)
|
|
423
|
-
@TraceId = params['TraceId']
|
|
424
|
-
@BodyModelVersion = params['BodyModelVersion']
|
|
425
|
-
@InputRetCode = params['InputRetCode']
|
|
426
|
-
@InputRetCodeDetails = params['InputRetCodeDetails']
|
|
427
|
-
@RequestId = params['RequestId']
|
|
428
|
-
end
|
|
429
|
-
end
|
|
430
|
-
|
|
431
20
|
# CreateSegmentationTask请求参数结构体
|
|
432
21
|
class CreateSegmentationTaskRequest < TencentCloud::Common::AbstractModel
|
|
433
22
|
# @param VideoUrl: 需要分割的视频URL,可外网访问。
|
|
@@ -448,557 +37,98 @@ module TencentCloud
|
|
|
448
37
|
end
|
|
449
38
|
|
|
450
39
|
def deserialize(params)
|
|
451
|
-
@VideoUrl = params['VideoUrl']
|
|
452
|
-
@BackgroundImageUrl = params['BackgroundImageUrl']
|
|
453
|
-
@Config = params['Config']
|
|
454
|
-
end
|
|
455
|
-
end
|
|
456
|
-
|
|
457
|
-
# CreateSegmentationTask返回参数结构体
|
|
458
|
-
class CreateSegmentationTaskResponse < TencentCloud::Common::AbstractModel
|
|
459
|
-
# @param TaskID: 任务标识ID,可以用与追溯任务状态,查看任务结果
|
|
460
|
-
# @type TaskID: String
|
|
461
|
-
# @param EstimatedProcessingTime: 预估处理时间,单位为秒
|
|
462
|
-
# @type EstimatedProcessingTime: Float
|
|
463
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
464
|
-
# @type RequestId: String
|
|
465
|
-
|
|
466
|
-
attr_accessor :TaskID, :EstimatedProcessingTime, :RequestId
|
|
467
|
-
|
|
468
|
-
def initialize(taskid=nil, estimatedprocessingtime=nil, requestid=nil)
|
|
469
|
-
@TaskID = taskid
|
|
470
|
-
@EstimatedProcessingTime = estimatedprocessingtime
|
|
471
|
-
@RequestId = requestid
|
|
472
|
-
end
|
|
473
|
-
|
|
474
|
-
def deserialize(params)
|
|
475
|
-
@TaskID = params['TaskID']
|
|
476
|
-
@EstimatedProcessingTime = params['EstimatedProcessingTime']
|
|
477
|
-
@RequestId = params['RequestId']
|
|
478
|
-
end
|
|
479
|
-
end
|
|
480
|
-
|
|
481
|
-
# CreateTrace请求参数结构体
|
|
482
|
-
class CreateTraceRequest < TencentCloud::Common::AbstractModel
|
|
483
|
-
# @param PersonId: 人员ID。
|
|
484
|
-
# @type PersonId: String
|
|
485
|
-
# @param Trace: 人体动作轨迹信息。
|
|
486
|
-
# @type Trace: :class:`Tencentcloud::Bda.v20200324.models.Trace`
|
|
487
|
-
|
|
488
|
-
attr_accessor :PersonId, :Trace
|
|
489
|
-
|
|
490
|
-
def initialize(personid=nil, trace=nil)
|
|
491
|
-
@PersonId = personid
|
|
492
|
-
@Trace = trace
|
|
493
|
-
end
|
|
494
|
-
|
|
495
|
-
def deserialize(params)
|
|
496
|
-
@PersonId = params['PersonId']
|
|
497
|
-
unless params['Trace'].nil?
|
|
498
|
-
@Trace = Trace.new
|
|
499
|
-
@Trace.deserialize(params['Trace'])
|
|
500
|
-
end
|
|
501
|
-
end
|
|
502
|
-
end
|
|
503
|
-
|
|
504
|
-
# CreateTrace返回参数结构体
|
|
505
|
-
class CreateTraceResponse < TencentCloud::Common::AbstractModel
|
|
506
|
-
# @param TraceId: 人员动作轨迹唯一标识。
|
|
507
|
-
# @type TraceId: String
|
|
508
|
-
# @param BodyModelVersion: 人体识别所用的算法模型版本。
|
|
509
|
-
# @type BodyModelVersion: String
|
|
510
|
-
# @param InputRetCode: 输入的人体动作轨迹图片中的合法性校验结果。
|
|
511
|
-
# 只有为0时结果才有意义。
|
|
512
|
-
# -1001: 输入图片不合法。-1002: 输入图片不能构成轨迹。
|
|
513
|
-
# @type InputRetCode: Integer
|
|
514
|
-
# @param InputRetCodeDetails: 输入的人体动作轨迹图片中的合法性校验结果详情。
|
|
515
|
-
# -1101:图片无效,-1102:url不合法。-1103:图片过大。-1104:图片下载失败。-1105:图片解码失败。-1109:图片分辨率过高。-2023:动作轨迹中有非同人图片。-2024: 动作轨迹提取失败。-2025: 人体检测失败。
|
|
516
|
-
# @type InputRetCodeDetails: Array
|
|
517
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
518
|
-
# @type RequestId: String
|
|
519
|
-
|
|
520
|
-
attr_accessor :TraceId, :BodyModelVersion, :InputRetCode, :InputRetCodeDetails, :RequestId
|
|
521
|
-
|
|
522
|
-
def initialize(traceid=nil, bodymodelversion=nil, inputretcode=nil, inputretcodedetails=nil, requestid=nil)
|
|
523
|
-
@TraceId = traceid
|
|
524
|
-
@BodyModelVersion = bodymodelversion
|
|
525
|
-
@InputRetCode = inputretcode
|
|
526
|
-
@InputRetCodeDetails = inputretcodedetails
|
|
527
|
-
@RequestId = requestid
|
|
528
|
-
end
|
|
529
|
-
|
|
530
|
-
def deserialize(params)
|
|
531
|
-
@TraceId = params['TraceId']
|
|
532
|
-
@BodyModelVersion = params['BodyModelVersion']
|
|
533
|
-
@InputRetCode = params['InputRetCode']
|
|
534
|
-
@InputRetCodeDetails = params['InputRetCodeDetails']
|
|
535
|
-
@RequestId = params['RequestId']
|
|
536
|
-
end
|
|
537
|
-
end
|
|
538
|
-
|
|
539
|
-
# DeleteGroup请求参数结构体
|
|
540
|
-
class DeleteGroupRequest < TencentCloud::Common::AbstractModel
|
|
541
|
-
# @param GroupId: 人体库ID。
|
|
542
|
-
# @type GroupId: String
|
|
543
|
-
|
|
544
|
-
attr_accessor :GroupId
|
|
545
|
-
|
|
546
|
-
def initialize(groupid=nil)
|
|
547
|
-
@GroupId = groupid
|
|
548
|
-
end
|
|
549
|
-
|
|
550
|
-
def deserialize(params)
|
|
551
|
-
@GroupId = params['GroupId']
|
|
552
|
-
end
|
|
553
|
-
end
|
|
554
|
-
|
|
555
|
-
# DeleteGroup返回参数结构体
|
|
556
|
-
class DeleteGroupResponse < TencentCloud::Common::AbstractModel
|
|
557
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
558
|
-
# @type RequestId: String
|
|
559
|
-
|
|
560
|
-
attr_accessor :RequestId
|
|
561
|
-
|
|
562
|
-
def initialize(requestid=nil)
|
|
563
|
-
@RequestId = requestid
|
|
564
|
-
end
|
|
565
|
-
|
|
566
|
-
def deserialize(params)
|
|
567
|
-
@RequestId = params['RequestId']
|
|
568
|
-
end
|
|
569
|
-
end
|
|
570
|
-
|
|
571
|
-
# DeletePerson请求参数结构体
|
|
572
|
-
class DeletePersonRequest < TencentCloud::Common::AbstractModel
|
|
573
|
-
# @param PersonId: 人员ID。
|
|
574
|
-
# @type PersonId: String
|
|
575
|
-
|
|
576
|
-
attr_accessor :PersonId
|
|
577
|
-
|
|
578
|
-
def initialize(personid=nil)
|
|
579
|
-
@PersonId = personid
|
|
580
|
-
end
|
|
581
|
-
|
|
582
|
-
def deserialize(params)
|
|
583
|
-
@PersonId = params['PersonId']
|
|
584
|
-
end
|
|
585
|
-
end
|
|
586
|
-
|
|
587
|
-
# DeletePerson返回参数结构体
|
|
588
|
-
class DeletePersonResponse < TencentCloud::Common::AbstractModel
|
|
589
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
590
|
-
# @type RequestId: String
|
|
591
|
-
|
|
592
|
-
attr_accessor :RequestId
|
|
593
|
-
|
|
594
|
-
def initialize(requestid=nil)
|
|
595
|
-
@RequestId = requestid
|
|
596
|
-
end
|
|
597
|
-
|
|
598
|
-
def deserialize(params)
|
|
599
|
-
@RequestId = params['RequestId']
|
|
600
|
-
end
|
|
601
|
-
end
|
|
602
|
-
|
|
603
|
-
# DescribeSegmentationTask请求参数结构体
|
|
604
|
-
class DescribeSegmentationTaskRequest < TencentCloud::Common::AbstractModel
|
|
605
|
-
# @param TaskID: 在提交分割任务成功时返回的任务标识ID。
|
|
606
|
-
# @type TaskID: String
|
|
607
|
-
|
|
608
|
-
attr_accessor :TaskID
|
|
609
|
-
|
|
610
|
-
def initialize(taskid=nil)
|
|
611
|
-
@TaskID = taskid
|
|
612
|
-
end
|
|
613
|
-
|
|
614
|
-
def deserialize(params)
|
|
615
|
-
@TaskID = params['TaskID']
|
|
616
|
-
end
|
|
617
|
-
end
|
|
618
|
-
|
|
619
|
-
# DescribeSegmentationTask返回参数结构体
|
|
620
|
-
class DescribeSegmentationTaskResponse < TencentCloud::Common::AbstractModel
|
|
621
|
-
# @param TaskStatus: 当前任务状态:
|
|
622
|
-
# QUEUING 排队中
|
|
623
|
-
# PROCESSING 处理中
|
|
624
|
-
# FINISHED 处理完成
|
|
625
|
-
# @type TaskStatus: String
|
|
626
|
-
# @param ResultVideoUrl: 分割后视频URL, 存储于腾讯云COS
|
|
627
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
628
|
-
# @type ResultVideoUrl: String
|
|
629
|
-
# @param ResultVideoMD5: 分割后视频MD5,用于校验
|
|
630
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
631
|
-
# @type ResultVideoMD5: String
|
|
632
|
-
# @param VideoBasicInformation: 视频基本信息
|
|
633
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
634
|
-
# @type VideoBasicInformation: :class:`Tencentcloud::Bda.v20200324.models.VideoBasicInformation`
|
|
635
|
-
# @param ErrorMsg: 分割任务错误信息
|
|
636
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
637
|
-
# @type ErrorMsg: String
|
|
638
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
639
|
-
# @type RequestId: String
|
|
640
|
-
|
|
641
|
-
attr_accessor :TaskStatus, :ResultVideoUrl, :ResultVideoMD5, :VideoBasicInformation, :ErrorMsg, :RequestId
|
|
642
|
-
|
|
643
|
-
def initialize(taskstatus=nil, resultvideourl=nil, resultvideomd5=nil, videobasicinformation=nil, errormsg=nil, requestid=nil)
|
|
644
|
-
@TaskStatus = taskstatus
|
|
645
|
-
@ResultVideoUrl = resultvideourl
|
|
646
|
-
@ResultVideoMD5 = resultvideomd5
|
|
647
|
-
@VideoBasicInformation = videobasicinformation
|
|
648
|
-
@ErrorMsg = errormsg
|
|
649
|
-
@RequestId = requestid
|
|
650
|
-
end
|
|
651
|
-
|
|
652
|
-
def deserialize(params)
|
|
653
|
-
@TaskStatus = params['TaskStatus']
|
|
654
|
-
@ResultVideoUrl = params['ResultVideoUrl']
|
|
655
|
-
@ResultVideoMD5 = params['ResultVideoMD5']
|
|
656
|
-
unless params['VideoBasicInformation'].nil?
|
|
657
|
-
@VideoBasicInformation = VideoBasicInformation.new
|
|
658
|
-
@VideoBasicInformation.deserialize(params['VideoBasicInformation'])
|
|
659
|
-
end
|
|
660
|
-
@ErrorMsg = params['ErrorMsg']
|
|
661
|
-
@RequestId = params['RequestId']
|
|
662
|
-
end
|
|
663
|
-
end
|
|
664
|
-
|
|
665
|
-
# DetectBodyJoints请求参数结构体
|
|
666
|
-
class DetectBodyJointsRequest < TencentCloud::Common::AbstractModel
|
|
667
|
-
# @param Image: 图片 base64 数据,base64 编码后大小不可超过5M。
|
|
668
|
-
# 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
|
669
|
-
# @type Image: String
|
|
670
|
-
# @param Url: 图片的 Url 。对应图片 base64 编码后大小不可超过5M。
|
|
671
|
-
# Url、Image必须提供一个,如果都提供,只使用 Url。
|
|
672
|
-
# 图片存储于腾讯云的Url可保障更高下载速度和稳定性,建议图片存储于腾讯云。
|
|
673
|
-
# 非腾讯云存储的Url速度和稳定性可能受一定影响。
|
|
674
|
-
# 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
|
675
|
-
# @type Url: String
|
|
676
|
-
# @param LocalBodySwitch: 人体局部关键点识别,开启后对人体局部图(例如部分身体部位)进行关键点识别,输出人体关键点坐标,默认不开启
|
|
677
|
-
|
|
678
|
-
# 注意:若开启人体局部图片关键点识别,则BoundBox、Confidence返回为空。
|
|
679
|
-
# @type LocalBodySwitch: Boolean
|
|
680
|
-
|
|
681
|
-
attr_accessor :Image, :Url, :LocalBodySwitch
|
|
682
|
-
|
|
683
|
-
def initialize(image=nil, url=nil, localbodyswitch=nil)
|
|
684
|
-
@Image = image
|
|
685
|
-
@Url = url
|
|
686
|
-
@LocalBodySwitch = localbodyswitch
|
|
687
|
-
end
|
|
688
|
-
|
|
689
|
-
def deserialize(params)
|
|
690
|
-
@Image = params['Image']
|
|
691
|
-
@Url = params['Url']
|
|
692
|
-
@LocalBodySwitch = params['LocalBodySwitch']
|
|
693
|
-
end
|
|
694
|
-
end
|
|
695
|
-
|
|
696
|
-
# DetectBodyJoints返回参数结构体
|
|
697
|
-
class DetectBodyJointsResponse < TencentCloud::Common::AbstractModel
|
|
698
|
-
# @param BodyJointsResults: 图中检测出的人体框和人体关键点, 包含14个人体关键点的坐标,建议根据人体框置信度筛选出合格的人体;
|
|
699
|
-
# @type BodyJointsResults: Array
|
|
700
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
701
|
-
# @type RequestId: String
|
|
702
|
-
|
|
703
|
-
attr_accessor :BodyJointsResults, :RequestId
|
|
704
|
-
|
|
705
|
-
def initialize(bodyjointsresults=nil, requestid=nil)
|
|
706
|
-
@BodyJointsResults = bodyjointsresults
|
|
707
|
-
@RequestId = requestid
|
|
708
|
-
end
|
|
709
|
-
|
|
710
|
-
def deserialize(params)
|
|
711
|
-
unless params['BodyJointsResults'].nil?
|
|
712
|
-
@BodyJointsResults = []
|
|
713
|
-
params['BodyJointsResults'].each do |i|
|
|
714
|
-
bodyjointsresult_tmp = BodyJointsResult.new
|
|
715
|
-
bodyjointsresult_tmp.deserialize(i)
|
|
716
|
-
@BodyJointsResults << bodyjointsresult_tmp
|
|
717
|
-
end
|
|
718
|
-
end
|
|
719
|
-
@RequestId = params['RequestId']
|
|
720
|
-
end
|
|
721
|
-
end
|
|
722
|
-
|
|
723
|
-
# DetectBody请求参数结构体
|
|
724
|
-
class DetectBodyRequest < TencentCloud::Common::AbstractModel
|
|
725
|
-
# @param Image: 人体图片 Base64 数据。
|
|
726
|
-
# 图片 base64 编码后大小不可超过5M。
|
|
727
|
-
# 图片分辨率不得超过 1920 * 1080 。
|
|
728
|
-
# 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
|
729
|
-
# @type Image: String
|
|
730
|
-
# @param MaxBodyNum: 最多检测的人体数目,默认值为1(仅检测图片中面积最大的那个人体); 最大值10 ,检测图片中面积最大的10个人体。
|
|
731
|
-
# @type MaxBodyNum: Integer
|
|
732
|
-
# @param Url: 人体图片 Url 。
|
|
733
|
-
# Url、Image必须提供一个,如果都提供,只使用 Url。
|
|
734
|
-
# 图片 base64 编码后大小不可超过5M。
|
|
735
|
-
# 图片分辨率不得超过 1920 * 1080 。
|
|
736
|
-
# 图片存储于腾讯云的Url可保障更高下载速度和稳定性,建议图片存储于腾讯云。
|
|
737
|
-
# 非腾讯云存储的Url速度和稳定性可能受一定影响。
|
|
738
|
-
# 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
|
739
|
-
# @type Url: String
|
|
740
|
-
# @param AttributesOptions: 是否返回年龄、性别、朝向等属性。
|
|
741
|
-
# 可选项有 Age、Bag、Gender、UpperBodyCloth、LowerBodyCloth、Orientation。
|
|
742
|
-
# 如果此参数为空则为不需要返回。
|
|
743
|
-
# 需要将属性组成一个用逗号分隔的字符串,属性之间的顺序没有要求。
|
|
744
|
-
# 关于各属性的详细描述,参见下文出参。
|
|
745
|
-
# 最多返回面积最大的 5 个人体属性信息,超过 5 个人体(第 6 个及以后的人体)的 BodyAttributesInfo 不具备参考意义。
|
|
746
|
-
# @type AttributesOptions: :class:`Tencentcloud::Bda.v20200324.models.AttributesOptions`
|
|
747
|
-
|
|
748
|
-
attr_accessor :Image, :MaxBodyNum, :Url, :AttributesOptions
|
|
749
|
-
|
|
750
|
-
def initialize(image=nil, maxbodynum=nil, url=nil, attributesoptions=nil)
|
|
751
|
-
@Image = image
|
|
752
|
-
@MaxBodyNum = maxbodynum
|
|
753
|
-
@Url = url
|
|
754
|
-
@AttributesOptions = attributesoptions
|
|
755
|
-
end
|
|
756
|
-
|
|
757
|
-
def deserialize(params)
|
|
758
|
-
@Image = params['Image']
|
|
759
|
-
@MaxBodyNum = params['MaxBodyNum']
|
|
760
|
-
@Url = params['Url']
|
|
761
|
-
unless params['AttributesOptions'].nil?
|
|
762
|
-
@AttributesOptions = AttributesOptions.new
|
|
763
|
-
@AttributesOptions.deserialize(params['AttributesOptions'])
|
|
764
|
-
end
|
|
765
|
-
end
|
|
766
|
-
end
|
|
767
|
-
|
|
768
|
-
# DetectBody返回参数结构体
|
|
769
|
-
class DetectBodyResponse < TencentCloud::Common::AbstractModel
|
|
770
|
-
# @param BodyDetectResults: 图中检测出来的人体框。
|
|
771
|
-
# @type BodyDetectResults: Array
|
|
772
|
-
# @param BodyModelVersion: 人体识别所用的算法模型版本。
|
|
773
|
-
# @type BodyModelVersion: String
|
|
774
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
775
|
-
# @type RequestId: String
|
|
776
|
-
|
|
777
|
-
attr_accessor :BodyDetectResults, :BodyModelVersion, :RequestId
|
|
778
|
-
|
|
779
|
-
def initialize(bodydetectresults=nil, bodymodelversion=nil, requestid=nil)
|
|
780
|
-
@BodyDetectResults = bodydetectresults
|
|
781
|
-
@BodyModelVersion = bodymodelversion
|
|
782
|
-
@RequestId = requestid
|
|
783
|
-
end
|
|
784
|
-
|
|
785
|
-
def deserialize(params)
|
|
786
|
-
unless params['BodyDetectResults'].nil?
|
|
787
|
-
@BodyDetectResults = []
|
|
788
|
-
params['BodyDetectResults'].each do |i|
|
|
789
|
-
bodydetectresult_tmp = BodyDetectResult.new
|
|
790
|
-
bodydetectresult_tmp.deserialize(i)
|
|
791
|
-
@BodyDetectResults << bodydetectresult_tmp
|
|
792
|
-
end
|
|
793
|
-
end
|
|
794
|
-
@BodyModelVersion = params['BodyModelVersion']
|
|
795
|
-
@RequestId = params['RequestId']
|
|
796
|
-
end
|
|
797
|
-
end
|
|
798
|
-
|
|
799
|
-
# 人体性别信息。
|
|
800
|
-
# AttributesType 不含 Gender 或检测超过 5 个人体时,此参数仍返回,但不具备参考意义。
|
|
801
|
-
class Gender < TencentCloud::Common::AbstractModel
|
|
802
|
-
# @param Type: 性别信息,返回值为以下集合中的一个 {男性, 女性}
|
|
803
|
-
# @type Type: String
|
|
804
|
-
# @param Probability: Type识别概率值,[0.0,1.0],代表判断正确的概率。如0.8则代表有Type值有80%概率正确。
|
|
805
|
-
# @type Probability: Float
|
|
806
|
-
|
|
807
|
-
attr_accessor :Type, :Probability
|
|
808
|
-
|
|
809
|
-
def initialize(type=nil, probability=nil)
|
|
810
|
-
@Type = type
|
|
811
|
-
@Probability = probability
|
|
812
|
-
end
|
|
813
|
-
|
|
814
|
-
def deserialize(params)
|
|
815
|
-
@Type = params['Type']
|
|
816
|
-
@Probability = params['Probability']
|
|
817
|
-
end
|
|
818
|
-
end
|
|
819
|
-
|
|
820
|
-
# GetGroupList请求参数结构体
|
|
821
|
-
class GetGroupListRequest < TencentCloud::Common::AbstractModel
|
|
822
|
-
# @param Offset: 起始序号,默认值为0。
|
|
823
|
-
# @type Offset: Integer
|
|
824
|
-
# @param Limit: 返回数量,默认值为10,最大值为1000。
|
|
825
|
-
# @type Limit: Integer
|
|
826
|
-
|
|
827
|
-
attr_accessor :Offset, :Limit
|
|
828
|
-
|
|
829
|
-
def initialize(offset=nil, limit=nil)
|
|
830
|
-
@Offset = offset
|
|
831
|
-
@Limit = limit
|
|
832
|
-
end
|
|
833
|
-
|
|
834
|
-
def deserialize(params)
|
|
835
|
-
@Offset = params['Offset']
|
|
836
|
-
@Limit = params['Limit']
|
|
837
|
-
end
|
|
838
|
-
end
|
|
839
|
-
|
|
840
|
-
# GetGroupList返回参数结构体
|
|
841
|
-
class GetGroupListResponse < TencentCloud::Common::AbstractModel
|
|
842
|
-
# @param GroupInfos: 返回的人体库信息。
|
|
843
|
-
# @type GroupInfos: Array
|
|
844
|
-
# @param GroupNum: 人体库总数量。
|
|
845
|
-
# @type GroupNum: Integer
|
|
846
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
847
|
-
# @type RequestId: String
|
|
848
|
-
|
|
849
|
-
attr_accessor :GroupInfos, :GroupNum, :RequestId
|
|
850
|
-
|
|
851
|
-
def initialize(groupinfos=nil, groupnum=nil, requestid=nil)
|
|
852
|
-
@GroupInfos = groupinfos
|
|
853
|
-
@GroupNum = groupnum
|
|
854
|
-
@RequestId = requestid
|
|
855
|
-
end
|
|
856
|
-
|
|
857
|
-
def deserialize(params)
|
|
858
|
-
unless params['GroupInfos'].nil?
|
|
859
|
-
@GroupInfos = []
|
|
860
|
-
params['GroupInfos'].each do |i|
|
|
861
|
-
groupinfo_tmp = GroupInfo.new
|
|
862
|
-
groupinfo_tmp.deserialize(i)
|
|
863
|
-
@GroupInfos << groupinfo_tmp
|
|
864
|
-
end
|
|
865
|
-
end
|
|
866
|
-
@GroupNum = params['GroupNum']
|
|
867
|
-
@RequestId = params['RequestId']
|
|
868
|
-
end
|
|
869
|
-
end
|
|
870
|
-
|
|
871
|
-
# GetPersonList请求参数结构体
|
|
872
|
-
class GetPersonListRequest < TencentCloud::Common::AbstractModel
|
|
873
|
-
# @param GroupId: 人体库ID。
|
|
874
|
-
# @type GroupId: String
|
|
875
|
-
# @param Offset: 起始序号,默认值为0。
|
|
876
|
-
# @type Offset: Integer
|
|
877
|
-
# @param Limit: 返回数量,默认值为10,最大值为1000。
|
|
878
|
-
# @type Limit: Integer
|
|
879
|
-
|
|
880
|
-
attr_accessor :GroupId, :Offset, :Limit
|
|
881
|
-
|
|
882
|
-
def initialize(groupid=nil, offset=nil, limit=nil)
|
|
883
|
-
@GroupId = groupid
|
|
884
|
-
@Offset = offset
|
|
885
|
-
@Limit = limit
|
|
886
|
-
end
|
|
887
|
-
|
|
888
|
-
def deserialize(params)
|
|
889
|
-
@GroupId = params['GroupId']
|
|
890
|
-
@Offset = params['Offset']
|
|
891
|
-
@Limit = params['Limit']
|
|
40
|
+
@VideoUrl = params['VideoUrl']
|
|
41
|
+
@BackgroundImageUrl = params['BackgroundImageUrl']
|
|
42
|
+
@Config = params['Config']
|
|
892
43
|
end
|
|
893
44
|
end
|
|
894
45
|
|
|
895
|
-
#
|
|
896
|
-
class
|
|
897
|
-
# @param
|
|
898
|
-
# @type
|
|
899
|
-
# @param
|
|
900
|
-
# @type
|
|
901
|
-
# @param BodyModelVersion: 人体识别所用的算法模型版本。
|
|
902
|
-
# @type BodyModelVersion: String
|
|
46
|
+
# CreateSegmentationTask返回参数结构体
|
|
47
|
+
class CreateSegmentationTaskResponse < TencentCloud::Common::AbstractModel
|
|
48
|
+
# @param TaskID: 任务标识ID,可以用与追溯任务状态,查看任务结果
|
|
49
|
+
# @type TaskID: String
|
|
50
|
+
# @param EstimatedProcessingTime: 预估处理时间,单位为秒
|
|
51
|
+
# @type EstimatedProcessingTime: Float
|
|
903
52
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
904
53
|
# @type RequestId: String
|
|
905
54
|
|
|
906
|
-
attr_accessor :
|
|
55
|
+
attr_accessor :TaskID, :EstimatedProcessingTime, :RequestId
|
|
907
56
|
|
|
908
|
-
def initialize(
|
|
909
|
-
@
|
|
910
|
-
@
|
|
911
|
-
@BodyModelVersion = bodymodelversion
|
|
57
|
+
def initialize(taskid=nil, estimatedprocessingtime=nil, requestid=nil)
|
|
58
|
+
@TaskID = taskid
|
|
59
|
+
@EstimatedProcessingTime = estimatedprocessingtime
|
|
912
60
|
@RequestId = requestid
|
|
913
61
|
end
|
|
914
62
|
|
|
915
63
|
def deserialize(params)
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
params['PersonInfos'].each do |i|
|
|
919
|
-
personinfo_tmp = PersonInfo.new
|
|
920
|
-
personinfo_tmp.deserialize(i)
|
|
921
|
-
@PersonInfos << personinfo_tmp
|
|
922
|
-
end
|
|
923
|
-
end
|
|
924
|
-
@PersonNum = params['PersonNum']
|
|
925
|
-
@BodyModelVersion = params['BodyModelVersion']
|
|
64
|
+
@TaskID = params['TaskID']
|
|
65
|
+
@EstimatedProcessingTime = params['EstimatedProcessingTime']
|
|
926
66
|
@RequestId = params['RequestId']
|
|
927
67
|
end
|
|
928
68
|
end
|
|
929
69
|
|
|
930
|
-
#
|
|
931
|
-
class
|
|
70
|
+
# DescribeSegmentationTask请求参数结构体
|
|
71
|
+
class DescribeSegmentationTaskRequest < TencentCloud::Common::AbstractModel
|
|
72
|
+
# @param TaskID: 在提交分割任务成功时返回的任务标识ID。
|
|
73
|
+
# @type TaskID: String
|
|
932
74
|
|
|
75
|
+
attr_accessor :TaskID
|
|
933
76
|
|
|
934
|
-
def initialize()
|
|
77
|
+
def initialize(taskid=nil)
|
|
78
|
+
@TaskID = taskid
|
|
935
79
|
end
|
|
936
80
|
|
|
937
81
|
def deserialize(params)
|
|
82
|
+
@TaskID = params['TaskID']
|
|
938
83
|
end
|
|
939
84
|
end
|
|
940
85
|
|
|
941
|
-
#
|
|
942
|
-
class
|
|
943
|
-
# @param
|
|
944
|
-
#
|
|
945
|
-
#
|
|
946
|
-
#
|
|
947
|
-
# @
|
|
948
|
-
# @
|
|
86
|
+
# DescribeSegmentationTask返回参数结构体
|
|
87
|
+
class DescribeSegmentationTaskResponse < TencentCloud::Common::AbstractModel
|
|
88
|
+
# @param TaskStatus: 当前任务状态:
|
|
89
|
+
# QUEUING 排队中
|
|
90
|
+
# PROCESSING 处理中
|
|
91
|
+
# FINISHED 处理完成
|
|
92
|
+
# @type TaskStatus: String
|
|
93
|
+
# @param ResultVideoUrl: 分割后视频URL, 存储于腾讯云COS
|
|
94
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
95
|
+
# @type ResultVideoUrl: String
|
|
96
|
+
# @param ResultVideoMD5: 分割后视频MD5,用于校验
|
|
97
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
98
|
+
# @type ResultVideoMD5: String
|
|
99
|
+
# @param VideoBasicInformation: 视频基本信息
|
|
100
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
101
|
+
# @type VideoBasicInformation: :class:`Tencentcloud::Bda.v20200324.models.VideoBasicInformation`
|
|
102
|
+
# @param ErrorMsg: 分割任务错误信息
|
|
103
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
104
|
+
# @type ErrorMsg: String
|
|
949
105
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
950
106
|
# @type RequestId: String
|
|
951
107
|
|
|
952
|
-
attr_accessor :
|
|
108
|
+
attr_accessor :TaskStatus, :ResultVideoUrl, :ResultVideoMD5, :VideoBasicInformation, :ErrorMsg, :RequestId
|
|
953
109
|
|
|
954
|
-
def initialize(
|
|
955
|
-
@
|
|
956
|
-
@
|
|
957
|
-
@
|
|
110
|
+
def initialize(taskstatus=nil, resultvideourl=nil, resultvideomd5=nil, videobasicinformation=nil, errormsg=nil, requestid=nil)
|
|
111
|
+
@TaskStatus = taskstatus
|
|
112
|
+
@ResultVideoUrl = resultvideourl
|
|
113
|
+
@ResultVideoMD5 = resultvideomd5
|
|
114
|
+
@VideoBasicInformation = videobasicinformation
|
|
115
|
+
@ErrorMsg = errormsg
|
|
958
116
|
@RequestId = requestid
|
|
959
117
|
end
|
|
960
118
|
|
|
961
119
|
def deserialize(params)
|
|
962
|
-
@
|
|
963
|
-
@
|
|
964
|
-
@
|
|
120
|
+
@TaskStatus = params['TaskStatus']
|
|
121
|
+
@ResultVideoUrl = params['ResultVideoUrl']
|
|
122
|
+
@ResultVideoMD5 = params['ResultVideoMD5']
|
|
123
|
+
unless params['VideoBasicInformation'].nil?
|
|
124
|
+
@VideoBasicInformation = VideoBasicInformation.new
|
|
125
|
+
@VideoBasicInformation.deserialize(params['VideoBasicInformation'])
|
|
126
|
+
end
|
|
127
|
+
@ErrorMsg = params['ErrorMsg']
|
|
965
128
|
@RequestId = params['RequestId']
|
|
966
129
|
end
|
|
967
130
|
end
|
|
968
131
|
|
|
969
|
-
# 返回的人员库信息。
|
|
970
|
-
class GroupInfo < TencentCloud::Common::AbstractModel
|
|
971
|
-
# @param GroupName: 人体库名称。
|
|
972
|
-
# @type GroupName: String
|
|
973
|
-
# @param GroupId: 人体库ID。
|
|
974
|
-
# @type GroupId: String
|
|
975
|
-
# @param Tag: 人体库信息备注。
|
|
976
|
-
# @type Tag: String
|
|
977
|
-
# @param BodyModelVersion: 人体识别所用的算法模型版本。
|
|
978
|
-
# @type BodyModelVersion: String
|
|
979
|
-
# @param CreationTimestamp: Group的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
|
|
980
|
-
# Unix 纪元时间是 1970 年 1 月 1 日星期四,协调世界时 (UTC) 。
|
|
981
|
-
# @type CreationTimestamp: Integer
|
|
982
|
-
|
|
983
|
-
attr_accessor :GroupName, :GroupId, :Tag, :BodyModelVersion, :CreationTimestamp
|
|
984
|
-
|
|
985
|
-
def initialize(groupname=nil, groupid=nil, tag=nil, bodymodelversion=nil, creationtimestamp=nil)
|
|
986
|
-
@GroupName = groupname
|
|
987
|
-
@GroupId = groupid
|
|
988
|
-
@Tag = tag
|
|
989
|
-
@BodyModelVersion = bodymodelversion
|
|
990
|
-
@CreationTimestamp = creationtimestamp
|
|
991
|
-
end
|
|
992
|
-
|
|
993
|
-
def deserialize(params)
|
|
994
|
-
@GroupName = params['GroupName']
|
|
995
|
-
@GroupId = params['GroupId']
|
|
996
|
-
@Tag = params['Tag']
|
|
997
|
-
@BodyModelVersion = params['BodyModelVersion']
|
|
998
|
-
@CreationTimestamp = params['CreationTimestamp']
|
|
999
|
-
end
|
|
1000
|
-
end
|
|
1001
|
-
|
|
1002
132
|
# 图像坐标信息。
|
|
1003
133
|
class ImageRect < TencentCloud::Common::AbstractModel
|
|
1004
134
|
# @param X: 左上角横坐标。
|
|
@@ -1031,331 +161,6 @@ module TencentCloud
|
|
|
1031
161
|
end
|
|
1032
162
|
end
|
|
1033
163
|
|
|
1034
|
-
# 人体关键点信息
|
|
1035
|
-
class KeyPointInfo < TencentCloud::Common::AbstractModel
|
|
1036
|
-
# @param KeyPointType: 代表不同位置的人体关键点信息,返回值为以下集合中的一个 [头部,颈部,右肩,右肘,右腕,左肩,左肘,左腕,右髋,右膝,右踝,左髋,左膝,左踝]
|
|
1037
|
-
# @type KeyPointType: String
|
|
1038
|
-
# @param X: 人体关键点横坐标
|
|
1039
|
-
# @type X: Float
|
|
1040
|
-
# @param Y: 人体关键点纵坐标
|
|
1041
|
-
# @type Y: Float
|
|
1042
|
-
# @param BodyScore: 关键点坐标置信度,分数取值在0-1之间,阈值建议为0.25,小于0.25认为在图中无人体关键点。
|
|
1043
|
-
# @type BodyScore: Float
|
|
1044
|
-
|
|
1045
|
-
attr_accessor :KeyPointType, :X, :Y, :BodyScore
|
|
1046
|
-
|
|
1047
|
-
def initialize(keypointtype=nil, x=nil, y=nil, bodyscore=nil)
|
|
1048
|
-
@KeyPointType = keypointtype
|
|
1049
|
-
@X = x
|
|
1050
|
-
@Y = y
|
|
1051
|
-
@BodyScore = bodyscore
|
|
1052
|
-
end
|
|
1053
|
-
|
|
1054
|
-
def deserialize(params)
|
|
1055
|
-
@KeyPointType = params['KeyPointType']
|
|
1056
|
-
@X = params['X']
|
|
1057
|
-
@Y = params['Y']
|
|
1058
|
-
@BodyScore = params['BodyScore']
|
|
1059
|
-
end
|
|
1060
|
-
end
|
|
1061
|
-
|
|
1062
|
-
# 下衣属性信息
|
|
1063
|
-
class LowerBodyCloth < TencentCloud::Common::AbstractModel
|
|
1064
|
-
# @param Color: 下衣颜色信息。
|
|
1065
|
-
# @type Color: :class:`Tencentcloud::Bda.v20200324.models.LowerBodyClothColor`
|
|
1066
|
-
# @param Length: 下衣长度信息 。
|
|
1067
|
-
# @type Length: :class:`Tencentcloud::Bda.v20200324.models.LowerBodyClothLength`
|
|
1068
|
-
# @param Type: 下衣类型信息。
|
|
1069
|
-
# @type Type: :class:`Tencentcloud::Bda.v20200324.models.LowerBodyClothType`
|
|
1070
|
-
|
|
1071
|
-
attr_accessor :Color, :Length, :Type
|
|
1072
|
-
|
|
1073
|
-
def initialize(color=nil, length=nil, type=nil)
|
|
1074
|
-
@Color = color
|
|
1075
|
-
@Length = length
|
|
1076
|
-
@Type = type
|
|
1077
|
-
end
|
|
1078
|
-
|
|
1079
|
-
def deserialize(params)
|
|
1080
|
-
unless params['Color'].nil?
|
|
1081
|
-
@Color = LowerBodyClothColor.new
|
|
1082
|
-
@Color.deserialize(params['Color'])
|
|
1083
|
-
end
|
|
1084
|
-
unless params['Length'].nil?
|
|
1085
|
-
@Length = LowerBodyClothLength.new
|
|
1086
|
-
@Length.deserialize(params['Length'])
|
|
1087
|
-
end
|
|
1088
|
-
unless params['Type'].nil?
|
|
1089
|
-
@Type = LowerBodyClothType.new
|
|
1090
|
-
@Type.deserialize(params['Type'])
|
|
1091
|
-
end
|
|
1092
|
-
end
|
|
1093
|
-
end
|
|
1094
|
-
|
|
1095
|
-
# 下衣颜色信息
|
|
1096
|
-
class LowerBodyClothColor < TencentCloud::Common::AbstractModel
|
|
1097
|
-
# @param Type: 下衣颜色信息,返回值为以下集合中的一个{ 黑色系, 灰白色系, 彩色} 。
|
|
1098
|
-
# @type Type: String
|
|
1099
|
-
# @param Probability: Type识别概率值,[0.0,1.0],代表判断正确的概率。如0.8则代表有Type值有80%概率正确。
|
|
1100
|
-
# @type Probability: Float
|
|
1101
|
-
|
|
1102
|
-
attr_accessor :Type, :Probability
|
|
1103
|
-
|
|
1104
|
-
def initialize(type=nil, probability=nil)
|
|
1105
|
-
@Type = type
|
|
1106
|
-
@Probability = probability
|
|
1107
|
-
end
|
|
1108
|
-
|
|
1109
|
-
def deserialize(params)
|
|
1110
|
-
@Type = params['Type']
|
|
1111
|
-
@Probability = params['Probability']
|
|
1112
|
-
end
|
|
1113
|
-
end
|
|
1114
|
-
|
|
1115
|
-
# 下衣长度信息
|
|
1116
|
-
class LowerBodyClothLength < TencentCloud::Common::AbstractModel
|
|
1117
|
-
# @param Type: 下衣长度信息,返回值为以下集合中的一个,{长, 短} 。
|
|
1118
|
-
# @type Type: String
|
|
1119
|
-
# @param Probability: Type识别概率值,[0.0,1.0],代表判断正确的概率。如0.8则代表有Type值有80%概率正确。
|
|
1120
|
-
# @type Probability: Float
|
|
1121
|
-
|
|
1122
|
-
attr_accessor :Type, :Probability
|
|
1123
|
-
|
|
1124
|
-
def initialize(type=nil, probability=nil)
|
|
1125
|
-
@Type = type
|
|
1126
|
-
@Probability = probability
|
|
1127
|
-
end
|
|
1128
|
-
|
|
1129
|
-
def deserialize(params)
|
|
1130
|
-
@Type = params['Type']
|
|
1131
|
-
@Probability = params['Probability']
|
|
1132
|
-
end
|
|
1133
|
-
end
|
|
1134
|
-
|
|
1135
|
-
# 下衣类型信息
|
|
1136
|
-
class LowerBodyClothType < TencentCloud::Common::AbstractModel
|
|
1137
|
-
# @param Type: 下衣类型,返回值为以下集合中的一个 {裤子,裙子} 。
|
|
1138
|
-
# @type Type: String
|
|
1139
|
-
# @param Probability: Type识别概率值,[0.0,1.0],代表判断正确的概率。如0.8则代表有Type值有80%概率正确。
|
|
1140
|
-
# @type Probability: Float
|
|
1141
|
-
|
|
1142
|
-
attr_accessor :Type, :Probability
|
|
1143
|
-
|
|
1144
|
-
def initialize(type=nil, probability=nil)
|
|
1145
|
-
@Type = type
|
|
1146
|
-
@Probability = probability
|
|
1147
|
-
end
|
|
1148
|
-
|
|
1149
|
-
def deserialize(params)
|
|
1150
|
-
@Type = params['Type']
|
|
1151
|
-
@Probability = params['Probability']
|
|
1152
|
-
end
|
|
1153
|
-
end
|
|
1154
|
-
|
|
1155
|
-
# ModifyGroup请求参数结构体
|
|
1156
|
-
class ModifyGroupRequest < TencentCloud::Common::AbstractModel
|
|
1157
|
-
# @param GroupId: 人体库ID。
|
|
1158
|
-
# @type GroupId: String
|
|
1159
|
-
# @param GroupName: 人体库名称。
|
|
1160
|
-
# @type GroupName: String
|
|
1161
|
-
# @param Tag: 人体库信息备注。
|
|
1162
|
-
# @type Tag: String
|
|
1163
|
-
|
|
1164
|
-
attr_accessor :GroupId, :GroupName, :Tag
|
|
1165
|
-
|
|
1166
|
-
def initialize(groupid=nil, groupname=nil, tag=nil)
|
|
1167
|
-
@GroupId = groupid
|
|
1168
|
-
@GroupName = groupname
|
|
1169
|
-
@Tag = tag
|
|
1170
|
-
end
|
|
1171
|
-
|
|
1172
|
-
def deserialize(params)
|
|
1173
|
-
@GroupId = params['GroupId']
|
|
1174
|
-
@GroupName = params['GroupName']
|
|
1175
|
-
@Tag = params['Tag']
|
|
1176
|
-
end
|
|
1177
|
-
end
|
|
1178
|
-
|
|
1179
|
-
# ModifyGroup返回参数结构体
|
|
1180
|
-
class ModifyGroupResponse < TencentCloud::Common::AbstractModel
|
|
1181
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1182
|
-
# @type RequestId: String
|
|
1183
|
-
|
|
1184
|
-
attr_accessor :RequestId
|
|
1185
|
-
|
|
1186
|
-
def initialize(requestid=nil)
|
|
1187
|
-
@RequestId = requestid
|
|
1188
|
-
end
|
|
1189
|
-
|
|
1190
|
-
def deserialize(params)
|
|
1191
|
-
@RequestId = params['RequestId']
|
|
1192
|
-
end
|
|
1193
|
-
end
|
|
1194
|
-
|
|
1195
|
-
# ModifyPersonInfo请求参数结构体
|
|
1196
|
-
class ModifyPersonInfoRequest < TencentCloud::Common::AbstractModel
|
|
1197
|
-
# @param PersonId: 人员ID。
|
|
1198
|
-
# @type PersonId: String
|
|
1199
|
-
# @param PersonName: 人员名称。
|
|
1200
|
-
# @type PersonName: String
|
|
1201
|
-
|
|
1202
|
-
attr_accessor :PersonId, :PersonName
|
|
1203
|
-
|
|
1204
|
-
def initialize(personid=nil, personname=nil)
|
|
1205
|
-
@PersonId = personid
|
|
1206
|
-
@PersonName = personname
|
|
1207
|
-
end
|
|
1208
|
-
|
|
1209
|
-
def deserialize(params)
|
|
1210
|
-
@PersonId = params['PersonId']
|
|
1211
|
-
@PersonName = params['PersonName']
|
|
1212
|
-
end
|
|
1213
|
-
end
|
|
1214
|
-
|
|
1215
|
-
# ModifyPersonInfo返回参数结构体
|
|
1216
|
-
class ModifyPersonInfoResponse < TencentCloud::Common::AbstractModel
|
|
1217
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1218
|
-
# @type RequestId: String
|
|
1219
|
-
|
|
1220
|
-
attr_accessor :RequestId
|
|
1221
|
-
|
|
1222
|
-
def initialize(requestid=nil)
|
|
1223
|
-
@RequestId = requestid
|
|
1224
|
-
end
|
|
1225
|
-
|
|
1226
|
-
def deserialize(params)
|
|
1227
|
-
@RequestId = params['RequestId']
|
|
1228
|
-
end
|
|
1229
|
-
end
|
|
1230
|
-
|
|
1231
|
-
# 人体朝向信息。
|
|
1232
|
-
# AttributesType 不含 Orientation 或检测超过 5 个人体时,此参数仍返回,但不具备参考意义。
|
|
1233
|
-
class Orientation < TencentCloud::Common::AbstractModel
|
|
1234
|
-
# @param Type: 人体朝向信息,返回值为以下集合中的一个 {正向, 背向, 左, 右}。
|
|
1235
|
-
# @type Type: String
|
|
1236
|
-
# @param Probability: Type识别概率值,[0.0,1.0],代表判断正确的概率。如0.8则代表有Type值有80%概率正确。
|
|
1237
|
-
# @type Probability: Float
|
|
1238
|
-
|
|
1239
|
-
attr_accessor :Type, :Probability
|
|
1240
|
-
|
|
1241
|
-
def initialize(type=nil, probability=nil)
|
|
1242
|
-
@Type = type
|
|
1243
|
-
@Probability = probability
|
|
1244
|
-
end
|
|
1245
|
-
|
|
1246
|
-
def deserialize(params)
|
|
1247
|
-
@Type = params['Type']
|
|
1248
|
-
@Probability = params['Probability']
|
|
1249
|
-
end
|
|
1250
|
-
end
|
|
1251
|
-
|
|
1252
|
-
# 人员信息。
|
|
1253
|
-
class PersonInfo < TencentCloud::Common::AbstractModel
|
|
1254
|
-
# @param PersonName: 人员名称。
|
|
1255
|
-
# @type PersonName: String
|
|
1256
|
-
# @param PersonId: 人员ID。
|
|
1257
|
-
# @type PersonId: String
|
|
1258
|
-
# @param TraceInfos: 包含的人体动作轨迹图片信息列表。
|
|
1259
|
-
# @type TraceInfos: Array
|
|
1260
|
-
|
|
1261
|
-
attr_accessor :PersonName, :PersonId, :TraceInfos
|
|
1262
|
-
|
|
1263
|
-
def initialize(personname=nil, personid=nil, traceinfos=nil)
|
|
1264
|
-
@PersonName = personname
|
|
1265
|
-
@PersonId = personid
|
|
1266
|
-
@TraceInfos = traceinfos
|
|
1267
|
-
end
|
|
1268
|
-
|
|
1269
|
-
def deserialize(params)
|
|
1270
|
-
@PersonName = params['PersonName']
|
|
1271
|
-
@PersonId = params['PersonId']
|
|
1272
|
-
unless params['TraceInfos'].nil?
|
|
1273
|
-
@TraceInfos = []
|
|
1274
|
-
params['TraceInfos'].each do |i|
|
|
1275
|
-
traceinfo_tmp = TraceInfo.new
|
|
1276
|
-
traceinfo_tmp.deserialize(i)
|
|
1277
|
-
@TraceInfos << traceinfo_tmp
|
|
1278
|
-
end
|
|
1279
|
-
end
|
|
1280
|
-
end
|
|
1281
|
-
end
|
|
1282
|
-
|
|
1283
|
-
# SearchTrace请求参数结构体
|
|
1284
|
-
class SearchTraceRequest < TencentCloud::Common::AbstractModel
|
|
1285
|
-
# @param GroupId: 希望搜索的人体库ID。
|
|
1286
|
-
# @type GroupId: String
|
|
1287
|
-
# @param Trace: 人体动作轨迹信息。
|
|
1288
|
-
# @type Trace: :class:`Tencentcloud::Bda.v20200324.models.Trace`
|
|
1289
|
-
# @param MaxPersonNum: 单张被识别的人体动作轨迹返回的最相似人员数量。
|
|
1290
|
-
# 默认值为5,最大值为100。
|
|
1291
|
-
# 例,设MaxPersonNum为8,则返回Top8相似的人员信息。 值越大,需要处理的时间越长。建议不要超过10。
|
|
1292
|
-
# @type MaxPersonNum: Integer
|
|
1293
|
-
# @param TraceMatchThreshold: 出参Score中,只有超过TraceMatchThreshold值的结果才会返回。
|
|
1294
|
-
# 默认为0。范围[0, 100.0]。
|
|
1295
|
-
# @type TraceMatchThreshold: Float
|
|
1296
|
-
|
|
1297
|
-
attr_accessor :GroupId, :Trace, :MaxPersonNum, :TraceMatchThreshold
|
|
1298
|
-
|
|
1299
|
-
def initialize(groupid=nil, trace=nil, maxpersonnum=nil, tracematchthreshold=nil)
|
|
1300
|
-
@GroupId = groupid
|
|
1301
|
-
@Trace = trace
|
|
1302
|
-
@MaxPersonNum = maxpersonnum
|
|
1303
|
-
@TraceMatchThreshold = tracematchthreshold
|
|
1304
|
-
end
|
|
1305
|
-
|
|
1306
|
-
def deserialize(params)
|
|
1307
|
-
@GroupId = params['GroupId']
|
|
1308
|
-
unless params['Trace'].nil?
|
|
1309
|
-
@Trace = Trace.new
|
|
1310
|
-
@Trace.deserialize(params['Trace'])
|
|
1311
|
-
end
|
|
1312
|
-
@MaxPersonNum = params['MaxPersonNum']
|
|
1313
|
-
@TraceMatchThreshold = params['TraceMatchThreshold']
|
|
1314
|
-
end
|
|
1315
|
-
end
|
|
1316
|
-
|
|
1317
|
-
# SearchTrace返回参数结构体
|
|
1318
|
-
class SearchTraceResponse < TencentCloud::Common::AbstractModel
|
|
1319
|
-
# @param Candidates: 识别出的最相似候选人。
|
|
1320
|
-
# @type Candidates: Array
|
|
1321
|
-
# @param InputRetCode: 输入的人体动作轨迹图片中的合法性校验结果。
|
|
1322
|
-
# 只有为0时结果才有意义。
|
|
1323
|
-
# -1001: 输入图片不合法。-1002: 输入图片不能构成动作轨迹。
|
|
1324
|
-
# @type InputRetCode: Integer
|
|
1325
|
-
# @param InputRetCodeDetails: 输入的人体动作轨迹图片中的合法性校验结果详情。
|
|
1326
|
-
# -1101:图片无效,-1102:url不合法。-1103:图片过大。-1104:图片下载失败。-1105:图片解码失败。-1109:图片分辨率过高。-2023:动作轨迹中有非同人图片。-2024: 动作轨迹提取失败。-2025: 人体检测失败。
|
|
1327
|
-
# @type InputRetCodeDetails: Array
|
|
1328
|
-
# @param BodyModelVersion: 人体识别所用的算法模型版本。
|
|
1329
|
-
# @type BodyModelVersion: String
|
|
1330
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1331
|
-
# @type RequestId: String
|
|
1332
|
-
|
|
1333
|
-
attr_accessor :Candidates, :InputRetCode, :InputRetCodeDetails, :BodyModelVersion, :RequestId
|
|
1334
|
-
|
|
1335
|
-
def initialize(candidates=nil, inputretcode=nil, inputretcodedetails=nil, bodymodelversion=nil, requestid=nil)
|
|
1336
|
-
@Candidates = candidates
|
|
1337
|
-
@InputRetCode = inputretcode
|
|
1338
|
-
@InputRetCodeDetails = inputretcodedetails
|
|
1339
|
-
@BodyModelVersion = bodymodelversion
|
|
1340
|
-
@RequestId = requestid
|
|
1341
|
-
end
|
|
1342
|
-
|
|
1343
|
-
def deserialize(params)
|
|
1344
|
-
unless params['Candidates'].nil?
|
|
1345
|
-
@Candidates = []
|
|
1346
|
-
params['Candidates'].each do |i|
|
|
1347
|
-
candidate_tmp = Candidate.new
|
|
1348
|
-
candidate_tmp.deserialize(i)
|
|
1349
|
-
@Candidates << candidate_tmp
|
|
1350
|
-
end
|
|
1351
|
-
end
|
|
1352
|
-
@InputRetCode = params['InputRetCode']
|
|
1353
|
-
@InputRetCodeDetails = params['InputRetCodeDetails']
|
|
1354
|
-
@BodyModelVersion = params['BodyModelVersion']
|
|
1355
|
-
@RequestId = params['RequestId']
|
|
1356
|
-
end
|
|
1357
|
-
end
|
|
1358
|
-
|
|
1359
164
|
# SegmentCustomizedPortraitPic请求参数结构体
|
|
1360
165
|
class SegmentCustomizedPortraitPicRequest < TencentCloud::Common::AbstractModel
|
|
1361
166
|
# @param SegmentationOptions: 此参数为分割选项,请根据需要选择自己所想从图片中分割的部分。注意所有选项均为非必选,如未选择则值默认为false, 但是必须要保证多于一个选项的描述为true。
|
|
@@ -1633,162 +438,6 @@ module TencentCloud
|
|
|
1633
438
|
end
|
|
1634
439
|
end
|
|
1635
440
|
|
|
1636
|
-
# 人体动作轨迹信息
|
|
1637
|
-
class Trace < TencentCloud::Common::AbstractModel
|
|
1638
|
-
# @param Images: 人体动作轨迹图片 Base64 数组。
|
|
1639
|
-
# 数组长度最小为1最大为5。
|
|
1640
|
-
# 单个图片 base64 编码后大小不可超过2M。
|
|
1641
|
-
# 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
|
1642
|
-
# @type Images: Array
|
|
1643
|
-
# @param Urls: 人体动作轨迹图片 Url 数组。
|
|
1644
|
-
# 数组长度最小为1最大为5。
|
|
1645
|
-
# 单个图片 base64 编码后大小不可超过2M。
|
|
1646
|
-
# Urls、Images必须提供一个,如果都提供,只使用 Urls。
|
|
1647
|
-
# 图片存储于腾讯云的Url可保障更高下载速度和稳定性,建议图片存储于腾讯云。
|
|
1648
|
-
# 非腾讯云存储的Url速度和稳定性可能受一定影响。
|
|
1649
|
-
# 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
|
1650
|
-
# @type Urls: Array
|
|
1651
|
-
# @param BodyRects: 若输入的Images 和 Urls 是已经裁剪后的人体小图,则可以忽略本参数。
|
|
1652
|
-
# 若否,或图片中包含多个人体,则需要通过本参数来指定图片中的人体框。
|
|
1653
|
-
# 顺序对应 Images 或 Urls 中的顺序。
|
|
1654
|
-
# 当不输入本参数时,我们将认为输入图片已是经过裁剪后的人体小图,不会进行人体检测而直接进行特征提取处理。
|
|
1655
|
-
# @type BodyRects: Array
|
|
1656
|
-
|
|
1657
|
-
attr_accessor :Images, :Urls, :BodyRects
|
|
1658
|
-
|
|
1659
|
-
def initialize(images=nil, urls=nil, bodyrects=nil)
|
|
1660
|
-
@Images = images
|
|
1661
|
-
@Urls = urls
|
|
1662
|
-
@BodyRects = bodyrects
|
|
1663
|
-
end
|
|
1664
|
-
|
|
1665
|
-
def deserialize(params)
|
|
1666
|
-
@Images = params['Images']
|
|
1667
|
-
@Urls = params['Urls']
|
|
1668
|
-
unless params['BodyRects'].nil?
|
|
1669
|
-
@BodyRects = []
|
|
1670
|
-
params['BodyRects'].each do |i|
|
|
1671
|
-
bodyrect_tmp = BodyRect.new
|
|
1672
|
-
bodyrect_tmp.deserialize(i)
|
|
1673
|
-
@BodyRects << bodyrect_tmp
|
|
1674
|
-
end
|
|
1675
|
-
end
|
|
1676
|
-
end
|
|
1677
|
-
end
|
|
1678
|
-
|
|
1679
|
-
# 人体动作轨迹信息。
|
|
1680
|
-
class TraceInfo < TencentCloud::Common::AbstractModel
|
|
1681
|
-
# @param TraceId: 人体动作轨迹ID。
|
|
1682
|
-
# @type TraceId: String
|
|
1683
|
-
# @param BodyIds: 包含的人体动作轨迹图片Id列表。
|
|
1684
|
-
# @type BodyIds: Array
|
|
1685
|
-
|
|
1686
|
-
attr_accessor :TraceId, :BodyIds
|
|
1687
|
-
|
|
1688
|
-
def initialize(traceid=nil, bodyids=nil)
|
|
1689
|
-
@TraceId = traceid
|
|
1690
|
-
@BodyIds = bodyids
|
|
1691
|
-
end
|
|
1692
|
-
|
|
1693
|
-
def deserialize(params)
|
|
1694
|
-
@TraceId = params['TraceId']
|
|
1695
|
-
@BodyIds = params['BodyIds']
|
|
1696
|
-
end
|
|
1697
|
-
end
|
|
1698
|
-
|
|
1699
|
-
# 上衣属性信息
|
|
1700
|
-
class UpperBodyCloth < TencentCloud::Common::AbstractModel
|
|
1701
|
-
# @param Texture: 上衣纹理信息。
|
|
1702
|
-
# @type Texture: :class:`Tencentcloud::Bda.v20200324.models.UpperBodyClothTexture`
|
|
1703
|
-
# @param Color: 上衣颜色信息。
|
|
1704
|
-
# @type Color: :class:`Tencentcloud::Bda.v20200324.models.UpperBodyClothColor`
|
|
1705
|
-
# @param Sleeve: 上衣衣袖信息。
|
|
1706
|
-
# @type Sleeve: :class:`Tencentcloud::Bda.v20200324.models.UpperBodyClothSleeve`
|
|
1707
|
-
|
|
1708
|
-
attr_accessor :Texture, :Color, :Sleeve
|
|
1709
|
-
|
|
1710
|
-
def initialize(texture=nil, color=nil, sleeve=nil)
|
|
1711
|
-
@Texture = texture
|
|
1712
|
-
@Color = color
|
|
1713
|
-
@Sleeve = sleeve
|
|
1714
|
-
end
|
|
1715
|
-
|
|
1716
|
-
def deserialize(params)
|
|
1717
|
-
unless params['Texture'].nil?
|
|
1718
|
-
@Texture = UpperBodyClothTexture.new
|
|
1719
|
-
@Texture.deserialize(params['Texture'])
|
|
1720
|
-
end
|
|
1721
|
-
unless params['Color'].nil?
|
|
1722
|
-
@Color = UpperBodyClothColor.new
|
|
1723
|
-
@Color.deserialize(params['Color'])
|
|
1724
|
-
end
|
|
1725
|
-
unless params['Sleeve'].nil?
|
|
1726
|
-
@Sleeve = UpperBodyClothSleeve.new
|
|
1727
|
-
@Sleeve.deserialize(params['Sleeve'])
|
|
1728
|
-
end
|
|
1729
|
-
end
|
|
1730
|
-
end
|
|
1731
|
-
|
|
1732
|
-
# 上衣颜色信息。
|
|
1733
|
-
class UpperBodyClothColor < TencentCloud::Common::AbstractModel
|
|
1734
|
-
# @param Type: 上衣颜色信息,返回值为以下集合中的一个 {红色系, 黄色系, 绿色系, 蓝色系, 黑色系, 灰白色系。
|
|
1735
|
-
# @type Type: String
|
|
1736
|
-
# @param Probability: Type识别概率值,[0.0,1.0],代表判断正确的概率。如0.8则代表有Type值有80%概率正确。
|
|
1737
|
-
# @type Probability: Float
|
|
1738
|
-
|
|
1739
|
-
attr_accessor :Type, :Probability
|
|
1740
|
-
|
|
1741
|
-
def initialize(type=nil, probability=nil)
|
|
1742
|
-
@Type = type
|
|
1743
|
-
@Probability = probability
|
|
1744
|
-
end
|
|
1745
|
-
|
|
1746
|
-
def deserialize(params)
|
|
1747
|
-
@Type = params['Type']
|
|
1748
|
-
@Probability = params['Probability']
|
|
1749
|
-
end
|
|
1750
|
-
end
|
|
1751
|
-
|
|
1752
|
-
# 上衣衣袖信息。
|
|
1753
|
-
class UpperBodyClothSleeve < TencentCloud::Common::AbstractModel
|
|
1754
|
-
# @param Type: 上衣衣袖信息, 返回值为以下集合中的一个 {长袖, 短袖}。
|
|
1755
|
-
# @type Type: String
|
|
1756
|
-
# @param Probability: Type识别概率值,[0.0,1.0],代表判断正确的概率。如0.8则代表有Type值有80%概率正确。
|
|
1757
|
-
# @type Probability: Float
|
|
1758
|
-
|
|
1759
|
-
attr_accessor :Type, :Probability
|
|
1760
|
-
|
|
1761
|
-
def initialize(type=nil, probability=nil)
|
|
1762
|
-
@Type = type
|
|
1763
|
-
@Probability = probability
|
|
1764
|
-
end
|
|
1765
|
-
|
|
1766
|
-
def deserialize(params)
|
|
1767
|
-
@Type = params['Type']
|
|
1768
|
-
@Probability = params['Probability']
|
|
1769
|
-
end
|
|
1770
|
-
end
|
|
1771
|
-
|
|
1772
|
-
# 上衣纹理信息。
|
|
1773
|
-
class UpperBodyClothTexture < TencentCloud::Common::AbstractModel
|
|
1774
|
-
# @param Type: 上衣纹理信息,返回值为以下集合中的一个, {纯色, 格子, 大色块}。
|
|
1775
|
-
# @type Type: String
|
|
1776
|
-
# @param Probability: Type识别概率值,[0.0,1.0], 代表判断正确的概率。如0.8则代表有Type值有80%概率正确。
|
|
1777
|
-
# @type Probability: Float
|
|
1778
|
-
|
|
1779
|
-
attr_accessor :Type, :Probability
|
|
1780
|
-
|
|
1781
|
-
def initialize(type=nil, probability=nil)
|
|
1782
|
-
@Type = type
|
|
1783
|
-
@Probability = probability
|
|
1784
|
-
end
|
|
1785
|
-
|
|
1786
|
-
def deserialize(params)
|
|
1787
|
-
@Type = params['Type']
|
|
1788
|
-
@Probability = params['Probability']
|
|
1789
|
-
end
|
|
1790
|
-
end
|
|
1791
|
-
|
|
1792
441
|
# 视频基础信息
|
|
1793
442
|
class VideoBasicInformation < TencentCloud::Common::AbstractModel
|
|
1794
443
|
# @param FrameWidth: 视频宽度
|