tencentcloud-sdk-tci 1.0.200
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 +7 -0
- data/lib/VERSION +1 -0
- data/lib/tencentcloud-sdk-tci.rb +11 -0
- data/lib/v20190318/client.rb +1068 -0
- data/lib/v20190318/models.rb +4507 -0
- metadata +66 -0
@@ -0,0 +1,1068 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require 'json'
|
18
|
+
|
19
|
+
module TencentCloud
|
20
|
+
module Tci
|
21
|
+
module V20190318
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2019-03-18'
|
26
|
+
api_endpoint = 'tci.tencentcloudapi.com'
|
27
|
+
sdk_version = 'TCI_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
# 提供 AI 助教基础版本功能接口
|
33
|
+
|
34
|
+
# @param request: Request instance for AIAssistant.
|
35
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::AIAssistantRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::AIAssistantResponse`
|
37
|
+
def AIAssistant(request)
|
38
|
+
body = send_request('AIAssistant', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = AIAssistantResponse.new
|
42
|
+
model.deserialize(response['Response'])
|
43
|
+
model
|
44
|
+
else
|
45
|
+
code = response['Response']['Error']['Code']
|
46
|
+
message = response['Response']['Error']['Message']
|
47
|
+
reqid = response['Response']['RequestId']
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
49
|
+
end
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
51
|
+
raise e
|
52
|
+
rescue StandardError => e
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
|
+
end
|
55
|
+
|
56
|
+
# 用于取消已经提交的任务,目前只支持图像任务。
|
57
|
+
|
58
|
+
# @param request: Request instance for CancelTask.
|
59
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::CancelTaskRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::CancelTaskResponse`
|
61
|
+
def CancelTask(request)
|
62
|
+
body = send_request('CancelTask', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CancelTaskResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
80
|
+
# 检查人脸图片是否合法
|
81
|
+
|
82
|
+
# @param request: Request instance for CheckFacePhoto.
|
83
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::CheckFacePhotoRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::CheckFacePhotoResponse`
|
85
|
+
def CheckFacePhoto(request)
|
86
|
+
body = send_request('CheckFacePhoto', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = CheckFacePhotoResponse.new
|
90
|
+
model.deserialize(response['Response'])
|
91
|
+
model
|
92
|
+
else
|
93
|
+
code = response['Response']['Error']['Code']
|
94
|
+
message = response['Response']['Error']['Message']
|
95
|
+
reqid = response['Response']['RequestId']
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
97
|
+
end
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
99
|
+
raise e
|
100
|
+
rescue StandardError => e
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
|
+
end
|
103
|
+
|
104
|
+
# 创建人脸
|
105
|
+
|
106
|
+
# @param request: Request instance for CreateFace.
|
107
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::CreateFaceRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::CreateFaceResponse`
|
109
|
+
def CreateFace(request)
|
110
|
+
body = send_request('CreateFace', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = CreateFaceResponse.new
|
114
|
+
model.deserialize(response['Response'])
|
115
|
+
model
|
116
|
+
else
|
117
|
+
code = response['Response']['Error']['Code']
|
118
|
+
message = response['Response']['Error']['Message']
|
119
|
+
reqid = response['Response']['RequestId']
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
121
|
+
end
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
123
|
+
raise e
|
124
|
+
rescue StandardError => e
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
|
+
end
|
127
|
+
|
128
|
+
# 创建人员库
|
129
|
+
|
130
|
+
# @param request: Request instance for CreateLibrary.
|
131
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::CreateLibraryRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::CreateLibraryResponse`
|
133
|
+
def CreateLibrary(request)
|
134
|
+
body = send_request('CreateLibrary', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = CreateLibraryResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
152
|
+
# 创建人员
|
153
|
+
|
154
|
+
# @param request: Request instance for CreatePerson.
|
155
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::CreatePersonRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::CreatePersonResponse`
|
157
|
+
def CreatePerson(request)
|
158
|
+
body = send_request('CreatePerson', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = CreatePersonResponse.new
|
162
|
+
model.deserialize(response['Response'])
|
163
|
+
model
|
164
|
+
else
|
165
|
+
code = response['Response']['Error']['Code']
|
166
|
+
message = response['Response']['Error']['Message']
|
167
|
+
reqid = response['Response']['RequestId']
|
168
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
169
|
+
end
|
170
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
171
|
+
raise e
|
172
|
+
rescue StandardError => e
|
173
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
174
|
+
end
|
175
|
+
|
176
|
+
# 创建词汇
|
177
|
+
|
178
|
+
# @param request: Request instance for CreateVocab.
|
179
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::CreateVocabRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::CreateVocabResponse`
|
181
|
+
def CreateVocab(request)
|
182
|
+
body = send_request('CreateVocab', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = CreateVocabResponse.new
|
186
|
+
model.deserialize(response['Response'])
|
187
|
+
model
|
188
|
+
else
|
189
|
+
code = response['Response']['Error']['Code']
|
190
|
+
message = response['Response']['Error']['Message']
|
191
|
+
reqid = response['Response']['RequestId']
|
192
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
193
|
+
end
|
194
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
195
|
+
raise e
|
196
|
+
rescue StandardError => e
|
197
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
|
+
end
|
199
|
+
|
200
|
+
# 建立词汇库
|
201
|
+
|
202
|
+
# @param request: Request instance for CreateVocabLib.
|
203
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::CreateVocabLibRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::CreateVocabLibResponse`
|
205
|
+
def CreateVocabLib(request)
|
206
|
+
body = send_request('CreateVocabLib', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = CreateVocabLibResponse.new
|
210
|
+
model.deserialize(response['Response'])
|
211
|
+
model
|
212
|
+
else
|
213
|
+
code = response['Response']['Error']['Code']
|
214
|
+
message = response['Response']['Error']['Message']
|
215
|
+
reqid = response['Response']['RequestId']
|
216
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
217
|
+
end
|
218
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
219
|
+
raise e
|
220
|
+
rescue StandardError => e
|
221
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
222
|
+
end
|
223
|
+
|
224
|
+
# 删除人脸
|
225
|
+
|
226
|
+
# @param request: Request instance for DeleteFace.
|
227
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DeleteFaceRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DeleteFaceResponse`
|
229
|
+
def DeleteFace(request)
|
230
|
+
body = send_request('DeleteFace', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DeleteFaceResponse.new
|
234
|
+
model.deserialize(response['Response'])
|
235
|
+
model
|
236
|
+
else
|
237
|
+
code = response['Response']['Error']['Code']
|
238
|
+
message = response['Response']['Error']['Message']
|
239
|
+
reqid = response['Response']['RequestId']
|
240
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
241
|
+
end
|
242
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
243
|
+
raise e
|
244
|
+
rescue StandardError => e
|
245
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
246
|
+
end
|
247
|
+
|
248
|
+
# 删除人员库
|
249
|
+
|
250
|
+
# @param request: Request instance for DeleteLibrary.
|
251
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DeleteLibraryRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DeleteLibraryResponse`
|
253
|
+
def DeleteLibrary(request)
|
254
|
+
body = send_request('DeleteLibrary', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DeleteLibraryResponse.new
|
258
|
+
model.deserialize(response['Response'])
|
259
|
+
model
|
260
|
+
else
|
261
|
+
code = response['Response']['Error']['Code']
|
262
|
+
message = response['Response']['Error']['Message']
|
263
|
+
reqid = response['Response']['RequestId']
|
264
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
265
|
+
end
|
266
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
267
|
+
raise e
|
268
|
+
rescue StandardError => e
|
269
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
270
|
+
end
|
271
|
+
|
272
|
+
# 删除人员
|
273
|
+
|
274
|
+
# @param request: Request instance for DeletePerson.
|
275
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DeletePersonRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DeletePersonResponse`
|
277
|
+
def DeletePerson(request)
|
278
|
+
body = send_request('DeletePerson', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DeletePersonResponse.new
|
282
|
+
model.deserialize(response['Response'])
|
283
|
+
model
|
284
|
+
else
|
285
|
+
code = response['Response']['Error']['Code']
|
286
|
+
message = response['Response']['Error']['Message']
|
287
|
+
reqid = response['Response']['RequestId']
|
288
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
289
|
+
end
|
290
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
291
|
+
raise e
|
292
|
+
rescue StandardError => e
|
293
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
294
|
+
end
|
295
|
+
|
296
|
+
# 删除词汇
|
297
|
+
|
298
|
+
# @param request: Request instance for DeleteVocab.
|
299
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DeleteVocabRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DeleteVocabResponse`
|
301
|
+
def DeleteVocab(request)
|
302
|
+
body = send_request('DeleteVocab', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DeleteVocabResponse.new
|
306
|
+
model.deserialize(response['Response'])
|
307
|
+
model
|
308
|
+
else
|
309
|
+
code = response['Response']['Error']['Code']
|
310
|
+
message = response['Response']['Error']['Message']
|
311
|
+
reqid = response['Response']['RequestId']
|
312
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
313
|
+
end
|
314
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
315
|
+
raise e
|
316
|
+
rescue StandardError => e
|
317
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
318
|
+
end
|
319
|
+
|
320
|
+
# 删除词汇库
|
321
|
+
|
322
|
+
# @param request: Request instance for DeleteVocabLib.
|
323
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DeleteVocabLibRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DeleteVocabLibResponse`
|
325
|
+
def DeleteVocabLib(request)
|
326
|
+
body = send_request('DeleteVocabLib', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DeleteVocabLibResponse.new
|
330
|
+
model.deserialize(response['Response'])
|
331
|
+
model
|
332
|
+
else
|
333
|
+
code = response['Response']['Error']['Code']
|
334
|
+
message = response['Response']['Error']['Message']
|
335
|
+
reqid = response['Response']['RequestId']
|
336
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
337
|
+
end
|
338
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
339
|
+
raise e
|
340
|
+
rescue StandardError => e
|
341
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
342
|
+
end
|
343
|
+
|
344
|
+
# 获取标准化接口任务结果
|
345
|
+
|
346
|
+
# @param request: Request instance for DescribeAITaskResult.
|
347
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribeAITaskResultRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribeAITaskResultResponse`
|
349
|
+
def DescribeAITaskResult(request)
|
350
|
+
body = send_request('DescribeAITaskResult', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = DescribeAITaskResultResponse.new
|
354
|
+
model.deserialize(response['Response'])
|
355
|
+
model
|
356
|
+
else
|
357
|
+
code = response['Response']['Error']['Code']
|
358
|
+
message = response['Response']['Error']['Message']
|
359
|
+
reqid = response['Response']['RequestId']
|
360
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
361
|
+
end
|
362
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
363
|
+
raise e
|
364
|
+
rescue StandardError => e
|
365
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
366
|
+
end
|
367
|
+
|
368
|
+
# 人脸考勤查询结果
|
369
|
+
|
370
|
+
# @param request: Request instance for DescribeAttendanceResult.
|
371
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribeAttendanceResultRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribeAttendanceResultResponse`
|
373
|
+
def DescribeAttendanceResult(request)
|
374
|
+
body = send_request('DescribeAttendanceResult', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = DescribeAttendanceResultResponse.new
|
378
|
+
model.deserialize(response['Response'])
|
379
|
+
model
|
380
|
+
else
|
381
|
+
code = response['Response']['Error']['Code']
|
382
|
+
message = response['Response']['Error']['Message']
|
383
|
+
reqid = response['Response']['RequestId']
|
384
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
385
|
+
end
|
386
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
387
|
+
raise e
|
388
|
+
rescue StandardError => e
|
389
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
390
|
+
end
|
391
|
+
|
392
|
+
# 音频评估任务信息查询接口,异步查询客户提交的请求的结果。
|
393
|
+
|
394
|
+
# @param request: Request instance for DescribeAudioTask.
|
395
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribeAudioTaskRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribeAudioTaskResponse`
|
397
|
+
def DescribeAudioTask(request)
|
398
|
+
body = send_request('DescribeAudioTask', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = DescribeAudioTaskResponse.new
|
402
|
+
model.deserialize(response['Response'])
|
403
|
+
model
|
404
|
+
else
|
405
|
+
code = response['Response']['Error']['Code']
|
406
|
+
message = response['Response']['Error']['Message']
|
407
|
+
reqid = response['Response']['RequestId']
|
408
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
409
|
+
end
|
410
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
411
|
+
raise e
|
412
|
+
rescue StandardError => e
|
413
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
414
|
+
end
|
415
|
+
|
416
|
+
# 音频对话任务评估任务信息查询接口,异步查询客户提交的请求的结果。
|
417
|
+
|
418
|
+
# @param request: Request instance for DescribeConversationTask.
|
419
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribeConversationTaskRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribeConversationTaskResponse`
|
421
|
+
def DescribeConversationTask(request)
|
422
|
+
body = send_request('DescribeConversationTask', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = DescribeConversationTaskResponse.new
|
426
|
+
model.deserialize(response['Response'])
|
427
|
+
model
|
428
|
+
else
|
429
|
+
code = response['Response']['Error']['Code']
|
430
|
+
message = response['Response']['Error']['Message']
|
431
|
+
reqid = response['Response']['RequestId']
|
432
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
433
|
+
end
|
434
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
435
|
+
raise e
|
436
|
+
rescue StandardError => e
|
437
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
438
|
+
end
|
439
|
+
|
440
|
+
# 视频精彩集锦结果查询接口,异步查询客户提交的请求的结果。
|
441
|
+
|
442
|
+
# @param request: Request instance for DescribeHighlightResult.
|
443
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribeHighlightResultRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribeHighlightResultResponse`
|
445
|
+
def DescribeHighlightResult(request)
|
446
|
+
body = send_request('DescribeHighlightResult', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = DescribeHighlightResultResponse.new
|
450
|
+
model.deserialize(response['Response'])
|
451
|
+
model
|
452
|
+
else
|
453
|
+
code = response['Response']['Error']['Code']
|
454
|
+
message = response['Response']['Error']['Message']
|
455
|
+
reqid = response['Response']['RequestId']
|
456
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
457
|
+
end
|
458
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
459
|
+
raise e
|
460
|
+
rescue StandardError => e
|
461
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
462
|
+
end
|
463
|
+
|
464
|
+
# 拉取任务详情
|
465
|
+
|
466
|
+
# @param request: Request instance for DescribeImageTask.
|
467
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribeImageTaskRequest`
|
468
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribeImageTaskResponse`
|
469
|
+
def DescribeImageTask(request)
|
470
|
+
body = send_request('DescribeImageTask', request.serialize)
|
471
|
+
response = JSON.parse(body)
|
472
|
+
if response['Response'].key?('Error') == false
|
473
|
+
model = DescribeImageTaskResponse.new
|
474
|
+
model.deserialize(response['Response'])
|
475
|
+
model
|
476
|
+
else
|
477
|
+
code = response['Response']['Error']['Code']
|
478
|
+
message = response['Response']['Error']['Message']
|
479
|
+
reqid = response['Response']['RequestId']
|
480
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
481
|
+
end
|
482
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
483
|
+
raise e
|
484
|
+
rescue StandardError => e
|
485
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
486
|
+
end
|
487
|
+
|
488
|
+
# 获取图像任务统计信息
|
489
|
+
|
490
|
+
# @param request: Request instance for DescribeImageTaskStatistic.
|
491
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribeImageTaskStatisticRequest`
|
492
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribeImageTaskStatisticResponse`
|
493
|
+
def DescribeImageTaskStatistic(request)
|
494
|
+
body = send_request('DescribeImageTaskStatistic', request.serialize)
|
495
|
+
response = JSON.parse(body)
|
496
|
+
if response['Response'].key?('Error') == false
|
497
|
+
model = DescribeImageTaskStatisticResponse.new
|
498
|
+
model.deserialize(response['Response'])
|
499
|
+
model
|
500
|
+
else
|
501
|
+
code = response['Response']['Error']['Code']
|
502
|
+
message = response['Response']['Error']['Message']
|
503
|
+
reqid = response['Response']['RequestId']
|
504
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
505
|
+
end
|
506
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
507
|
+
raise e
|
508
|
+
rescue StandardError => e
|
509
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
510
|
+
end
|
511
|
+
|
512
|
+
# 获取人员库列表
|
513
|
+
|
514
|
+
# @param request: Request instance for DescribeLibraries.
|
515
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribeLibrariesRequest`
|
516
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribeLibrariesResponse`
|
517
|
+
def DescribeLibraries(request)
|
518
|
+
body = send_request('DescribeLibraries', request.serialize)
|
519
|
+
response = JSON.parse(body)
|
520
|
+
if response['Response'].key?('Error') == false
|
521
|
+
model = DescribeLibrariesResponse.new
|
522
|
+
model.deserialize(response['Response'])
|
523
|
+
model
|
524
|
+
else
|
525
|
+
code = response['Response']['Error']['Code']
|
526
|
+
message = response['Response']['Error']['Message']
|
527
|
+
reqid = response['Response']['RequestId']
|
528
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
529
|
+
end
|
530
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
531
|
+
raise e
|
532
|
+
rescue StandardError => e
|
533
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
534
|
+
end
|
535
|
+
|
536
|
+
# 获取人员详情
|
537
|
+
|
538
|
+
# @param request: Request instance for DescribePerson.
|
539
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribePersonRequest`
|
540
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribePersonResponse`
|
541
|
+
def DescribePerson(request)
|
542
|
+
body = send_request('DescribePerson', request.serialize)
|
543
|
+
response = JSON.parse(body)
|
544
|
+
if response['Response'].key?('Error') == false
|
545
|
+
model = DescribePersonResponse.new
|
546
|
+
model.deserialize(response['Response'])
|
547
|
+
model
|
548
|
+
else
|
549
|
+
code = response['Response']['Error']['Code']
|
550
|
+
message = response['Response']['Error']['Message']
|
551
|
+
reqid = response['Response']['RequestId']
|
552
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
553
|
+
end
|
554
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
555
|
+
raise e
|
556
|
+
rescue StandardError => e
|
557
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
558
|
+
end
|
559
|
+
|
560
|
+
# 拉取人员列表
|
561
|
+
|
562
|
+
# @param request: Request instance for DescribePersons.
|
563
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribePersonsRequest`
|
564
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribePersonsResponse`
|
565
|
+
def DescribePersons(request)
|
566
|
+
body = send_request('DescribePersons', request.serialize)
|
567
|
+
response = JSON.parse(body)
|
568
|
+
if response['Response'].key?('Error') == false
|
569
|
+
model = DescribePersonsResponse.new
|
570
|
+
model.deserialize(response['Response'])
|
571
|
+
model
|
572
|
+
else
|
573
|
+
code = response['Response']['Error']['Code']
|
574
|
+
message = response['Response']['Error']['Message']
|
575
|
+
reqid = response['Response']['RequestId']
|
576
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
577
|
+
end
|
578
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
579
|
+
raise e
|
580
|
+
rescue StandardError => e
|
581
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
582
|
+
end
|
583
|
+
|
584
|
+
# 查询词汇
|
585
|
+
|
586
|
+
# @param request: Request instance for DescribeVocab.
|
587
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribeVocabRequest`
|
588
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribeVocabResponse`
|
589
|
+
def DescribeVocab(request)
|
590
|
+
body = send_request('DescribeVocab', request.serialize)
|
591
|
+
response = JSON.parse(body)
|
592
|
+
if response['Response'].key?('Error') == false
|
593
|
+
model = DescribeVocabResponse.new
|
594
|
+
model.deserialize(response['Response'])
|
595
|
+
model
|
596
|
+
else
|
597
|
+
code = response['Response']['Error']['Code']
|
598
|
+
message = response['Response']['Error']['Message']
|
599
|
+
reqid = response['Response']['RequestId']
|
600
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
601
|
+
end
|
602
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
603
|
+
raise e
|
604
|
+
rescue StandardError => e
|
605
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
606
|
+
end
|
607
|
+
|
608
|
+
# 查询词汇库
|
609
|
+
|
610
|
+
# @param request: Request instance for DescribeVocabLib.
|
611
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::DescribeVocabLibRequest`
|
612
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::DescribeVocabLibResponse`
|
613
|
+
def DescribeVocabLib(request)
|
614
|
+
body = send_request('DescribeVocabLib', request.serialize)
|
615
|
+
response = JSON.parse(body)
|
616
|
+
if response['Response'].key?('Error') == false
|
617
|
+
model = DescribeVocabLibResponse.new
|
618
|
+
model.deserialize(response['Response'])
|
619
|
+
model
|
620
|
+
else
|
621
|
+
code = response['Response']['Error']['Code']
|
622
|
+
message = response['Response']['Error']['Message']
|
623
|
+
reqid = response['Response']['RequestId']
|
624
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
625
|
+
end
|
626
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
627
|
+
raise e
|
628
|
+
rescue StandardError => e
|
629
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
630
|
+
end
|
631
|
+
|
632
|
+
# 修改人员库信息
|
633
|
+
|
634
|
+
# @param request: Request instance for ModifyLibrary.
|
635
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::ModifyLibraryRequest`
|
636
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::ModifyLibraryResponse`
|
637
|
+
def ModifyLibrary(request)
|
638
|
+
body = send_request('ModifyLibrary', request.serialize)
|
639
|
+
response = JSON.parse(body)
|
640
|
+
if response['Response'].key?('Error') == false
|
641
|
+
model = ModifyLibraryResponse.new
|
642
|
+
model.deserialize(response['Response'])
|
643
|
+
model
|
644
|
+
else
|
645
|
+
code = response['Response']['Error']['Code']
|
646
|
+
message = response['Response']['Error']['Message']
|
647
|
+
reqid = response['Response']['RequestId']
|
648
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
649
|
+
end
|
650
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
651
|
+
raise e
|
652
|
+
rescue StandardError => e
|
653
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
654
|
+
end
|
655
|
+
|
656
|
+
# 修改人员信息
|
657
|
+
|
658
|
+
# @param request: Request instance for ModifyPerson.
|
659
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::ModifyPersonRequest`
|
660
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::ModifyPersonResponse`
|
661
|
+
def ModifyPerson(request)
|
662
|
+
body = send_request('ModifyPerson', request.serialize)
|
663
|
+
response = JSON.parse(body)
|
664
|
+
if response['Response'].key?('Error') == false
|
665
|
+
model = ModifyPersonResponse.new
|
666
|
+
model.deserialize(response['Response'])
|
667
|
+
model
|
668
|
+
else
|
669
|
+
code = response['Response']['Error']['Code']
|
670
|
+
message = response['Response']['Error']['Message']
|
671
|
+
reqid = response['Response']['RequestId']
|
672
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
673
|
+
end
|
674
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
675
|
+
raise e
|
676
|
+
rescue StandardError => e
|
677
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
678
|
+
end
|
679
|
+
|
680
|
+
# 音频任务提交接口
|
681
|
+
|
682
|
+
# @param request: Request instance for SubmitAudioTask.
|
683
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitAudioTaskRequest`
|
684
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitAudioTaskResponse`
|
685
|
+
def SubmitAudioTask(request)
|
686
|
+
body = send_request('SubmitAudioTask', request.serialize)
|
687
|
+
response = JSON.parse(body)
|
688
|
+
if response['Response'].key?('Error') == false
|
689
|
+
model = SubmitAudioTaskResponse.new
|
690
|
+
model.deserialize(response['Response'])
|
691
|
+
model
|
692
|
+
else
|
693
|
+
code = response['Response']['Error']['Code']
|
694
|
+
message = response['Response']['Error']['Message']
|
695
|
+
reqid = response['Response']['RequestId']
|
696
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
697
|
+
end
|
698
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
699
|
+
raise e
|
700
|
+
rescue StandardError => e
|
701
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
702
|
+
end
|
703
|
+
|
704
|
+
# 提交人员考勤任务,支持包括点播和直播资源;支持通过DescribeAttendanceResult查询结果,也支持通过NoticeUrl设置考勤回调结果,回调结果结构如下:
|
705
|
+
# ##### 回调事件结构
|
706
|
+
# | 参数名称 | 类型 | 描述 |
|
707
|
+
# | ---- | --- | ------ |
|
708
|
+
# | jobid | Integer | 任务ID |
|
709
|
+
# | person_info | array of PersonInfo | 识别到的人员列表 |
|
710
|
+
# #####子结构PersonInfo
|
711
|
+
# | 参数名称 | 类型 | 描述 |
|
712
|
+
# | ---- | --- | ------ |
|
713
|
+
# | traceid | String | 可用于区分同一路视频流下的不同陌生人 |
|
714
|
+
# | personid | String | 识别到的人员ID,如果是陌生人则返回空串 |
|
715
|
+
# | libid | String | 识别到的人员所在的库ID,如果是陌生人则返回空串 |
|
716
|
+
# | timestamp | uint64 | 识别到人脸的绝对时间戳,单位ms |
|
717
|
+
# | image_url | string | 识别到人脸的事件抓图的下载地址,不长期保存,需要请及时下载 |
|
718
|
+
|
719
|
+
# @param request: Request instance for SubmitCheckAttendanceTask.
|
720
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitCheckAttendanceTaskRequest`
|
721
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitCheckAttendanceTaskResponse`
|
722
|
+
def SubmitCheckAttendanceTask(request)
|
723
|
+
body = send_request('SubmitCheckAttendanceTask', request.serialize)
|
724
|
+
response = JSON.parse(body)
|
725
|
+
if response['Response'].key?('Error') == false
|
726
|
+
model = SubmitCheckAttendanceTaskResponse.new
|
727
|
+
model.deserialize(response['Response'])
|
728
|
+
model
|
729
|
+
else
|
730
|
+
code = response['Response']['Error']['Code']
|
731
|
+
message = response['Response']['Error']['Message']
|
732
|
+
reqid = response['Response']['RequestId']
|
733
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
734
|
+
end
|
735
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
736
|
+
raise e
|
737
|
+
rescue StandardError => e
|
738
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
739
|
+
end
|
740
|
+
|
741
|
+
# 支持多路视频流,提交高级人员考勤任务
|
742
|
+
|
743
|
+
# @param request: Request instance for SubmitCheckAttendanceTaskPlus.
|
744
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitCheckAttendanceTaskPlusRequest`
|
745
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitCheckAttendanceTaskPlusResponse`
|
746
|
+
def SubmitCheckAttendanceTaskPlus(request)
|
747
|
+
body = send_request('SubmitCheckAttendanceTaskPlus', request.serialize)
|
748
|
+
response = JSON.parse(body)
|
749
|
+
if response['Response'].key?('Error') == false
|
750
|
+
model = SubmitCheckAttendanceTaskPlusResponse.new
|
751
|
+
model.deserialize(response['Response'])
|
752
|
+
model
|
753
|
+
else
|
754
|
+
code = response['Response']['Error']['Code']
|
755
|
+
message = response['Response']['Error']['Message']
|
756
|
+
reqid = response['Response']['RequestId']
|
757
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
758
|
+
end
|
759
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
760
|
+
raise e
|
761
|
+
rescue StandardError => e
|
762
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
763
|
+
end
|
764
|
+
|
765
|
+
# 对话任务分析接口
|
766
|
+
|
767
|
+
# @param request: Request instance for SubmitConversationTask.
|
768
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitConversationTaskRequest`
|
769
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitConversationTaskResponse`
|
770
|
+
def SubmitConversationTask(request)
|
771
|
+
body = send_request('SubmitConversationTask', request.serialize)
|
772
|
+
response = JSON.parse(body)
|
773
|
+
if response['Response'].key?('Error') == false
|
774
|
+
model = SubmitConversationTaskResponse.new
|
775
|
+
model.deserialize(response['Response'])
|
776
|
+
model
|
777
|
+
else
|
778
|
+
code = response['Response']['Error']['Code']
|
779
|
+
message = response['Response']['Error']['Message']
|
780
|
+
reqid = response['Response']['RequestId']
|
781
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
782
|
+
end
|
783
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
784
|
+
raise e
|
785
|
+
rescue StandardError => e
|
786
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
787
|
+
end
|
788
|
+
|
789
|
+
# 发起双路视频生成精彩集锦接口。该接口可以通过客户传入的学生音视频及老师视频两路Url,自动生成一堂课程的精彩集锦。需要通过DescribeHighlightResult
|
790
|
+
# 接口获取生成结果。
|
791
|
+
|
792
|
+
# @param request: Request instance for SubmitDoubleVideoHighlights.
|
793
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitDoubleVideoHighlightsRequest`
|
794
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitDoubleVideoHighlightsResponse`
|
795
|
+
def SubmitDoubleVideoHighlights(request)
|
796
|
+
body = send_request('SubmitDoubleVideoHighlights', request.serialize)
|
797
|
+
response = JSON.parse(body)
|
798
|
+
if response['Response'].key?('Error') == false
|
799
|
+
model = SubmitDoubleVideoHighlightsResponse.new
|
800
|
+
model.deserialize(response['Response'])
|
801
|
+
model
|
802
|
+
else
|
803
|
+
code = response['Response']['Error']['Code']
|
804
|
+
message = response['Response']['Error']['Message']
|
805
|
+
reqid = response['Response']['RequestId']
|
806
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
807
|
+
end
|
808
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
809
|
+
raise e
|
810
|
+
rescue StandardError => e
|
811
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
812
|
+
end
|
813
|
+
|
814
|
+
# **传统课堂授课任务**:在此场景中,老师为站立授课,有白板或投影供老师展示课程内容,摄像头可以拍摄到老师的半身或者全身。拍摄视频为一路全局画面,且背景不动,要求画面稳定清晰。通过此接口可分析老师授课的行为及语音,以支持AI评教。
|
815
|
+
|
816
|
+
# **提供的功能接口有:**老师人脸识别、老师表情识别、老师肢体动作识别、语音识别。 可分析的指标维度包括:身份识别、正脸、侧脸、人脸坐标、人脸尺寸、高兴、中性、高兴、中性、惊讶、厌恶、恐惧、愤怒、蔑视、悲伤、正面讲解、写板书、指黑板、语音转文字、发音时长、非发音时长、音量、语速、指定关键词的使用等
|
817
|
+
|
818
|
+
# **对场景的要求为:**真实场景老师1人出现在画面中,全局画面且背景不动;人脸上下角度在20度以内,左右角度在15度以内,歪头角度在15度以内;光照均匀,无遮挡,人脸清晰可见;像素最好在 100X100 像素以上,但是图像整体质量不能超过1080p。
|
819
|
+
|
820
|
+
# **结果查询方式:**图像任务直接返回结果,点播及直播任务通过DescribeAITaskResult查询结果。
|
821
|
+
|
822
|
+
# @param request: Request instance for SubmitFullBodyClassTask.
|
823
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitFullBodyClassTaskRequest`
|
824
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitFullBodyClassTaskResponse`
|
825
|
+
def SubmitFullBodyClassTask(request)
|
826
|
+
body = send_request('SubmitFullBodyClassTask', request.serialize)
|
827
|
+
response = JSON.parse(body)
|
828
|
+
if response['Response'].key?('Error') == false
|
829
|
+
model = SubmitFullBodyClassTaskResponse.new
|
830
|
+
model.deserialize(response['Response'])
|
831
|
+
model
|
832
|
+
else
|
833
|
+
code = response['Response']['Error']['Code']
|
834
|
+
message = response['Response']['Error']['Message']
|
835
|
+
reqid = response['Response']['RequestId']
|
836
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
837
|
+
end
|
838
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
839
|
+
raise e
|
840
|
+
rescue StandardError => e
|
841
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
842
|
+
end
|
843
|
+
|
844
|
+
# 发起视频生成精彩集锦接口。该接口可以通过客户传入的课程音频数据及相关策略(如微笑抽取,专注抽取等),自动生成一堂课程的精彩集锦。需要通过QueryHighlightResult接口获取生成结果。
|
845
|
+
|
846
|
+
# @param request: Request instance for SubmitHighlights.
|
847
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitHighlightsRequest`
|
848
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitHighlightsResponse`
|
849
|
+
def SubmitHighlights(request)
|
850
|
+
body = send_request('SubmitHighlights', request.serialize)
|
851
|
+
response = JSON.parse(body)
|
852
|
+
if response['Response'].key?('Error') == false
|
853
|
+
model = SubmitHighlightsResponse.new
|
854
|
+
model.deserialize(response['Response'])
|
855
|
+
model
|
856
|
+
else
|
857
|
+
code = response['Response']['Error']['Code']
|
858
|
+
message = response['Response']['Error']['Message']
|
859
|
+
reqid = response['Response']['RequestId']
|
860
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
861
|
+
end
|
862
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
863
|
+
raise e
|
864
|
+
rescue StandardError => e
|
865
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
866
|
+
end
|
867
|
+
|
868
|
+
# 提交图像分析任务
|
869
|
+
|
870
|
+
# @param request: Request instance for SubmitImageTask.
|
871
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitImageTaskRequest`
|
872
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitImageTaskResponse`
|
873
|
+
def SubmitImageTask(request)
|
874
|
+
body = send_request('SubmitImageTask', request.serialize)
|
875
|
+
response = JSON.parse(body)
|
876
|
+
if response['Response'].key?('Error') == false
|
877
|
+
model = SubmitImageTaskResponse.new
|
878
|
+
model.deserialize(response['Response'])
|
879
|
+
model
|
880
|
+
else
|
881
|
+
code = response['Response']['Error']['Code']
|
882
|
+
message = response['Response']['Error']['Message']
|
883
|
+
reqid = response['Response']['RequestId']
|
884
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
885
|
+
end
|
886
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
887
|
+
raise e
|
888
|
+
rescue StandardError => e
|
889
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
890
|
+
end
|
891
|
+
|
892
|
+
# 高级图像分析任务,开放了图像任务里的所有开关,可以根据场景深度定制图像分析任务。支持的图像类别有,图片链接、图片二进制数据、点播链接和直播链接。
|
893
|
+
|
894
|
+
# @param request: Request instance for SubmitImageTaskPlus.
|
895
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitImageTaskPlusRequest`
|
896
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitImageTaskPlusResponse`
|
897
|
+
def SubmitImageTaskPlus(request)
|
898
|
+
body = send_request('SubmitImageTaskPlus', request.serialize)
|
899
|
+
response = JSON.parse(body)
|
900
|
+
if response['Response'].key?('Error') == false
|
901
|
+
model = SubmitImageTaskPlusResponse.new
|
902
|
+
model.deserialize(response['Response'])
|
903
|
+
model
|
904
|
+
else
|
905
|
+
code = response['Response']['Error']['Code']
|
906
|
+
message = response['Response']['Error']['Message']
|
907
|
+
reqid = response['Response']['RequestId']
|
908
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
909
|
+
end
|
910
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
911
|
+
raise e
|
912
|
+
rescue StandardError => e
|
913
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
914
|
+
end
|
915
|
+
|
916
|
+
# **提交在线1对1课堂任务**
|
917
|
+
# 对于在线1对1课堂,老师通过视频向学生授课,并且学生人数为1人。通过上传学生端的图像信息,可以获取学生的听课情况分析。 具体指一路全局画面且背景不动,有1位学生的头像或上半身的画面,要求画面稳定清晰。
|
918
|
+
|
919
|
+
# **提供的功能接口有:**学生人脸识别、学生表情识别、语音识别。可分析的指标维度包括:学生身份识别、正脸、侧脸、抬头、低头、人脸坐标、人脸尺寸、高兴、中性、高兴、中性、惊讶、厌恶、恐惧、愤怒、蔑视、悲伤、语音转文字、发音时长、非发音时长、音量、语速等。
|
920
|
+
|
921
|
+
# **对场景的要求为:**真实常规1v1授课场景,学生2人以下,全局画面且背景不动;人脸上下角度在20度以内,左右角度在15度以内,歪头角度在15度以内;光照均匀,无遮挡,人脸清晰可见;像素最好在 100X100 像素以上,但是图像整体质量不能超过1080p。
|
922
|
+
|
923
|
+
# **结果查询方式:**图像任务直接返回结果,点播及直播任务通过DescribeAITaskResult查询结果。
|
924
|
+
|
925
|
+
# @param request: Request instance for SubmitOneByOneClassTask.
|
926
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitOneByOneClassTaskRequest`
|
927
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitOneByOneClassTaskResponse`
|
928
|
+
def SubmitOneByOneClassTask(request)
|
929
|
+
body = send_request('SubmitOneByOneClassTask', request.serialize)
|
930
|
+
response = JSON.parse(body)
|
931
|
+
if response['Response'].key?('Error') == false
|
932
|
+
model = SubmitOneByOneClassTaskResponse.new
|
933
|
+
model.deserialize(response['Response'])
|
934
|
+
model
|
935
|
+
else
|
936
|
+
code = response['Response']['Error']['Code']
|
937
|
+
message = response['Response']['Error']['Message']
|
938
|
+
reqid = response['Response']['RequestId']
|
939
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
940
|
+
end
|
941
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
942
|
+
raise e
|
943
|
+
rescue StandardError => e
|
944
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
945
|
+
end
|
946
|
+
|
947
|
+
# **提交线下小班(无课桌)课任务**
|
948
|
+
# 线下小班课是指有学生无课桌的课堂,满座15人以下,全局画面且背景不动,能清晰看到。
|
949
|
+
|
950
|
+
# **提供的功能接口有:**学生人脸识别、学生表情识别、学生肢体动作识别。 可分析的指标维度包括:身份识别、正脸、侧脸、抬头、低头、高兴、中性、高兴、中性、惊讶、厌恶、恐惧、愤怒、蔑视、悲伤、站立、举手、坐着等。
|
951
|
+
|
952
|
+
# **对场景的要求为:**真实常规教室,满座15人以下,全局画面且背景不动;人脸上下角度在20度以内,左右角度在15度以内,歪头角度在15度以内;光照均匀,无遮挡,人脸清晰可见;像素最好在 100X100 像素以上但是图像整体质量不能超过1080p。
|
953
|
+
|
954
|
+
# **结果查询方式:**图像任务直接返回结果,点播及直播任务通过DescribeAITaskResult查询结果。
|
955
|
+
|
956
|
+
# @param request: Request instance for SubmitOpenClassTask.
|
957
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitOpenClassTaskRequest`
|
958
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitOpenClassTaskResponse`
|
959
|
+
def SubmitOpenClassTask(request)
|
960
|
+
body = send_request('SubmitOpenClassTask', request.serialize)
|
961
|
+
response = JSON.parse(body)
|
962
|
+
if response['Response'].key?('Error') == false
|
963
|
+
model = SubmitOpenClassTaskResponse.new
|
964
|
+
model.deserialize(response['Response'])
|
965
|
+
model
|
966
|
+
else
|
967
|
+
code = response['Response']['Error']['Code']
|
968
|
+
message = response['Response']['Error']['Message']
|
969
|
+
reqid = response['Response']['RequestId']
|
970
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
971
|
+
end
|
972
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
973
|
+
raise e
|
974
|
+
rescue StandardError => e
|
975
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
976
|
+
end
|
977
|
+
|
978
|
+
# **在线小班课任务**:此场景是在线授课场景,老师一般为坐着授课,摄像头可以拍摄到老师的头部及上半身。拍摄视频为一路全局画面,且背景不动,要求画面稳定清晰。通过此接口可分析老师授课的行为及语音,以支持AI评教。
|
979
|
+
|
980
|
+
# **提供的功能接口有:**老师人脸识别、老师表情识别、老师手势识别、光线识别、语音识别。 可分析的指标维度包括:身份识别、正脸、侧脸、人脸坐标、人脸尺寸、高兴、中性、高兴、中性、惊讶、厌恶、恐惧、愤怒、蔑视、悲伤、点赞手势、听你说手势、听我说手势、拿教具行为、语音转文字、发音时长、非发音时长、音量、语速、指定关键词的使用等
|
981
|
+
|
982
|
+
# **对场景的要求为:**在线常规授课场景,全局画面且背景不动;人脸上下角度在20度以内,左右角度在15度以内,歪头角度在15度以内;光照均匀,无遮挡,人脸清晰可见;像素最好在 100X100 像素以上,但是图像整体质量不能超过1080p。
|
983
|
+
|
984
|
+
# **结果查询方式:**图像任务直接返回结果,点播及直播任务通过DescribeAITaskResult查询结果。
|
985
|
+
|
986
|
+
# @param request: Request instance for SubmitPartialBodyClassTask.
|
987
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitPartialBodyClassTaskRequest`
|
988
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitPartialBodyClassTaskResponse`
|
989
|
+
def SubmitPartialBodyClassTask(request)
|
990
|
+
body = send_request('SubmitPartialBodyClassTask', request.serialize)
|
991
|
+
response = JSON.parse(body)
|
992
|
+
if response['Response'].key?('Error') == false
|
993
|
+
model = SubmitPartialBodyClassTaskResponse.new
|
994
|
+
model.deserialize(response['Response'])
|
995
|
+
model
|
996
|
+
else
|
997
|
+
code = response['Response']['Error']['Code']
|
998
|
+
message = response['Response']['Error']['Message']
|
999
|
+
reqid = response['Response']['RequestId']
|
1000
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1001
|
+
end
|
1002
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1003
|
+
raise e
|
1004
|
+
rescue StandardError => e
|
1005
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1006
|
+
end
|
1007
|
+
|
1008
|
+
# **提交线下传统面授大班课(含课桌)任务。**
|
1009
|
+
# 传统教室课堂是指有学生课堂有课桌的课堂,满座20-50人,全局画面且背景不动。
|
1010
|
+
|
1011
|
+
# **提供的功能接口有:**学生人脸识别、学生表情识别、学生肢体动作识别。可分析的指标维度包括:学生身份识别、正脸、侧脸、抬头、低头、高兴、中性、高兴、中性、惊讶、厌恶、恐惧、愤怒、蔑视、悲伤、举手、站立、坐着、趴桌子、玩手机等
|
1012
|
+
|
1013
|
+
# **对场景的要求为:**传统的学生上课教室,满座20-50人,全局画面且背景不动;人脸上下角度在20度以内,左右角度在15度以内,歪头角度在15度以内;光照均匀,无遮挡,人脸清晰可见;像素最好在 100X100 像素以上,但是图像整体质量不能超过1080p。
|
1014
|
+
|
1015
|
+
# **结果查询方式:**图像任务直接返回结果,点播及直播任务通过DescribeAITaskResult查询结果。
|
1016
|
+
|
1017
|
+
|
1018
|
+
# @param request: Request instance for SubmitTraditionalClassTask.
|
1019
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::SubmitTraditionalClassTaskRequest`
|
1020
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::SubmitTraditionalClassTaskResponse`
|
1021
|
+
def SubmitTraditionalClassTask(request)
|
1022
|
+
body = send_request('SubmitTraditionalClassTask', request.serialize)
|
1023
|
+
response = JSON.parse(body)
|
1024
|
+
if response['Response'].key?('Error') == false
|
1025
|
+
model = SubmitTraditionalClassTaskResponse.new
|
1026
|
+
model.deserialize(response['Response'])
|
1027
|
+
model
|
1028
|
+
else
|
1029
|
+
code = response['Response']['Error']['Code']
|
1030
|
+
message = response['Response']['Error']['Message']
|
1031
|
+
reqid = response['Response']['RequestId']
|
1032
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1033
|
+
end
|
1034
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1035
|
+
raise e
|
1036
|
+
rescue StandardError => e
|
1037
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
# 分析音频信息
|
1041
|
+
|
1042
|
+
# @param request: Request instance for TransmitAudioStream.
|
1043
|
+
# @type request: :class:`Tencentcloud::tci::V20190318::TransmitAudioStreamRequest`
|
1044
|
+
# @rtype: :class:`Tencentcloud::tci::V20190318::TransmitAudioStreamResponse`
|
1045
|
+
def TransmitAudioStream(request)
|
1046
|
+
body = send_request('TransmitAudioStream', request.serialize)
|
1047
|
+
response = JSON.parse(body)
|
1048
|
+
if response['Response'].key?('Error') == false
|
1049
|
+
model = TransmitAudioStreamResponse.new
|
1050
|
+
model.deserialize(response['Response'])
|
1051
|
+
model
|
1052
|
+
else
|
1053
|
+
code = response['Response']['Error']['Code']
|
1054
|
+
message = response['Response']['Error']['Message']
|
1055
|
+
reqid = response['Response']['RequestId']
|
1056
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1057
|
+
end
|
1058
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1059
|
+
raise e
|
1060
|
+
rescue StandardError => e
|
1061
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
|
1065
|
+
end
|
1066
|
+
end
|
1067
|
+
end
|
1068
|
+
end
|