1 Star 13 Fork 2

tencentcloud / tencentcloud-sdk-python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ft_client.py 6.67 KB
一键复制 编辑 原始数据 按行查看 历史
tencentcloud 提交于 2023-07-19 08:15 . release 3.0.938
# -*- coding: utf8 -*-
# Copyright (c) 2017-2021 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 json
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
from tencentcloud.common.abstract_client import AbstractClient
from tencentcloud.ft.v20200304 import models
class FtClient(AbstractClient):
_apiVersion = '2020-03-04'
_endpoint = 'ft.tencentcloudapi.com'
_service = 'ft'
def CancelFaceMorphJob(self, request):
"""撤销人像渐变任务请求
:param request: Request instance for CancelFaceMorphJob.
:type request: :class:`tencentcloud.ft.v20200304.models.CancelFaceMorphJobRequest`
:rtype: :class:`tencentcloud.ft.v20200304.models.CancelFaceMorphJobResponse`
"""
try:
params = request._serialize()
headers = request.headers
body = self.call("CancelFaceMorphJob", params, headers=headers)
response = json.loads(body)
model = models.CancelFaceMorphJobResponse()
model._deserialize(response["Response"])
return model
except Exception as e:
if isinstance(e, TencentCloudSDKException):
raise
else:
raise TencentCloudSDKException(type(e).__name__, str(e))
def ChangeAgePic(self, request):
"""用户上传一张人脸图片,基于人脸编辑与生成算法,输出一张人脸变老或变年轻的图片,支持实现人脸不同年龄的变化。
:param request: Request instance for ChangeAgePic.
:type request: :class:`tencentcloud.ft.v20200304.models.ChangeAgePicRequest`
:rtype: :class:`tencentcloud.ft.v20200304.models.ChangeAgePicResponse`
"""
try:
params = request._serialize()
headers = request.headers
body = self.call("ChangeAgePic", params, headers=headers)
response = json.loads(body)
model = models.ChangeAgePicResponse()
model._deserialize(response["Response"])
return model
except Exception as e:
if isinstance(e, TencentCloudSDKException):
raise
else:
raise TencentCloudSDKException(type(e).__name__, str(e))
def FaceCartoonPic(self, request):
"""输入一张人脸照片,生成个性化的二次元动漫形象,可用于打造个性头像、趣味活动、特效类应用等场景,提升社交娱乐的体验。
:param request: Request instance for FaceCartoonPic.
:type request: :class:`tencentcloud.ft.v20200304.models.FaceCartoonPicRequest`
:rtype: :class:`tencentcloud.ft.v20200304.models.FaceCartoonPicResponse`
"""
try:
params = request._serialize()
headers = request.headers
body = self.call("FaceCartoonPic", params, headers=headers)
response = json.loads(body)
model = models.FaceCartoonPicResponse()
model._deserialize(response["Response"])
return model
except Exception as e:
if isinstance(e, TencentCloudSDKException):
raise
else:
raise TencentCloudSDKException(type(e).__name__, str(e))
def MorphFace(self, request):
"""输入2-5张人脸照片,生成一段以人脸为焦点的渐变视频或GIF图,支持自定义图片播放速度、视频每秒传输帧数,可用于短视频、表情包、创意H5等应用场景,丰富静态图片的玩法。
:param request: Request instance for MorphFace.
:type request: :class:`tencentcloud.ft.v20200304.models.MorphFaceRequest`
:rtype: :class:`tencentcloud.ft.v20200304.models.MorphFaceResponse`
"""
try:
params = request._serialize()
headers = request.headers
body = self.call("MorphFace", params, headers=headers)
response = json.loads(body)
model = models.MorphFaceResponse()
model._deserialize(response["Response"])
return model
except Exception as e:
if isinstance(e, TencentCloudSDKException):
raise
else:
raise TencentCloudSDKException(type(e).__name__, str(e))
def QueryFaceMorphJob(self, request):
"""查询人像渐变处理进度
:param request: Request instance for QueryFaceMorphJob.
:type request: :class:`tencentcloud.ft.v20200304.models.QueryFaceMorphJobRequest`
:rtype: :class:`tencentcloud.ft.v20200304.models.QueryFaceMorphJobResponse`
"""
try:
params = request._serialize()
headers = request.headers
body = self.call("QueryFaceMorphJob", params, headers=headers)
response = json.loads(body)
model = models.QueryFaceMorphJobResponse()
model._deserialize(response["Response"])
return model
except Exception as e:
if isinstance(e, TencentCloudSDKException):
raise
else:
raise TencentCloudSDKException(type(e).__name__, str(e))
def SwapGenderPic(self, request):
"""用户上传一张人脸图片,基于人脸编辑与生成算法,输出一张人脸性别转换的图片。男变女可实现美颜、淡妆、加刘海和长发的效果;女变男可实现加胡须、变短发的效果。
:param request: Request instance for SwapGenderPic.
:type request: :class:`tencentcloud.ft.v20200304.models.SwapGenderPicRequest`
:rtype: :class:`tencentcloud.ft.v20200304.models.SwapGenderPicResponse`
"""
try:
params = request._serialize()
headers = request.headers
body = self.call("SwapGenderPic", params, headers=headers)
response = json.loads(body)
model = models.SwapGenderPicResponse()
model._deserialize(response["Response"])
return model
except Exception as e:
if isinstance(e, TencentCloudSDKException):
raise
else:
raise TencentCloudSDKException(type(e).__name__, str(e))
1
https://gitee.com/tencentcloud/tencentcloud-sdk-python.git
git@gitee.com:tencentcloud/tencentcloud-sdk-python.git
tencentcloud
tencentcloud-sdk-python
tencentcloud-sdk-python
master

搜索帮助