FaceInfo.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <?php
  2. /*
  3. * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. namespace TencentCloud\Iai\V20180301\Models;
  18. use TencentCloud\Common\AbstractModel;
  19. /**
  20. * 人脸信息列表。
  21. *
  22. * @method integer getX() 获取人脸框左上角横坐标。
  23. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  24. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  25. * @method void setX(integer $X) 设置人脸框左上角横坐标。
  26. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  27. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  28. * @method integer getY() 获取人脸框左上角纵坐标。
  29. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  30. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  31. * @method void setY(integer $Y) 设置人脸框左上角纵坐标。
  32. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  33. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  34. * @method integer getWidth() 获取人脸框宽度。
  35. * @method void setWidth(integer $Width) 设置人脸框宽度。
  36. * @method integer getHeight() 获取人脸框高度。
  37. * @method void setHeight(integer $Height) 设置人脸框高度。
  38. * @method FaceAttributesInfo getFaceAttributesInfo() 获取人脸属性信息,包含性别( gender )、年龄( age )、表情( expression )、
  39. 魅力( beauty )、眼镜( glass )、口罩(mask)、头发(hair)和姿态 (pitch,roll,yaw )。只有当 NeedFaceAttributes 设为 1 时才返回有效信息。
  40. * @method void setFaceAttributesInfo(FaceAttributesInfo $FaceAttributesInfo) 设置人脸属性信息,包含性别( gender )、年龄( age )、表情( expression )、
  41. 魅力( beauty )、眼镜( glass )、口罩(mask)、头发(hair)和姿态 (pitch,roll,yaw )。只有当 NeedFaceAttributes 设为 1 时才返回有效信息。
  42. * @method FaceQualityInfo getFaceQualityInfo() 获取人脸质量信息,包含质量分(score)、模糊分(sharpness)、光照分(brightness)、遮挡分(completeness)。只有当NeedFaceDetection设为1时才返回有效信息。
  43. 注意:此字段可能返回 null,表示取不到有效值。
  44. * @method void setFaceQualityInfo(FaceQualityInfo $FaceQualityInfo) 设置人脸质量信息,包含质量分(score)、模糊分(sharpness)、光照分(brightness)、遮挡分(completeness)。只有当NeedFaceDetection设为1时才返回有效信息。
  45. 注意:此字段可能返回 null,表示取不到有效值。
  46. */
  47. class FaceInfo extends AbstractModel
  48. {
  49. /**
  50. * @var integer 人脸框左上角横坐标。
  51. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  52. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  53. */
  54. public $X;
  55. /**
  56. * @var integer 人脸框左上角纵坐标。
  57. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  58. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  59. */
  60. public $Y;
  61. /**
  62. * @var integer 人脸框宽度。
  63. */
  64. public $Width;
  65. /**
  66. * @var integer 人脸框高度。
  67. */
  68. public $Height;
  69. /**
  70. * @var FaceAttributesInfo 人脸属性信息,包含性别( gender )、年龄( age )、表情( expression )、
  71. 魅力( beauty )、眼镜( glass )、口罩(mask)、头发(hair)和姿态 (pitch,roll,yaw )。只有当 NeedFaceAttributes 设为 1 时才返回有效信息。
  72. */
  73. public $FaceAttributesInfo;
  74. /**
  75. * @var FaceQualityInfo 人脸质量信息,包含质量分(score)、模糊分(sharpness)、光照分(brightness)、遮挡分(completeness)。只有当NeedFaceDetection设为1时才返回有效信息。
  76. 注意:此字段可能返回 null,表示取不到有效值。
  77. */
  78. public $FaceQualityInfo;
  79. /**
  80. * @param integer $X 人脸框左上角横坐标。
  81. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  82. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  83. * @param integer $Y 人脸框左上角纵坐标。
  84. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  85. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  86. * @param integer $Width 人脸框宽度。
  87. * @param integer $Height 人脸框高度。
  88. * @param FaceAttributesInfo $FaceAttributesInfo 人脸属性信息,包含性别( gender )、年龄( age )、表情( expression )、
  89. 魅力( beauty )、眼镜( glass )、口罩(mask)、头发(hair)和姿态 (pitch,roll,yaw )。只有当 NeedFaceAttributes 设为 1 时才返回有效信息。
  90. * @param FaceQualityInfo $FaceQualityInfo 人脸质量信息,包含质量分(score)、模糊分(sharpness)、光照分(brightness)、遮挡分(completeness)。只有当NeedFaceDetection设为1时才返回有效信息。
  91. 注意:此字段可能返回 null,表示取不到有效值。
  92. */
  93. function __construct()
  94. {
  95. }
  96. /**
  97. * For internal only. DO NOT USE IT.
  98. */
  99. public function deserialize($param)
  100. {
  101. if ($param === null) {
  102. return;
  103. }
  104. if (array_key_exists("X",$param) and $param["X"] !== null) {
  105. $this->X = $param["X"];
  106. }
  107. if (array_key_exists("Y",$param) and $param["Y"] !== null) {
  108. $this->Y = $param["Y"];
  109. }
  110. if (array_key_exists("Width",$param) and $param["Width"] !== null) {
  111. $this->Width = $param["Width"];
  112. }
  113. if (array_key_exists("Height",$param) and $param["Height"] !== null) {
  114. $this->Height = $param["Height"];
  115. }
  116. if (array_key_exists("FaceAttributesInfo",$param) and $param["FaceAttributesInfo"] !== null) {
  117. $this->FaceAttributesInfo = new FaceAttributesInfo();
  118. $this->FaceAttributesInfo->deserialize($param["FaceAttributesInfo"]);
  119. }
  120. if (array_key_exists("FaceQualityInfo",$param) and $param["FaceQualityInfo"] !== null) {
  121. $this->FaceQualityInfo = new FaceQualityInfo();
  122. $this->FaceQualityInfo->deserialize($param["FaceQualityInfo"]);
  123. }
  124. }
  125. }