tencentcloud-sdk-python-vclm 3.0.1336__py2.py3-none-any.whl → 3.0.1338__py2.py3-none-any.whl
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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/vclm/v20240523/models.py +58 -4
- {tencentcloud_sdk_python_vclm-3.0.1336.dist-info → tencentcloud_sdk_python_vclm-3.0.1338.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_vclm-3.0.1338.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_vclm-3.0.1336.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_vclm-3.0.1336.dist-info → tencentcloud_sdk_python_vclm-3.0.1338.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_vclm-3.0.1336.dist-info → tencentcloud_sdk_python_vclm-3.0.1338.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -38,13 +38,22 @@ class CheckAnimateImageJobRequest(AbstractModel):
|
|
38
38
|
图片大小:不超过10M;
|
39
39
|
图片宽高比:【宽:高】数值在 1:2 到 1:1.2 范围内
|
40
40
|
:type ImageBase64: str
|
41
|
-
:param _EnableBodyJoins:
|
41
|
+
:param _EnableBodyJoins: 是否对输入图采用加强检测方案。
|
42
|
+
|
43
|
+
默认不加强检测(false),仅对输入图做必要的基础检测。
|
44
|
+
|
45
|
+
开启加强检测(true)有助于提升效果稳定性,将根据选择的动作模板提取建议的人体关键点,并判断输入图中是否包含这些人体关键点。加强检测仅对人像输入图生效,对非人输入图不生效。
|
42
46
|
:type EnableBodyJoins: bool
|
47
|
+
:param _EnableFace: 是否开启人脸检测。
|
48
|
+
|
49
|
+
默认开启人脸检测(true),拦截主体为人像但无人脸、人脸不完整或被遮挡的输入图。可选关闭人脸检测(false)。
|
50
|
+
:type EnableFace: bool
|
43
51
|
"""
|
44
52
|
self._TemplateId = None
|
45
53
|
self._ImageUrl = None
|
46
54
|
self._ImageBase64 = None
|
47
55
|
self._EnableBodyJoins = None
|
56
|
+
self._EnableFace = None
|
48
57
|
|
49
58
|
@property
|
50
59
|
def TemplateId(self):
|
@@ -88,7 +97,11 @@ class CheckAnimateImageJobRequest(AbstractModel):
|
|
88
97
|
|
89
98
|
@property
|
90
99
|
def EnableBodyJoins(self):
|
91
|
-
"""
|
100
|
+
"""是否对输入图采用加强检测方案。
|
101
|
+
|
102
|
+
默认不加强检测(false),仅对输入图做必要的基础检测。
|
103
|
+
|
104
|
+
开启加强检测(true)有助于提升效果稳定性,将根据选择的动作模板提取建议的人体关键点,并判断输入图中是否包含这些人体关键点。加强检测仅对人像输入图生效,对非人输入图不生效。
|
92
105
|
:rtype: bool
|
93
106
|
"""
|
94
107
|
return self._EnableBodyJoins
|
@@ -97,12 +110,26 @@ class CheckAnimateImageJobRequest(AbstractModel):
|
|
97
110
|
def EnableBodyJoins(self, EnableBodyJoins):
|
98
111
|
self._EnableBodyJoins = EnableBodyJoins
|
99
112
|
|
113
|
+
@property
|
114
|
+
def EnableFace(self):
|
115
|
+
"""是否开启人脸检测。
|
116
|
+
|
117
|
+
默认开启人脸检测(true),拦截主体为人像但无人脸、人脸不完整或被遮挡的输入图。可选关闭人脸检测(false)。
|
118
|
+
:rtype: bool
|
119
|
+
"""
|
120
|
+
return self._EnableFace
|
121
|
+
|
122
|
+
@EnableFace.setter
|
123
|
+
def EnableFace(self, EnableFace):
|
124
|
+
self._EnableFace = EnableFace
|
125
|
+
|
100
126
|
|
101
127
|
def _deserialize(self, params):
|
102
128
|
self._TemplateId = params.get("TemplateId")
|
103
129
|
self._ImageUrl = params.get("ImageUrl")
|
104
130
|
self._ImageBase64 = params.get("ImageBase64")
|
105
131
|
self._EnableBodyJoins = params.get("EnableBodyJoins")
|
132
|
+
self._EnableFace = params.get("EnableFace")
|
106
133
|
memeber_set = set(params.keys())
|
107
134
|
for name, value in vars(self).items():
|
108
135
|
property_name = name[1:]
|
@@ -773,7 +800,11 @@ class SubmitImageAnimateJobRequest(AbstractModel):
|
|
773
800
|
:type TemplateId: str
|
774
801
|
:param _EnableAudio: 结果视频是否保留模板音频。默认为true
|
775
802
|
:type EnableAudio: bool
|
776
|
-
:param _EnableBodyJoins:
|
803
|
+
:param _EnableBodyJoins: 是否对输入图采用加强检测方案。
|
804
|
+
|
805
|
+
默认不加强检测(false),仅对输入图做必要的基础检测。
|
806
|
+
|
807
|
+
开启加强检测(true)有助于提升效果稳定性,将根据选择的动作模板提取建议的人体关键点,并判断输入图中是否包含这些人体关键点。加强检测仅对人像输入图生效,对非人输入图不生效。
|
777
808
|
:type EnableBodyJoins: bool
|
778
809
|
:param _EnableSegment: 是否对结果视频背景进行分割,默认值为false。
|
779
810
|
true:分割结果视频,结果视频(ResultVideoUrl)将为去除背景的绿幕视频,并返回掩码视频(MaskVideoUrl);
|
@@ -788,6 +819,10 @@ false:不分割结果视频,结果视频(ResultVideoUrl)为带背景的
|
|
788
819
|
:param _LogoParam: 标识内容设置。
|
789
820
|
默认在生成视频的右下角添加“视频由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。
|
790
821
|
:type LogoParam: :class:`tencentcloud.vclm.v20240523.models.LogoParam`
|
822
|
+
:param _EnableFace: 是否开启人脸检测。
|
823
|
+
|
824
|
+
默认开启人脸检测(true),拦截主体为人像但无人脸、人脸不完整或被遮挡的输入图。可选关闭人脸检测(false)。
|
825
|
+
:type EnableFace: bool
|
791
826
|
"""
|
792
827
|
self._ImageUrl = None
|
793
828
|
self._ImageBase64 = None
|
@@ -797,6 +832,7 @@ false:不分割结果视频,结果视频(ResultVideoUrl)为带背景的
|
|
797
832
|
self._EnableSegment = None
|
798
833
|
self._LogoAdd = None
|
799
834
|
self._LogoParam = None
|
835
|
+
self._EnableFace = None
|
800
836
|
|
801
837
|
@property
|
802
838
|
def ImageUrl(self):
|
@@ -852,7 +888,11 @@ false:不分割结果视频,结果视频(ResultVideoUrl)为带背景的
|
|
852
888
|
|
853
889
|
@property
|
854
890
|
def EnableBodyJoins(self):
|
855
|
-
"""
|
891
|
+
"""是否对输入图采用加强检测方案。
|
892
|
+
|
893
|
+
默认不加强检测(false),仅对输入图做必要的基础检测。
|
894
|
+
|
895
|
+
开启加强检测(true)有助于提升效果稳定性,将根据选择的动作模板提取建议的人体关键点,并判断输入图中是否包含这些人体关键点。加强检测仅对人像输入图生效,对非人输入图不生效。
|
856
896
|
:rtype: bool
|
857
897
|
"""
|
858
898
|
return self._EnableBodyJoins
|
@@ -901,6 +941,19 @@ false:不分割结果视频,结果视频(ResultVideoUrl)为带背景的
|
|
901
941
|
def LogoParam(self, LogoParam):
|
902
942
|
self._LogoParam = LogoParam
|
903
943
|
|
944
|
+
@property
|
945
|
+
def EnableFace(self):
|
946
|
+
"""是否开启人脸检测。
|
947
|
+
|
948
|
+
默认开启人脸检测(true),拦截主体为人像但无人脸、人脸不完整或被遮挡的输入图。可选关闭人脸检测(false)。
|
949
|
+
:rtype: bool
|
950
|
+
"""
|
951
|
+
return self._EnableFace
|
952
|
+
|
953
|
+
@EnableFace.setter
|
954
|
+
def EnableFace(self, EnableFace):
|
955
|
+
self._EnableFace = EnableFace
|
956
|
+
|
904
957
|
|
905
958
|
def _deserialize(self, params):
|
906
959
|
self._ImageUrl = params.get("ImageUrl")
|
@@ -913,6 +966,7 @@ false:不分割结果视频,结果视频(ResultVideoUrl)为带背景的
|
|
913
966
|
if params.get("LogoParam") is not None:
|
914
967
|
self._LogoParam = LogoParam()
|
915
968
|
self._LogoParam._deserialize(params.get("LogoParam"))
|
969
|
+
self._EnableFace = params.get("EnableFace")
|
916
970
|
memeber_set = set(params.keys())
|
917
971
|
for name, value in vars(self).items():
|
918
972
|
property_name = name[1:]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tencentcloud-sdk-python-vclm
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1338
|
4
4
|
Summary: Tencent Cloud Vclm SDK for Python
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
6
6
|
Author: Tencent Cloud
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (==3.0.
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1338)
|
19
19
|
|
20
20
|
============================
|
21
21
|
Tencent Cloud SDK for Python
|
@@ -0,0 +1,10 @@
|
|
1
|
+
tencentcloud/__init__.py,sha256=QwmYO2Ggr3xJjjiEbAkHPjGqVYGWQt4plN2_Z-20G2g,631
|
2
|
+
tencentcloud/vclm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
+
tencentcloud/vclm/v20240523/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
tencentcloud/vclm/v20240523/errorcodes.py,sha256=9maT3xwdz7ChktOL82XfO0tZhy5NZ-bbaJSaow-KU44,7411
|
5
|
+
tencentcloud/vclm/v20240523/models.py,sha256=FiLMbEkbvux0ZqasJ6j56tLTkLDd0XnAsXbrY5X3bVU,44808
|
6
|
+
tencentcloud/vclm/v20240523/vclm_client.py,sha256=W9ZoqgF3SZrhu-SJmGVrVI9H5KmROOkuFd7kNRy5lms,8304
|
7
|
+
tencentcloud_sdk_python_vclm-3.0.1338.dist-info/METADATA,sha256=v5ybB_sCzMxTicK4Ud0HiIzXXrTs8XeAGRZFU8dX1yU,1501
|
8
|
+
tencentcloud_sdk_python_vclm-3.0.1338.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
+
tencentcloud_sdk_python_vclm-3.0.1338.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
+
tencentcloud_sdk_python_vclm-3.0.1338.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=94mKuLtTEMHlX3haNDa-oyukTTQztQanRFEP9xGpGZQ,631
|
2
|
-
tencentcloud/vclm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
tencentcloud/vclm/v20240523/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
tencentcloud/vclm/v20240523/errorcodes.py,sha256=9maT3xwdz7ChktOL82XfO0tZhy5NZ-bbaJSaow-KU44,7411
|
5
|
-
tencentcloud/vclm/v20240523/models.py,sha256=yZJm3Me070MTsNnMWYoa-08sBP8plIhq5h6zhqrCza4,42548
|
6
|
-
tencentcloud/vclm/v20240523/vclm_client.py,sha256=W9ZoqgF3SZrhu-SJmGVrVI9H5KmROOkuFd7kNRy5lms,8304
|
7
|
-
tencentcloud_sdk_python_vclm-3.0.1336.dist-info/METADATA,sha256=hzGY7rEONT48yvB8zJgEvTsT0KGqkJe6dDuV2caTc_4,1501
|
8
|
-
tencentcloud_sdk_python_vclm-3.0.1336.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
-
tencentcloud_sdk_python_vclm-3.0.1336.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
-
tencentcloud_sdk_python_vclm-3.0.1336.dist-info/RECORD,,
|
File without changes
|
File without changes
|