tencentcloud-sdk-python 3.0.1423__py2.py3-none-any.whl → 3.0.1425__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/ai3d/v20250513/models.py +2 -2
- tencentcloud/aiart/v20221229/models.py +2 -2
- tencentcloud/batch/v20170312/errorcodes.py +3 -0
- tencentcloud/cbs/v20170312/errorcodes.py +3 -0
- tencentcloud/ccc/v20200210/models.py +2 -2
- tencentcloud/cdb/v20170320/models.py +4 -4
- tencentcloud/cfg/v20210820/models.py +15 -0
- tencentcloud/cfs/v20190719/models.py +90 -0
- tencentcloud/csip/v20221121/models.py +32 -2
- tencentcloud/ctem/v20231128/ctem_client.py +92 -0
- tencentcloud/ctem/v20231128/models.py +2739 -1053
- tencentcloud/cwp/v20180228/models.py +15 -0
- tencentcloud/cynosdb/v20190107/models.py +45 -0
- tencentcloud/eb/v20210416/models.py +8 -8
- tencentcloud/ess/v20201111/ess_client.py +52 -0
- tencentcloud/ess/v20201111/models.py +445 -0
- tencentcloud/iai/v20180301/iai_client.py +0 -1
- tencentcloud/iai/v20180301/models.py +168 -126
- tencentcloud/igtm/v20231024/models.py +10 -144
- tencentcloud/ims/v20201229/errorcodes.py +3 -0
- tencentcloud/iss/v20230517/models.py +4 -8
- tencentcloud/lighthouse/v20200324/models.py +15 -0
- tencentcloud/live/v20180801/models.py +591 -0
- tencentcloud/lke/v20231130/models.py +4 -4
- tencentcloud/lkeap/v20240522/errorcodes.py +3 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +3 -0
- tencentcloud/lkeap/v20240522/models.py +194 -104
- tencentcloud/mongodb/v20190725/models.py +4 -2
- tencentcloud/monitor/v20180724/models.py +52 -6
- tencentcloud/mps/v20190612/models.py +576 -144
- tencentcloud/mps/v20190612/mps_client.py +26 -0
- tencentcloud/ocr/v20181119/models.py +42 -24
- tencentcloud/omics/v20221128/models.py +15 -0
- tencentcloud/scf/v20180416/errorcodes.py +93 -0
- tencentcloud/tcbr/v20220217/models.py +15 -0
- tencentcloud/teo/v20220901/models.py +7772 -5903
- tencentcloud/teo/v20220901/teo_client.py +322 -0
- tencentcloud/tione/v20211111/models.py +15 -0
- tencentcloud/tke/v20180525/models.py +95 -0
- tencentcloud/trtc/v20190722/models.py +2583 -725
- tencentcloud/trtc/v20190722/trtc_client.py +194 -0
- tencentcloud/tsf/v20180326/errorcodes.py +1 -1
- tencentcloud/tts/v20190823/tts_client.py +1 -1
- tencentcloud/vod/v20180717/errorcodes.py +3 -0
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/wedata/v20210820/errorcodes.py +12 -0
- tencentcloud/wedata/v20210820/models.py +865 -2
- tencentcloud/wedata/v20210820/wedata_client.py +161 -0
- {tencentcloud_sdk_python-3.0.1423.dist-info → tencentcloud_sdk_python-3.0.1425.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1423.dist-info → tencentcloud_sdk_python-3.0.1425.dist-info}/RECORD +54 -54
- {tencentcloud_sdk_python-3.0.1423.dist-info → tencentcloud_sdk_python-3.0.1425.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1423.dist-info → tencentcloud_sdk_python-3.0.1425.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1423.dist-info → tencentcloud_sdk_python-3.0.1425.dist-info}/top_level.txt +0 -0
@@ -471,9 +471,11 @@ class AttributeItem(AbstractModel):
|
|
471
471
|
|
472
472
|
def __init__(self):
|
473
473
|
r"""
|
474
|
-
:param _Type:
|
474
|
+
:param _Type: 属性值。
|
475
475
|
:type Type: int
|
476
|
-
:param _Probability: Type
|
476
|
+
:param _Probability: Type识别概率值。
|
477
|
+
- 取值范围:[0,1]。
|
478
|
+
- 代表判断正确的概率。
|
477
479
|
:type Probability: float
|
478
480
|
"""
|
479
481
|
self._Type = None
|
@@ -481,7 +483,7 @@ class AttributeItem(AbstractModel):
|
|
481
483
|
|
482
484
|
@property
|
483
485
|
def Type(self):
|
484
|
-
"""
|
486
|
+
"""属性值。
|
485
487
|
:rtype: int
|
486
488
|
"""
|
487
489
|
return self._Type
|
@@ -492,7 +494,9 @@ class AttributeItem(AbstractModel):
|
|
492
494
|
|
493
495
|
@property
|
494
496
|
def Probability(self):
|
495
|
-
"""Type
|
497
|
+
"""Type识别概率值。
|
498
|
+
- 取值范围:[0,1]。
|
499
|
+
- 代表判断正确的概率。
|
496
500
|
:rtype: float
|
497
501
|
"""
|
498
502
|
return self._Probability
|
@@ -2440,20 +2444,21 @@ class DetectFaceAttributesRequest(AbstractModel):
|
|
2440
2444
|
def __init__(self):
|
2441
2445
|
r"""
|
2442
2446
|
:param _MaxFaceNum: 最多处理的人脸数目。
|
2443
|
-
默认值为1(仅检测图片中面积最大的那张人脸),最大值为120。
|
2444
|
-
此参数用于控制处理待检测图片中的人脸个数,值越小,处理速度越快。
|
2447
|
+
- 默认值为1(仅检测图片中面积最大的那张人脸),最大值为120。
|
2448
|
+
- 此参数用于控制处理待检测图片中的人脸个数,值越小,处理速度越快。
|
2445
2449
|
:type MaxFaceNum: int
|
2446
|
-
:param _Image: 图片 base64
|
2447
|
-
|
2448
|
-
|
2450
|
+
:param _Image: 图片 base64 数据。
|
2451
|
+
- base64 编码后大小不可超过5M。
|
2452
|
+
- jpg格式长边像素不可超过4000,其他格式图片长边像素不可超2000。
|
2453
|
+
- 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
2449
2454
|
:type Image: str
|
2450
2455
|
:param _Url: 图片的 Url 。
|
2451
|
-
对应图片 base64 编码后大小不可超过5M。
|
2452
|
-
jpg格式长边像素不可超过4000,其他格式图片长边像素不可超2000。
|
2453
|
-
Url、Image必须提供一个,如果都提供,只使用 Url。
|
2454
|
-
图片存储于腾讯云的Url可保障更高下载速度和稳定性,建议图片存储于腾讯云。
|
2455
|
-
非腾讯云存储的Url速度和稳定性可能受一定影响。
|
2456
|
-
支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
2456
|
+
- 对应图片 base64 编码后大小不可超过5M。
|
2457
|
+
- jpg格式长边像素不可超过4000,其他格式图片长边像素不可超2000。
|
2458
|
+
- Url、Image必须提供一个,如果都提供,只使用 Url。
|
2459
|
+
- 图片存储于腾讯云的Url可保障更高下载速度和稳定性,建议图片存储于腾讯云。
|
2460
|
+
- 非腾讯云存储的Url速度和稳定性可能受一定影响。
|
2461
|
+
- 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
2457
2462
|
:type Url: str
|
2458
2463
|
:param _FaceAttributesType: 是否返回年龄、性别、情绪等属性。
|
2459
2464
|
合法值为(大小写不敏感):None、Age、Beauty、Emotion、Eye、Eyebrow、
|
@@ -2463,7 +2468,11 @@ None为不需要返回。默认为 None。即FaceAttributesType属性为空时
|
|
2463
2468
|
关于各属性的详细描述,参见下文出参。
|
2464
2469
|
最多返回面积最大的 5 张人脸属性信息,超过 5 张人脸(第 6 张及以后的人脸)的 AttributesInfo 不具备参考意义。
|
2465
2470
|
:type FaceAttributesType: str
|
2466
|
-
:param _NeedRotateDetection: 是否开启图片旋转识别支持。
|
2471
|
+
:param _NeedRotateDetection: 是否开启图片旋转识别支持。
|
2472
|
+
- 0为不开启,1为开启。
|
2473
|
+
- 默认为0。
|
2474
|
+
- 本参数的作用为,当图片中的人脸被旋转且图片没有exif信息时,如果不开启图片旋转识别支持则无法正确检测、识别图片中的人脸。
|
2475
|
+
- 若您确认图片包含exif信息或者您确认输入图中人脸不会出现被旋转情况,请不要开启本参数。开启后,整体耗时将可能增加数百毫秒。
|
2467
2476
|
:type NeedRotateDetection: int
|
2468
2477
|
:param _FaceModelVersion: 人脸识别服务所用的算法模型版本。本接口仅支持“3.0”输入
|
2469
2478
|
:type FaceModelVersion: str
|
@@ -2478,8 +2487,8 @@ None为不需要返回。默认为 None。即FaceAttributesType属性为空时
|
|
2478
2487
|
@property
|
2479
2488
|
def MaxFaceNum(self):
|
2480
2489
|
"""最多处理的人脸数目。
|
2481
|
-
默认值为1(仅检测图片中面积最大的那张人脸),最大值为120。
|
2482
|
-
此参数用于控制处理待检测图片中的人脸个数,值越小,处理速度越快。
|
2490
|
+
- 默认值为1(仅检测图片中面积最大的那张人脸),最大值为120。
|
2491
|
+
- 此参数用于控制处理待检测图片中的人脸个数,值越小,处理速度越快。
|
2483
2492
|
:rtype: int
|
2484
2493
|
"""
|
2485
2494
|
return self._MaxFaceNum
|
@@ -2490,9 +2499,10 @@ None为不需要返回。默认为 None。即FaceAttributesType属性为空时
|
|
2490
2499
|
|
2491
2500
|
@property
|
2492
2501
|
def Image(self):
|
2493
|
-
"""图片 base64
|
2494
|
-
|
2495
|
-
|
2502
|
+
"""图片 base64 数据。
|
2503
|
+
- base64 编码后大小不可超过5M。
|
2504
|
+
- jpg格式长边像素不可超过4000,其他格式图片长边像素不可超2000。
|
2505
|
+
- 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
2496
2506
|
:rtype: str
|
2497
2507
|
"""
|
2498
2508
|
return self._Image
|
@@ -2504,12 +2514,12 @@ jpg格式长边像素不可超过4000,其他格式图片长边像素不可超2
|
|
2504
2514
|
@property
|
2505
2515
|
def Url(self):
|
2506
2516
|
"""图片的 Url 。
|
2507
|
-
对应图片 base64 编码后大小不可超过5M。
|
2508
|
-
jpg格式长边像素不可超过4000,其他格式图片长边像素不可超2000。
|
2509
|
-
Url、Image必须提供一个,如果都提供,只使用 Url。
|
2510
|
-
图片存储于腾讯云的Url可保障更高下载速度和稳定性,建议图片存储于腾讯云。
|
2511
|
-
非腾讯云存储的Url速度和稳定性可能受一定影响。
|
2512
|
-
支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
2517
|
+
- 对应图片 base64 编码后大小不可超过5M。
|
2518
|
+
- jpg格式长边像素不可超过4000,其他格式图片长边像素不可超2000。
|
2519
|
+
- Url、Image必须提供一个,如果都提供,只使用 Url。
|
2520
|
+
- 图片存储于腾讯云的Url可保障更高下载速度和稳定性,建议图片存储于腾讯云。
|
2521
|
+
- 非腾讯云存储的Url速度和稳定性可能受一定影响。
|
2522
|
+
- 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
|
2513
2523
|
:rtype: str
|
2514
2524
|
"""
|
2515
2525
|
return self._Url
|
@@ -2537,7 +2547,11 @@ None为不需要返回。默认为 None。即FaceAttributesType属性为空时
|
|
2537
2547
|
|
2538
2548
|
@property
|
2539
2549
|
def NeedRotateDetection(self):
|
2540
|
-
"""是否开启图片旋转识别支持。
|
2550
|
+
"""是否开启图片旋转识别支持。
|
2551
|
+
- 0为不开启,1为开启。
|
2552
|
+
- 默认为0。
|
2553
|
+
- 本参数的作用为,当图片中的人脸被旋转且图片没有exif信息时,如果不开启图片旋转识别支持则无法正确检测、识别图片中的人脸。
|
2554
|
+
- 若您确认图片包含exif信息或者您确认输入图中人脸不会出现被旋转情况,请不要开启本参数。开启后,整体耗时将可能增加数百毫秒。
|
2541
2555
|
:rtype: int
|
2542
2556
|
"""
|
2543
2557
|
return self._NeedRotateDetection
|
@@ -3121,16 +3135,16 @@ class Eye(AbstractModel):
|
|
3121
3135
|
def __init__(self):
|
3122
3136
|
r"""
|
3123
3137
|
:param _Glass: 识别是否佩戴眼镜。
|
3124
|
-
AttributeItem对应的Type为 —— 0:无眼镜,1:普通眼镜,2
|
3138
|
+
- AttributeItem对应的Type为 —— 0:无眼镜,1:普通眼镜,2:墨镜。
|
3125
3139
|
:type Glass: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3126
3140
|
:param _EyeOpen: 识别眼睛的睁开、闭合状态。
|
3127
|
-
AttributeItem对应的Type为 —— 0:睁开,1
|
3141
|
+
- AttributeItem对应的Type为 —— 0:睁开,1:闭眼。
|
3128
3142
|
:type EyeOpen: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3129
3143
|
:param _EyelidType: 识别是否双眼皮。
|
3130
|
-
AttributeItem对应的Type为 —— 0:无,1:有。
|
3144
|
+
- AttributeItem对应的Type为 —— 0:无,1:有。
|
3131
3145
|
:type EyelidType: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3132
3146
|
:param _EyeSize: 眼睛大小。
|
3133
|
-
AttributeItem对应的Type为 —— 0:小眼睛,1:普通眼睛,2:大眼睛。
|
3147
|
+
- AttributeItem对应的Type为 —— 0:小眼睛,1:普通眼睛,2:大眼睛。
|
3134
3148
|
:type EyeSize: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3135
3149
|
"""
|
3136
3150
|
self._Glass = None
|
@@ -3141,7 +3155,7 @@ AttributeItem对应的Type为 —— 0:小眼睛,1:普通眼睛,2:大
|
|
3141
3155
|
@property
|
3142
3156
|
def Glass(self):
|
3143
3157
|
"""识别是否佩戴眼镜。
|
3144
|
-
AttributeItem对应的Type为 —— 0:无眼镜,1:普通眼镜,2
|
3158
|
+
- AttributeItem对应的Type为 —— 0:无眼镜,1:普通眼镜,2:墨镜。
|
3145
3159
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3146
3160
|
"""
|
3147
3161
|
return self._Glass
|
@@ -3153,7 +3167,7 @@ AttributeItem对应的Type为 —— 0:无眼镜,1:普通眼镜,2:墨
|
|
3153
3167
|
@property
|
3154
3168
|
def EyeOpen(self):
|
3155
3169
|
"""识别眼睛的睁开、闭合状态。
|
3156
|
-
AttributeItem对应的Type为 —— 0:睁开,1
|
3170
|
+
- AttributeItem对应的Type为 —— 0:睁开,1:闭眼。
|
3157
3171
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3158
3172
|
"""
|
3159
3173
|
return self._EyeOpen
|
@@ -3165,7 +3179,7 @@ AttributeItem对应的Type为 —— 0:睁开,1:闭眼
|
|
3165
3179
|
@property
|
3166
3180
|
def EyelidType(self):
|
3167
3181
|
"""识别是否双眼皮。
|
3168
|
-
AttributeItem对应的Type为 —— 0:无,1:有。
|
3182
|
+
- AttributeItem对应的Type为 —— 0:无,1:有。
|
3169
3183
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3170
3184
|
"""
|
3171
3185
|
return self._EyelidType
|
@@ -3177,7 +3191,7 @@ AttributeItem对应的Type为 —— 0:无,1:有。
|
|
3177
3191
|
@property
|
3178
3192
|
def EyeSize(self):
|
3179
3193
|
"""眼睛大小。
|
3180
|
-
AttributeItem对应的Type为 —— 0:小眼睛,1:普通眼睛,2:大眼睛。
|
3194
|
+
- AttributeItem对应的Type为 —— 0:小眼睛,1:普通眼睛,2:大眼睛。
|
3181
3195
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3182
3196
|
"""
|
3183
3197
|
return self._EyeSize
|
@@ -3218,13 +3232,13 @@ class Eyebrow(AbstractModel):
|
|
3218
3232
|
def __init__(self):
|
3219
3233
|
r"""
|
3220
3234
|
:param _EyebrowDensity: 眉毛浓密。
|
3221
|
-
AttributeItem对应的Type为 —— 0:淡眉,1:浓眉。
|
3235
|
+
- AttributeItem对应的Type为 —— 0:淡眉,1:浓眉。
|
3222
3236
|
:type EyebrowDensity: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3223
3237
|
:param _EyebrowCurve: 眉毛弯曲。
|
3224
|
-
AttributeItem对应的Type为
|
3238
|
+
- AttributeItem对应的Type为 —— 0:不弯,1:弯眉。
|
3225
3239
|
:type EyebrowCurve: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3226
3240
|
:param _EyebrowLength: 眉毛长短。
|
3227
|
-
AttributeItem对应的Type为 —— 0:短眉毛,1:长眉毛。
|
3241
|
+
- AttributeItem对应的Type为 —— 0:短眉毛,1:长眉毛。
|
3228
3242
|
:type EyebrowLength: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3229
3243
|
"""
|
3230
3244
|
self._EyebrowDensity = None
|
@@ -3234,7 +3248,7 @@ AttributeItem对应的Type为 —— 0:短眉毛,1:长眉毛。
|
|
3234
3248
|
@property
|
3235
3249
|
def EyebrowDensity(self):
|
3236
3250
|
"""眉毛浓密。
|
3237
|
-
AttributeItem对应的Type为 —— 0:淡眉,1:浓眉。
|
3251
|
+
- AttributeItem对应的Type为 —— 0:淡眉,1:浓眉。
|
3238
3252
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3239
3253
|
"""
|
3240
3254
|
return self._EyebrowDensity
|
@@ -3246,7 +3260,7 @@ AttributeItem对应的Type为 —— 0:淡眉,1:浓眉。
|
|
3246
3260
|
@property
|
3247
3261
|
def EyebrowCurve(self):
|
3248
3262
|
"""眉毛弯曲。
|
3249
|
-
AttributeItem对应的Type为
|
3263
|
+
- AttributeItem对应的Type为 —— 0:不弯,1:弯眉。
|
3250
3264
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3251
3265
|
"""
|
3252
3266
|
return self._EyebrowCurve
|
@@ -3258,7 +3272,7 @@ AttributeItem对应的Type为 —— 0:不弯,1:弯眉。
|
|
3258
3272
|
@property
|
3259
3273
|
def EyebrowLength(self):
|
3260
3274
|
"""眉毛长短。
|
3261
|
-
AttributeItem对应的Type为 —— 0:短眉毛,1:长眉毛。
|
3275
|
+
- AttributeItem对应的Type为 —— 0:短眉毛,1:长眉毛。
|
3262
3276
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3263
3277
|
"""
|
3264
3278
|
return self._EyebrowLength
|
@@ -3517,60 +3531,70 @@ class FaceDetailAttributesInfo(AbstractModel):
|
|
3517
3531
|
|
3518
3532
|
def __init__(self):
|
3519
3533
|
r"""
|
3520
|
-
:param _Age:
|
3521
|
-
|
3534
|
+
:param _Age: 年龄。
|
3535
|
+
- 取值范围:[0,65],其中65代表“65岁及以上”。
|
3536
|
+
- FaceAttributesType 不含Age 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3522
3537
|
:type Age: int
|
3523
|
-
:param _Beauty:
|
3524
|
-
|
3538
|
+
:param _Beauty: 美丑打分。
|
3539
|
+
- 取值范围:[0,100]。
|
3540
|
+
- FaceAttributesType不含 Beauty或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3525
3541
|
:type Beauty: int
|
3526
3542
|
:param _Emotion: 情绪,可识别自然、高兴、惊讶、生气、悲伤、厌恶、害怕。
|
3527
|
-
AttributeItem对应的Type为 —— 0:自然,1:高兴,2:惊讶,3:生气,4:悲伤,5:厌恶,6
|
3528
|
-
FaceAttributesType 不含Emotion 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3543
|
+
- AttributeItem对应的Type为 —— 0:自然,1:高兴,2:惊讶,3:生气,4:悲伤,5:厌恶,6:害怕。
|
3544
|
+
- FaceAttributesType 不含Emotion 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3529
3545
|
:type Emotion: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3530
|
-
:param _Eye:
|
3531
|
-
|
3546
|
+
:param _Eye: 眼睛相关信息。
|
3547
|
+
- 可识别是否戴眼镜、是否闭眼、是否双眼皮和眼睛大小。
|
3548
|
+
- FaceAttributesType 不含Eye 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3532
3549
|
:type Eye: :class:`tencentcloud.iai.v20180301.models.Eye`
|
3533
|
-
:param _Eyebrow:
|
3534
|
-
|
3550
|
+
:param _Eyebrow: 眉毛相关信息。
|
3551
|
+
- 可识别眉毛浓密、弯曲、长短信息。
|
3552
|
+
- FaceAttributesType 不含Eyebrow 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3535
3553
|
:type Eyebrow: :class:`tencentcloud.iai.v20180301.models.Eyebrow`
|
3536
3554
|
:param _Gender: 性别信息。
|
3537
|
-
AttributeItem对应的Type为 ——
|
3538
|
-
FaceAttributesType 不含Gender 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3555
|
+
- AttributeItem对应的Type为 —— 0:男性,1:女性。
|
3556
|
+
- FaceAttributesType 不含Gender 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3539
3557
|
:type Gender: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3540
|
-
:param _Hair:
|
3541
|
-
|
3558
|
+
:param _Hair: 头发信息。
|
3559
|
+
- 包含头发长度、有无刘海、头发颜色。
|
3560
|
+
- FaceAttributesType 不含Hair 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3542
3561
|
:type Hair: :class:`tencentcloud.iai.v20180301.models.Hair`
|
3543
|
-
:param _Hat:
|
3544
|
-
|
3562
|
+
:param _Hat: 帽子信息。
|
3563
|
+
|
3564
|
+
- 可识别是否佩戴帽子、帽子款式、帽子颜色。
|
3565
|
+
- FaceAttributesType 不含Hat 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3545
3566
|
:type Hat: :class:`tencentcloud.iai.v20180301.models.Hat`
|
3546
|
-
:param _HeadPose:
|
3547
|
-
|
3567
|
+
:param _HeadPose: 姿态信息。
|
3568
|
+
- 包含人脸的上下偏移、左右偏移、平面旋转信息。
|
3569
|
+
- FaceAttributesType 不含Headpose 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3548
3570
|
:type HeadPose: :class:`tencentcloud.iai.v20180301.models.HeadPose`
|
3549
3571
|
:param _Mask: 口罩佩戴信息。
|
3550
|
-
AttributeItem对应的Type为 —— 0: 无口罩, 1: 有口罩不遮脸,2: 有口罩遮下巴,3: 有口罩遮嘴,4: 正确佩戴口罩。
|
3551
|
-
FaceAttributesType 不含Mask 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3572
|
+
- AttributeItem对应的Type为 —— 0: 无口罩, 1: 有口罩不遮脸,2: 有口罩遮下巴,3: 有口罩遮嘴,4: 正确佩戴口罩。
|
3573
|
+
- FaceAttributesType 不含Mask 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3552
3574
|
:type Mask: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3553
|
-
:param _Mouth:
|
3554
|
-
|
3575
|
+
:param _Mouth: 嘴巴信息。
|
3576
|
+
- 可识别是否张嘴、嘴唇厚度。
|
3577
|
+
- FaceAttributesType 不含 Mouth 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3555
3578
|
:type Mouth: :class:`tencentcloud.iai.v20180301.models.Mouth`
|
3556
3579
|
:param _Moustache: 胡子信息。
|
3557
|
-
AttributeItem对应的Type为 —— 0:无胡子,1:有胡子。
|
3558
|
-
FaceAttributesType 不含 Moustache 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3580
|
+
- AttributeItem对应的Type为 —— 0:无胡子,1:有胡子。
|
3581
|
+
- FaceAttributesType 不含 Moustache 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3559
3582
|
:type Moustache: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3560
3583
|
:param _Nose: 鼻子信息。
|
3561
|
-
AttributeItem对应的Type为 —— 0:朝天鼻,1:鹰钩鼻,2:普通,3
|
3562
|
-
FaceAttributesType 不含 Nose 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3584
|
+
- AttributeItem对应的Type为 —— 0:朝天鼻,1:鹰钩鼻,2:普通,3:圆鼻头。
|
3585
|
+
- FaceAttributesType 不含 Nose 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3563
3586
|
:type Nose: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3564
3587
|
:param _Shape: 脸型信息。
|
3565
|
-
AttributeItem对应的Type为 —— 0:方脸,1:三角脸,2:鹅蛋脸,3:心形脸,4:圆脸。
|
3566
|
-
FaceAttributesType 不含 Shape 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3588
|
+
- AttributeItem对应的Type为 —— 0:方脸,1:三角脸,2:鹅蛋脸,3:心形脸,4:圆脸。
|
3589
|
+
- FaceAttributesType 不含 Shape 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3567
3590
|
:type Shape: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3568
3591
|
:param _Skin: 肤色信息。
|
3569
|
-
AttributeItem对应的Type为 ——
|
3570
|
-
FaceAttributesType 不含 Skin 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3592
|
+
- AttributeItem对应的Type为 —— 0:黄色皮肤,1:棕色皮肤,2:黑色皮肤,3:白色皮肤。
|
3593
|
+
- FaceAttributesType 不含 Skin 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3571
3594
|
:type Skin: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3572
|
-
:param _Smile:
|
3573
|
-
|
3595
|
+
:param _Smile: 微笑程度。
|
3596
|
+
- 取值范围:[0,100]。
|
3597
|
+
- FaceAttributesType 不含 Smile 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3574
3598
|
:type Smile: int
|
3575
3599
|
"""
|
3576
3600
|
self._Age = None
|
@@ -3592,8 +3616,9 @@ FaceAttributesType 不含 Smile 或检测超过 5 张人脸时,此参数仍返
|
|
3592
3616
|
|
3593
3617
|
@property
|
3594
3618
|
def Age(self):
|
3595
|
-
"""
|
3596
|
-
|
3619
|
+
"""年龄。
|
3620
|
+
- 取值范围:[0,65],其中65代表“65岁及以上”。
|
3621
|
+
- FaceAttributesType 不含Age 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3597
3622
|
:rtype: int
|
3598
3623
|
"""
|
3599
3624
|
return self._Age
|
@@ -3604,8 +3629,9 @@ FaceAttributesType 不含Age 或检测超过 5 张人脸时,此参数仍返回
|
|
3604
3629
|
|
3605
3630
|
@property
|
3606
3631
|
def Beauty(self):
|
3607
|
-
"""
|
3608
|
-
|
3632
|
+
"""美丑打分。
|
3633
|
+
- 取值范围:[0,100]。
|
3634
|
+
- FaceAttributesType不含 Beauty或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3609
3635
|
:rtype: int
|
3610
3636
|
"""
|
3611
3637
|
return self._Beauty
|
@@ -3617,8 +3643,8 @@ FaceAttributesType 不含 Beauty 或检测超过 5 张人脸时,此参数仍
|
|
3617
3643
|
@property
|
3618
3644
|
def Emotion(self):
|
3619
3645
|
"""情绪,可识别自然、高兴、惊讶、生气、悲伤、厌恶、害怕。
|
3620
|
-
AttributeItem对应的Type为 —— 0:自然,1:高兴,2:惊讶,3:生气,4:悲伤,5:厌恶,6
|
3621
|
-
FaceAttributesType 不含Emotion 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3646
|
+
- AttributeItem对应的Type为 —— 0:自然,1:高兴,2:惊讶,3:生气,4:悲伤,5:厌恶,6:害怕。
|
3647
|
+
- FaceAttributesType 不含Emotion 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3622
3648
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3623
3649
|
"""
|
3624
3650
|
return self._Emotion
|
@@ -3629,8 +3655,9 @@ FaceAttributesType 不含Emotion 或检测超过 5 张人脸时,此参数仍
|
|
3629
3655
|
|
3630
3656
|
@property
|
3631
3657
|
def Eye(self):
|
3632
|
-
"""
|
3633
|
-
|
3658
|
+
"""眼睛相关信息。
|
3659
|
+
- 可识别是否戴眼镜、是否闭眼、是否双眼皮和眼睛大小。
|
3660
|
+
- FaceAttributesType 不含Eye 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3634
3661
|
:rtype: :class:`tencentcloud.iai.v20180301.models.Eye`
|
3635
3662
|
"""
|
3636
3663
|
return self._Eye
|
@@ -3641,8 +3668,9 @@ FaceAttributesType 不含Eye 或检测超过 5 张人脸时,此参数仍返回
|
|
3641
3668
|
|
3642
3669
|
@property
|
3643
3670
|
def Eyebrow(self):
|
3644
|
-
"""
|
3645
|
-
|
3671
|
+
"""眉毛相关信息。
|
3672
|
+
- 可识别眉毛浓密、弯曲、长短信息。
|
3673
|
+
- FaceAttributesType 不含Eyebrow 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3646
3674
|
:rtype: :class:`tencentcloud.iai.v20180301.models.Eyebrow`
|
3647
3675
|
"""
|
3648
3676
|
return self._Eyebrow
|
@@ -3654,8 +3682,8 @@ FaceAttributesType 不含Eyebrow 或检测超过 5 张人脸时,此参数仍
|
|
3654
3682
|
@property
|
3655
3683
|
def Gender(self):
|
3656
3684
|
"""性别信息。
|
3657
|
-
AttributeItem对应的Type为 ——
|
3658
|
-
FaceAttributesType 不含Gender 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3685
|
+
- AttributeItem对应的Type为 —— 0:男性,1:女性。
|
3686
|
+
- FaceAttributesType 不含Gender 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3659
3687
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3660
3688
|
"""
|
3661
3689
|
return self._Gender
|
@@ -3666,8 +3694,9 @@ FaceAttributesType 不含Gender 或检测超过 5 张人脸时,此参数仍返
|
|
3666
3694
|
|
3667
3695
|
@property
|
3668
3696
|
def Hair(self):
|
3669
|
-
"""
|
3670
|
-
|
3697
|
+
"""头发信息。
|
3698
|
+
- 包含头发长度、有无刘海、头发颜色。
|
3699
|
+
- FaceAttributesType 不含Hair 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3671
3700
|
:rtype: :class:`tencentcloud.iai.v20180301.models.Hair`
|
3672
3701
|
"""
|
3673
3702
|
return self._Hair
|
@@ -3678,8 +3707,10 @@ FaceAttributesType 不含Hair 或检测超过 5 张人脸时,此参数仍返
|
|
3678
3707
|
|
3679
3708
|
@property
|
3680
3709
|
def Hat(self):
|
3681
|
-
"""
|
3682
|
-
|
3710
|
+
"""帽子信息。
|
3711
|
+
|
3712
|
+
- 可识别是否佩戴帽子、帽子款式、帽子颜色。
|
3713
|
+
- FaceAttributesType 不含Hat 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3683
3714
|
:rtype: :class:`tencentcloud.iai.v20180301.models.Hat`
|
3684
3715
|
"""
|
3685
3716
|
return self._Hat
|
@@ -3690,8 +3721,9 @@ FaceAttributesType 不含Hat 或检测超过 5 张人脸时,此参数仍返回
|
|
3690
3721
|
|
3691
3722
|
@property
|
3692
3723
|
def HeadPose(self):
|
3693
|
-
"""
|
3694
|
-
|
3724
|
+
"""姿态信息。
|
3725
|
+
- 包含人脸的上下偏移、左右偏移、平面旋转信息。
|
3726
|
+
- FaceAttributesType 不含Headpose 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3695
3727
|
:rtype: :class:`tencentcloud.iai.v20180301.models.HeadPose`
|
3696
3728
|
"""
|
3697
3729
|
return self._HeadPose
|
@@ -3703,8 +3735,8 @@ FaceAttributesType 不含Headpose 或检测超过 5 张人脸时,此参数仍
|
|
3703
3735
|
@property
|
3704
3736
|
def Mask(self):
|
3705
3737
|
"""口罩佩戴信息。
|
3706
|
-
AttributeItem对应的Type为 —— 0: 无口罩, 1: 有口罩不遮脸,2: 有口罩遮下巴,3: 有口罩遮嘴,4: 正确佩戴口罩。
|
3707
|
-
FaceAttributesType 不含Mask 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3738
|
+
- AttributeItem对应的Type为 —— 0: 无口罩, 1: 有口罩不遮脸,2: 有口罩遮下巴,3: 有口罩遮嘴,4: 正确佩戴口罩。
|
3739
|
+
- FaceAttributesType 不含Mask 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3708
3740
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3709
3741
|
"""
|
3710
3742
|
return self._Mask
|
@@ -3715,8 +3747,9 @@ FaceAttributesType 不含Mask 或检测超过 5 张人脸时,此参数仍返
|
|
3715
3747
|
|
3716
3748
|
@property
|
3717
3749
|
def Mouth(self):
|
3718
|
-
"""
|
3719
|
-
|
3750
|
+
"""嘴巴信息。
|
3751
|
+
- 可识别是否张嘴、嘴唇厚度。
|
3752
|
+
- FaceAttributesType 不含 Mouth 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3720
3753
|
:rtype: :class:`tencentcloud.iai.v20180301.models.Mouth`
|
3721
3754
|
"""
|
3722
3755
|
return self._Mouth
|
@@ -3728,8 +3761,8 @@ FaceAttributesType 不含 Mouth 或检测超过 5 张人脸时,此参数仍返
|
|
3728
3761
|
@property
|
3729
3762
|
def Moustache(self):
|
3730
3763
|
"""胡子信息。
|
3731
|
-
AttributeItem对应的Type为 —— 0:无胡子,1:有胡子。
|
3732
|
-
FaceAttributesType 不含 Moustache 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3764
|
+
- AttributeItem对应的Type为 —— 0:无胡子,1:有胡子。
|
3765
|
+
- FaceAttributesType 不含 Moustache 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3733
3766
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3734
3767
|
"""
|
3735
3768
|
return self._Moustache
|
@@ -3741,8 +3774,8 @@ FaceAttributesType 不含 Moustache 或检测超过 5 张人脸时,此参数
|
|
3741
3774
|
@property
|
3742
3775
|
def Nose(self):
|
3743
3776
|
"""鼻子信息。
|
3744
|
-
AttributeItem对应的Type为 —— 0:朝天鼻,1:鹰钩鼻,2:普通,3
|
3745
|
-
FaceAttributesType 不含 Nose 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3777
|
+
- AttributeItem对应的Type为 —— 0:朝天鼻,1:鹰钩鼻,2:普通,3:圆鼻头。
|
3778
|
+
- FaceAttributesType 不含 Nose 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3746
3779
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3747
3780
|
"""
|
3748
3781
|
return self._Nose
|
@@ -3754,8 +3787,8 @@ FaceAttributesType 不含 Nose 或检测超过 5 张人脸时,此参数仍返
|
|
3754
3787
|
@property
|
3755
3788
|
def Shape(self):
|
3756
3789
|
"""脸型信息。
|
3757
|
-
AttributeItem对应的Type为 —— 0:方脸,1:三角脸,2:鹅蛋脸,3:心形脸,4:圆脸。
|
3758
|
-
FaceAttributesType 不含 Shape 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3790
|
+
- AttributeItem对应的Type为 —— 0:方脸,1:三角脸,2:鹅蛋脸,3:心形脸,4:圆脸。
|
3791
|
+
- FaceAttributesType 不含 Shape 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3759
3792
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3760
3793
|
"""
|
3761
3794
|
return self._Shape
|
@@ -3767,8 +3800,8 @@ FaceAttributesType 不含 Shape 或检测超过 5 张人脸时,此参数仍返
|
|
3767
3800
|
@property
|
3768
3801
|
def Skin(self):
|
3769
3802
|
"""肤色信息。
|
3770
|
-
AttributeItem对应的Type为 ——
|
3771
|
-
FaceAttributesType 不含 Skin 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3803
|
+
- AttributeItem对应的Type为 —— 0:黄色皮肤,1:棕色皮肤,2:黑色皮肤,3:白色皮肤。
|
3804
|
+
- FaceAttributesType 不含 Skin 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3772
3805
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
3773
3806
|
"""
|
3774
3807
|
return self._Skin
|
@@ -3779,8 +3812,9 @@ FaceAttributesType 不含 Skin 或检测超过 5 张人脸时,此参数仍返
|
|
3779
3812
|
|
3780
3813
|
@property
|
3781
3814
|
def Smile(self):
|
3782
|
-
"""
|
3783
|
-
|
3815
|
+
"""微笑程度。
|
3816
|
+
- 取值范围:[0,100]。
|
3817
|
+
- FaceAttributesType 不含 Smile 或检测超过 5 张人脸时,此参数仍返回,但不具备参考意义。
|
3784
3818
|
:rtype: int
|
3785
3819
|
"""
|
3786
3820
|
return self._Smile
|
@@ -5966,13 +6000,13 @@ class Hair(AbstractModel):
|
|
5966
6000
|
def __init__(self):
|
5967
6001
|
r"""
|
5968
6002
|
:param _Length: 头发长度信息。
|
5969
|
-
AttributeItem对应的Type为 —— 0:光头,1:短发,2:中发,3:长发,4:绑发。
|
6003
|
+
- AttributeItem对应的Type为 —— 0:光头,1:短发,2:中发,3:长发,4:绑发。
|
5970
6004
|
:type Length: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
5971
6005
|
:param _Bang: 刘海信息。
|
5972
|
-
AttributeItem对应的Type为 —— 0:无刘海,1:有刘海。
|
6006
|
+
- AttributeItem对应的Type为 —— 0:无刘海,1:有刘海。
|
5973
6007
|
:type Bang: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
5974
6008
|
:param _Color: 头发颜色信息。
|
5975
|
-
AttributeItem对应的Type为 —— 0:黑色,1:金色,2:棕色,3:灰白色。
|
6009
|
+
- AttributeItem对应的Type为 —— 0:黑色,1:金色,2:棕色,3:灰白色。
|
5976
6010
|
:type Color: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
5977
6011
|
"""
|
5978
6012
|
self._Length = None
|
@@ -5982,7 +6016,7 @@ AttributeItem对应的Type为 —— 0:黑色,1:金色,2:棕色,3:
|
|
5982
6016
|
@property
|
5983
6017
|
def Length(self):
|
5984
6018
|
"""头发长度信息。
|
5985
|
-
AttributeItem对应的Type为 —— 0:光头,1:短发,2:中发,3:长发,4:绑发。
|
6019
|
+
- AttributeItem对应的Type为 —— 0:光头,1:短发,2:中发,3:长发,4:绑发。
|
5986
6020
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
5987
6021
|
"""
|
5988
6022
|
return self._Length
|
@@ -5994,7 +6028,7 @@ AttributeItem对应的Type为 —— 0:光头,1:短发,2:中发,3:
|
|
5994
6028
|
@property
|
5995
6029
|
def Bang(self):
|
5996
6030
|
"""刘海信息。
|
5997
|
-
AttributeItem对应的Type为 —— 0:无刘海,1:有刘海。
|
6031
|
+
- AttributeItem对应的Type为 —— 0:无刘海,1:有刘海。
|
5998
6032
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
5999
6033
|
"""
|
6000
6034
|
return self._Bang
|
@@ -6006,7 +6040,7 @@ AttributeItem对应的Type为 —— 0:无刘海,1:有刘海。
|
|
6006
6040
|
@property
|
6007
6041
|
def Color(self):
|
6008
6042
|
"""头发颜色信息。
|
6009
|
-
AttributeItem对应的Type为 —— 0:黑色,1:金色,2:棕色,3:灰白色。
|
6043
|
+
- AttributeItem对应的Type为 —— 0:黑色,1:金色,2:棕色,3:灰白色。
|
6010
6044
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
6011
6045
|
"""
|
6012
6046
|
return self._Color
|
@@ -6044,10 +6078,10 @@ class Hat(AbstractModel):
|
|
6044
6078
|
def __init__(self):
|
6045
6079
|
r"""
|
6046
6080
|
:param _Style: 帽子佩戴状态信息。
|
6047
|
-
AttributeItem对应的Type为 —— 0:不戴帽子,1:普通帽子,2:头盔,3:保安帽。
|
6081
|
+
- AttributeItem对应的Type为 —— 0:不戴帽子,1:普通帽子,2:头盔,3:保安帽。
|
6048
6082
|
:type Style: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
6049
6083
|
:param _Color: 帽子颜色。
|
6050
|
-
AttributeItem对应的Type为 —— 0:不戴帽子,1:红色系,2:黄色系,3:蓝色系,4:黑色系,5:灰白色系,6:混色系。
|
6084
|
+
- AttributeItem对应的Type为 —— 0:不戴帽子,1:红色系,2:黄色系,3:蓝色系,4:黑色系,5:灰白色系,6:混色系。
|
6051
6085
|
:type Color: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
6052
6086
|
"""
|
6053
6087
|
self._Style = None
|
@@ -6056,7 +6090,7 @@ AttributeItem对应的Type为 —— 0:不戴帽子,1:红色系,2:黄
|
|
6056
6090
|
@property
|
6057
6091
|
def Style(self):
|
6058
6092
|
"""帽子佩戴状态信息。
|
6059
|
-
AttributeItem对应的Type为 —— 0:不戴帽子,1:普通帽子,2:头盔,3:保安帽。
|
6093
|
+
- AttributeItem对应的Type为 —— 0:不戴帽子,1:普通帽子,2:头盔,3:保安帽。
|
6060
6094
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
6061
6095
|
"""
|
6062
6096
|
return self._Style
|
@@ -6068,7 +6102,7 @@ AttributeItem对应的Type为 —— 0:不戴帽子,1:普通帽子,2:
|
|
6068
6102
|
@property
|
6069
6103
|
def Color(self):
|
6070
6104
|
"""帽子颜色。
|
6071
|
-
AttributeItem对应的Type为 —— 0:不戴帽子,1:红色系,2:黄色系,3:蓝色系,4:黑色系,5:灰白色系,6:混色系。
|
6105
|
+
- AttributeItem对应的Type为 —— 0:不戴帽子,1:红色系,2:黄色系,3:蓝色系,4:黑色系,5:灰白色系,6:混色系。
|
6072
6106
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
6073
6107
|
"""
|
6074
6108
|
return self._Color
|
@@ -6102,11 +6136,14 @@ class HeadPose(AbstractModel):
|
|
6102
6136
|
|
6103
6137
|
def __init__(self):
|
6104
6138
|
r"""
|
6105
|
-
:param _Pitch:
|
6139
|
+
:param _Pitch: 上下偏移。
|
6140
|
+
- 取值范围:[-30,30]。
|
6106
6141
|
:type Pitch: int
|
6107
|
-
:param _Yaw:
|
6142
|
+
:param _Yaw: 左右偏移。
|
6143
|
+
- 取值范围:[-30,30]。
|
6108
6144
|
:type Yaw: int
|
6109
|
-
:param _Roll:
|
6145
|
+
:param _Roll: 平面旋转。
|
6146
|
+
- 取值范围:[-180,180]。
|
6110
6147
|
:type Roll: int
|
6111
6148
|
"""
|
6112
6149
|
self._Pitch = None
|
@@ -6115,7 +6152,8 @@ class HeadPose(AbstractModel):
|
|
6115
6152
|
|
6116
6153
|
@property
|
6117
6154
|
def Pitch(self):
|
6118
|
-
"""
|
6155
|
+
"""上下偏移。
|
6156
|
+
- 取值范围:[-30,30]。
|
6119
6157
|
:rtype: int
|
6120
6158
|
"""
|
6121
6159
|
return self._Pitch
|
@@ -6126,7 +6164,8 @@ class HeadPose(AbstractModel):
|
|
6126
6164
|
|
6127
6165
|
@property
|
6128
6166
|
def Yaw(self):
|
6129
|
-
"""
|
6167
|
+
"""左右偏移。
|
6168
|
+
- 取值范围:[-30,30]。
|
6130
6169
|
:rtype: int
|
6131
6170
|
"""
|
6132
6171
|
return self._Yaw
|
@@ -6137,7 +6176,8 @@ class HeadPose(AbstractModel):
|
|
6137
6176
|
|
6138
6177
|
@property
|
6139
6178
|
def Roll(self):
|
6140
|
-
"""
|
6179
|
+
"""平面旋转。
|
6180
|
+
- 取值范围:[-180,180]。
|
6141
6181
|
:rtype: int
|
6142
6182
|
"""
|
6143
6183
|
return self._Roll
|
@@ -6475,16 +6515,18 @@ class Mouth(AbstractModel):
|
|
6475
6515
|
|
6476
6516
|
def __init__(self):
|
6477
6517
|
r"""
|
6478
|
-
:param _MouthOpen: 是否张嘴信息。
|
6479
|
-
|
6518
|
+
:param _MouthOpen: 是否张嘴信息。
|
6519
|
+
|
6520
|
+
- AttributeItem对应的Type为 —— 0:不张嘴,1:张嘴。
|
6480
6521
|
:type MouthOpen: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
6481
6522
|
"""
|
6482
6523
|
self._MouthOpen = None
|
6483
6524
|
|
6484
6525
|
@property
|
6485
6526
|
def MouthOpen(self):
|
6486
|
-
"""是否张嘴信息。
|
6487
|
-
|
6527
|
+
"""是否张嘴信息。
|
6528
|
+
|
6529
|
+
- AttributeItem对应的Type为 —— 0:不张嘴,1:张嘴。
|
6488
6530
|
:rtype: :class:`tencentcloud.iai.v20180301.models.AttributeItem`
|
6489
6531
|
"""
|
6490
6532
|
return self._MouthOpen
|