FaceShape.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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\V20200303\Models;
  18. use TencentCloud\Common\AbstractModel;
  19. /**
  20. * 五官定位(人脸关键点)具体信息。
  21. *
  22. * @method array getFaceProfile() 获取描述脸型轮廓的 21 点。
  23. * @method void setFaceProfile(array $FaceProfile) 设置描述脸型轮廓的 21 点。
  24. * @method array getLeftEye() 获取描述左侧眼睛轮廓的 8 点。
  25. * @method void setLeftEye(array $LeftEye) 设置描述左侧眼睛轮廓的 8 点。
  26. * @method array getRightEye() 获取描述右侧眼睛轮廓的 8 点。
  27. * @method void setRightEye(array $RightEye) 设置描述右侧眼睛轮廓的 8 点。
  28. * @method array getLeftEyeBrow() 获取描述左侧眉毛轮廓的 8 点。
  29. * @method void setLeftEyeBrow(array $LeftEyeBrow) 设置描述左侧眉毛轮廓的 8 点。
  30. * @method array getRightEyeBrow() 获取描述右侧眉毛轮廓的 8 点。
  31. * @method void setRightEyeBrow(array $RightEyeBrow) 设置描述右侧眉毛轮廓的 8 点。
  32. * @method array getMouth() 获取描述嘴巴轮廓的 22 点。
  33. * @method void setMouth(array $Mouth) 设置描述嘴巴轮廓的 22 点。
  34. * @method array getNose() 获取描述鼻子轮廓的 13 点。
  35. * @method void setNose(array $Nose) 设置描述鼻子轮廓的 13 点。
  36. * @method array getLeftPupil() 获取左瞳孔轮廓的 1 个点。
  37. * @method void setLeftPupil(array $LeftPupil) 设置左瞳孔轮廓的 1 个点。
  38. * @method array getRightPupil() 获取右瞳孔轮廓的 1 个点。
  39. * @method void setRightPupil(array $RightPupil) 设置右瞳孔轮廓的 1 个点。
  40. */
  41. class FaceShape extends AbstractModel
  42. {
  43. /**
  44. * @var array 描述脸型轮廓的 21 点。
  45. */
  46. public $FaceProfile;
  47. /**
  48. * @var array 描述左侧眼睛轮廓的 8 点。
  49. */
  50. public $LeftEye;
  51. /**
  52. * @var array 描述右侧眼睛轮廓的 8 点。
  53. */
  54. public $RightEye;
  55. /**
  56. * @var array 描述左侧眉毛轮廓的 8 点。
  57. */
  58. public $LeftEyeBrow;
  59. /**
  60. * @var array 描述右侧眉毛轮廓的 8 点。
  61. */
  62. public $RightEyeBrow;
  63. /**
  64. * @var array 描述嘴巴轮廓的 22 点。
  65. */
  66. public $Mouth;
  67. /**
  68. * @var array 描述鼻子轮廓的 13 点。
  69. */
  70. public $Nose;
  71. /**
  72. * @var array 左瞳孔轮廓的 1 个点。
  73. */
  74. public $LeftPupil;
  75. /**
  76. * @var array 右瞳孔轮廓的 1 个点。
  77. */
  78. public $RightPupil;
  79. /**
  80. * @param array $FaceProfile 描述脸型轮廓的 21 点。
  81. * @param array $LeftEye 描述左侧眼睛轮廓的 8 点。
  82. * @param array $RightEye 描述右侧眼睛轮廓的 8 点。
  83. * @param array $LeftEyeBrow 描述左侧眉毛轮廓的 8 点。
  84. * @param array $RightEyeBrow 描述右侧眉毛轮廓的 8 点。
  85. * @param array $Mouth 描述嘴巴轮廓的 22 点。
  86. * @param array $Nose 描述鼻子轮廓的 13 点。
  87. * @param array $LeftPupil 左瞳孔轮廓的 1 个点。
  88. * @param array $RightPupil 右瞳孔轮廓的 1 个点。
  89. */
  90. function __construct()
  91. {
  92. }
  93. /**
  94. * For internal only. DO NOT USE IT.
  95. */
  96. public function deserialize($param)
  97. {
  98. if ($param === null) {
  99. return;
  100. }
  101. if (array_key_exists("FaceProfile",$param) and $param["FaceProfile"] !== null) {
  102. $this->FaceProfile = [];
  103. foreach ($param["FaceProfile"] as $key => $value){
  104. $obj = new Point();
  105. $obj->deserialize($value);
  106. array_push($this->FaceProfile, $obj);
  107. }
  108. }
  109. if (array_key_exists("LeftEye",$param) and $param["LeftEye"] !== null) {
  110. $this->LeftEye = [];
  111. foreach ($param["LeftEye"] as $key => $value){
  112. $obj = new Point();
  113. $obj->deserialize($value);
  114. array_push($this->LeftEye, $obj);
  115. }
  116. }
  117. if (array_key_exists("RightEye",$param) and $param["RightEye"] !== null) {
  118. $this->RightEye = [];
  119. foreach ($param["RightEye"] as $key => $value){
  120. $obj = new Point();
  121. $obj->deserialize($value);
  122. array_push($this->RightEye, $obj);
  123. }
  124. }
  125. if (array_key_exists("LeftEyeBrow",$param) and $param["LeftEyeBrow"] !== null) {
  126. $this->LeftEyeBrow = [];
  127. foreach ($param["LeftEyeBrow"] as $key => $value){
  128. $obj = new Point();
  129. $obj->deserialize($value);
  130. array_push($this->LeftEyeBrow, $obj);
  131. }
  132. }
  133. if (array_key_exists("RightEyeBrow",$param) and $param["RightEyeBrow"] !== null) {
  134. $this->RightEyeBrow = [];
  135. foreach ($param["RightEyeBrow"] as $key => $value){
  136. $obj = new Point();
  137. $obj->deserialize($value);
  138. array_push($this->RightEyeBrow, $obj);
  139. }
  140. }
  141. if (array_key_exists("Mouth",$param) and $param["Mouth"] !== null) {
  142. $this->Mouth = [];
  143. foreach ($param["Mouth"] as $key => $value){
  144. $obj = new Point();
  145. $obj->deserialize($value);
  146. array_push($this->Mouth, $obj);
  147. }
  148. }
  149. if (array_key_exists("Nose",$param) and $param["Nose"] !== null) {
  150. $this->Nose = [];
  151. foreach ($param["Nose"] as $key => $value){
  152. $obj = new Point();
  153. $obj->deserialize($value);
  154. array_push($this->Nose, $obj);
  155. }
  156. }
  157. if (array_key_exists("LeftPupil",$param) and $param["LeftPupil"] !== null) {
  158. $this->LeftPupil = [];
  159. foreach ($param["LeftPupil"] as $key => $value){
  160. $obj = new Point();
  161. $obj->deserialize($value);
  162. array_push($this->LeftPupil, $obj);
  163. }
  164. }
  165. if (array_key_exists("RightPupil",$param) and $param["RightPupil"] !== null) {
  166. $this->RightPupil = [];
  167. foreach ($param["RightPupil"] as $key => $value){
  168. $obj = new Point();
  169. $obj->deserialize($value);
  170. array_push($this->RightPupil, $obj);
  171. }
  172. }
  173. }
  174. }