# -*- coding: utf8 -*-
# Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import warnings
from tencentcloud.common.abstract_model import AbstractModel
class AIAnalysisTemplateItem(AbstractModel):
"""AI 智能分析模板详情
"""
def __init__(self):
"""
:param Definition: 智能分析模板唯一标识。
:type Definition: int
:param Name: 智能分析模板名称。
:type Name: str
:param Comment: 智能分析模板描述信息。
:type Comment: str
:param ClassificationConfigure: 智能分类任务控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type ClassificationConfigure: :class:`tencentcloud.vod.v20180717.models.ClassificationConfigureInfo`
:param TagConfigure: 智能标签任务控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type TagConfigure: :class:`tencentcloud.vod.v20180717.models.TagConfigureInfo`
:param CoverConfigure: 智能封面任务控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type CoverConfigure: :class:`tencentcloud.vod.v20180717.models.CoverConfigureInfo`
:param FrameTagConfigure: 智能按帧标签任务控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type FrameTagConfigure: :class:`tencentcloud.vod.v20180717.models.FrameTagConfigureInfo`
:param HighlightConfigure: 智能精彩集锦任务控制参数。
:type HighlightConfigure: :class:`tencentcloud.vod.v20180717.models.HighlightsConfigureInfo`
:param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
:type CreateTime: str
:param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
:type UpdateTime: str
"""
self.Definition = None
self.Name = None
self.Comment = None
self.ClassificationConfigure = None
self.TagConfigure = None
self.CoverConfigure = None
self.FrameTagConfigure = None
self.HighlightConfigure = None
self.CreateTime = None
self.UpdateTime = None
def _deserialize(self, params):
self.Definition = params.get("Definition")
self.Name = params.get("Name")
self.Comment = params.get("Comment")
if params.get("ClassificationConfigure") is not None:
self.ClassificationConfigure = ClassificationConfigureInfo()
self.ClassificationConfigure._deserialize(params.get("ClassificationConfigure"))
if params.get("TagConfigure") is not None:
self.TagConfigure = TagConfigureInfo()
self.TagConfigure._deserialize(params.get("TagConfigure"))
if params.get("CoverConfigure") is not None:
self.CoverConfigure = CoverConfigureInfo()
self.CoverConfigure._deserialize(params.get("CoverConfigure"))
if params.get("FrameTagConfigure") is not None:
self.FrameTagConfigure = FrameTagConfigureInfo()
self.FrameTagConfigure._deserialize(params.get("FrameTagConfigure"))
if params.get("HighlightConfigure") is not None:
self.HighlightConfigure = HighlightsConfigureInfo()
self.HighlightConfigure._deserialize(params.get("HighlightConfigure"))
self.CreateTime = params.get("CreateTime")
self.UpdateTime = params.get("UpdateTime")
memeber_set = set(params.keys())
for name, value in vars(self).items():
if name in memeber_set:
memeber_set.remove(name)
if len(memeber_set) > 0:
warnings.warn("%s fileds are useless." % ",".join(memeber_set), Warning)
class AIRecognitionTemplateItem(AbstractModel):
"""视频内容识别模板详情
"""
def __init__(self):
"""
:param Definition: 视频内容识别模板唯一标识。
:type Definition: int
:param Name: 视频内容识别模板名称。
:type Name: str
:param Comment: 视频内容识别模板描述信息。
:type Comment: str
:param HeadTailConfigure: 头尾识别控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type HeadTailConfigure: :class:`tencentcloud.vod.v20180717.models.HeadTailConfigureInfo`
:param SegmentConfigure: 拆条识别控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type SegmentConfigure: :class:`tencentcloud.vod.v20180717.models.SegmentConfigureInfo`
:param FaceConfigure: 人脸识别控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type FaceConfigure: :class:`tencentcloud.vod.v20180717.models.FaceConfigureInfo`
:param OcrFullTextConfigure: 文本全文识别控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type OcrFullTextConfigure: :class:`tencentcloud.vod.v20180717.models.OcrFullTextConfigureInfo`
:param OcrWordsConfigure: 文本关键词识别控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type OcrWordsConfigure: :class:`tencentcloud.vod.v20180717.models.OcrWordsConfigureInfo`
:param AsrFullTextConfigure: 语音全文识别控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type AsrFullTextConfigure: :class:`tencentcloud.vod.v20180717.models.AsrFullTextConfigureInfo`
:param AsrWordsConfigure: 语音关键词识别控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type AsrWordsConfigure: :class:`tencentcloud.vod.v20180717.models.AsrWordsConfigureInfo`
:param ObjectConfigure: 物体识别控制参数。
注意:此字段可能返回 null,表示取不到有效值。
:type ObjectConfigure: :class:`tencentcloud.vod.v20180717.models.ObjectConfigureInfo`
:param ScreenshotInterval: 截图时间间隔,单位:秒。
:type ScreenshotInterval: float
:param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
:type CreateTime: str
:param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
:type UpdateTime: str
"""
self.Definition = None
self.Name = None
self.Comment = None
self.HeadTailConfigure = None
self.SegmentConfigure = None
self.FaceConfigure = None
self.OcrFullTextConfigure = None
self.OcrWordsConfigure = None
self.AsrFullTextConfigure = None
self.AsrWordsConfigure = None
self.ObjectConfigure = None
self.ScreenshotInterval = None
self.CreateTime = None
self.UpdateTime = None
def _deserialize(self, params):
self.Definition = params.get("Definition")
self.Name = params.get("Name")
self.Comment = params.get("Comment")
if params.get("HeadTailConfigure") is not None:
self.HeadTailConfigure = HeadTailConfigureInfo()
self.HeadTailConfigure._deserialize(params.get("HeadTailConfigure"))
挣扎的蓝藻
- 粉丝: 14w+
- 资源: 15万+
最新资源
- springboot078民宿在线预定平台.zip
- springboot078民宿在线预定平台_0303152757.zip
- springboot266基于Web的农产品直卖平台的设计与实现_0303174040.zip
- C#+Winform+SQLServer+图书管理系统
- 基于mobilenet的垃圾分类系统,TensorFlow开发
- springboot080房屋租赁管理系统的设计与实现.zip
- springboot079信息化在线教学平台的设计与实现.zip
- springboot267大学生科创项目在线管理系统的设计与实现.zip
- PL330 DMAC技术参考手册
- springboot082在线宠物用品交易网站的设计与实现.zip
- springboot267大学生科创项目在线管理系统的设计与实现_0303174040.zip
- springboot268码头船只货柜管理系统.zip
- springboot091创新创业教育中心项目申报管理系统a.zip
- 西门子smart200与3台台达MS300变频器通讯程序 器件:西门子s7 200 smart PLC,3台台达ms300变频器,昆仑通态触摸屏(带以太网),中途可以加路由器 控制方式:触摸屏与plc
- springboot268码头船只货柜管理系统_0303174040.zip
- springboot093基于springboot的厨艺交流平台的设计与实现代码.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈