视频标志检测 获取作业结果
开发环境
http://dev-cn.your-api-server.com
开发环境
http://dev-cn.your-api-server.com
GET
/v2/video/logo_detection_async/public_id
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://dev-cn.your-api-server.com/v2/video/logo_detection_async/public_id?response_as_dict=true&show_original_response=false' \
--header 'Authorization;'
响应示例响应示例
200 - 成功示例
{
"public_id": "86d05c46-87d5-4577-bfd0-ddd039541891",
"status": "finished",
"error": null,
"results": {
"twelvelabs": {
"error": null,
"id": "8dc526b3-6b66-4fea-9f9a-c83645f074b3",
"final_status": "finished",
"logos": [
{
"description": "Aston Martin",
"tracking": [
{
"timestamp": 1,
"bounding_box": {
"top": null,
"left": null,
"height": null,
"width": null
},
"confidence": 0.9650607705116272
}
]
}
]
},
"google": {
"error": null,
"id": "a5a66012-d0be-4ab1-9c65-0f6e1aeb449e",
"final_status": "finished",
"logos": [
{
"description": "Koh-i-Noor Hardtmuth",
"tracking": [
{
"timestamp": 5.5055,
"bounding_box": {
"top": 0.9172453,
"left": 0.45948356,
"height": 0.0425953,
"width": 0
},
"confidence": 0.8775759
},
{
"timestamp": 5.630625,
"bounding_box": {
"top": 0.9357612,
"left": 0.4651001,
"height": 0.0425953,
"width": 0
},
"confidence": 0.8775759
}
]
},
{
"description": "Wisconsin Badgers",
"tracking": [
{
"timestamp": 0,
"bounding_box": {
"top": 0.44206923,
"left": 0.5685801,
"height": 0.05217099000000003,
"width": 0
},
"confidence": 0.8602308
},
{
"timestamp": 0.125125,
"bounding_box": {
"top": 0.4430714,
"left": 0.5700027,
"height": 0.05217099999999997,
"width": 0
},
"confidence": 0.8602308
},
{
"timestamp": 0.25025,
"bounding_box": {
"top": 0.4451254,
"left": 0.56891847,
"height": 0.05217099999999997,
"width": 0
},
"confidence": 0.8602308
},
{
"timestamp": 0.375375,
"bounding_box": {
"top": 0.44717023,
"left": 0.56935227,
"height": 0.05217099000000003,
"width": 0
},
"confidence": 0.8602308
}
]
}
]
}
}
}
请求参数
Query 参数
response_as_dict
string
必需
示例值:
true
show_original_response
string
必需
示例值:
false
Header 参数
Authorization
string
必需
默认值:
Bearer <your_key>
返回响应
修改于 2024-04-10 09:38:22