FaceRect.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. */
  39. class FaceRect extends AbstractModel
  40. {
  41. /**
  42. * @var integer 人脸框左上角横坐标。
  43. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  44. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  45. */
  46. public $X;
  47. /**
  48. * @var integer 人脸框左上角纵坐标。
  49. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  50. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  51. */
  52. public $Y;
  53. /**
  54. * @var integer 人脸宽度
  55. */
  56. public $Width;
  57. /**
  58. * @var integer 人脸高度
  59. */
  60. public $Height;
  61. /**
  62. * @param integer $X 人脸框左上角横坐标。
  63. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  64. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  65. * @param integer $Y 人脸框左上角纵坐标。
  66. 人脸框包含人脸五官位置并在此基础上进行一定的扩展,若人脸框超出图片范围,会导致坐标负值。
  67. 若需截取完整人脸,可以在完整分completess满足需求的情况下,将负值坐标取0。
  68. * @param integer $Width 人脸宽度
  69. * @param integer $Height 人脸高度
  70. */
  71. function __construct()
  72. {
  73. }
  74. /**
  75. * For internal only. DO NOT USE IT.
  76. */
  77. public function deserialize($param)
  78. {
  79. if ($param === null) {
  80. return;
  81. }
  82. if (array_key_exists("X",$param) and $param["X"] !== null) {
  83. $this->X = $param["X"];
  84. }
  85. if (array_key_exists("Y",$param) and $param["Y"] !== null) {
  86. $this->Y = $param["Y"];
  87. }
  88. if (array_key_exists("Width",$param) and $param["Width"] !== null) {
  89. $this->Width = $param["Width"];
  90. }
  91. if (array_key_exists("Height",$param) and $param["Height"] !== null) {
  92. $this->Height = $param["Height"];
  93. }
  94. }
  95. }