FaceQualityCompleteness.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. * 五官遮挡分,评价眉毛(Eyebrow)、眼睛(Eye)、鼻子(Nose)、脸颊(Cheek)、嘴巴(Mouth)、下巴(Chin)的被遮挡程度。
  21. *
  22. * @method integer getEyebrow() 获取眉毛的遮挡分数[0,100],分数越高遮挡越少。
  23. 参考范围:[0,80]表示发生遮挡。
  24. 注意:此字段可能返回 null,表示取不到有效值。
  25. * @method void setEyebrow(integer $Eyebrow) 设置眉毛的遮挡分数[0,100],分数越高遮挡越少。
  26. 参考范围:[0,80]表示发生遮挡。
  27. 注意:此字段可能返回 null,表示取不到有效值。
  28. * @method integer getEye() 获取眼睛的遮挡分数[0,100],分数越高遮挡越少。
  29. 参考范围:[0,80]表示发生遮挡。
  30. 注意:此字段可能返回 null,表示取不到有效值。
  31. * @method void setEye(integer $Eye) 设置眼睛的遮挡分数[0,100],分数越高遮挡越少。
  32. 参考范围:[0,80]表示发生遮挡。
  33. 注意:此字段可能返回 null,表示取不到有效值。
  34. * @method integer getNose() 获取鼻子的遮挡分数[0,100],分数越高遮挡越少。
  35. 参考范围:[0,60]表示发生遮挡。
  36. 注意:此字段可能返回 null,表示取不到有效值。
  37. * @method void setNose(integer $Nose) 设置鼻子的遮挡分数[0,100],分数越高遮挡越少。
  38. 参考范围:[0,60]表示发生遮挡。
  39. 注意:此字段可能返回 null,表示取不到有效值。
  40. * @method integer getCheek() 获取脸颊的遮挡分数[0,100],分数越高遮挡越少。
  41. 参考范围:[0,70]表示发生遮挡。
  42. 注意:此字段可能返回 null,表示取不到有效值。
  43. * @method void setCheek(integer $Cheek) 设置脸颊的遮挡分数[0,100],分数越高遮挡越少。
  44. 参考范围:[0,70]表示发生遮挡。
  45. 注意:此字段可能返回 null,表示取不到有效值。
  46. * @method integer getMouth() 获取嘴巴的遮挡分数[0,100],分数越高遮挡越少。
  47. 参考范围:[0,50]表示发生遮挡。
  48. 注意:此字段可能返回 null,表示取不到有效值。
  49. * @method void setMouth(integer $Mouth) 设置嘴巴的遮挡分数[0,100],分数越高遮挡越少。
  50. 参考范围:[0,50]表示发生遮挡。
  51. 注意:此字段可能返回 null,表示取不到有效值。
  52. * @method integer getChin() 获取下巴的遮挡分数[0,100],分数越高遮挡越少。
  53. 参考范围:[0,70]表示发生遮挡。
  54. 注意:此字段可能返回 null,表示取不到有效值。
  55. * @method void setChin(integer $Chin) 设置下巴的遮挡分数[0,100],分数越高遮挡越少。
  56. 参考范围:[0,70]表示发生遮挡。
  57. 注意:此字段可能返回 null,表示取不到有效值。
  58. */
  59. class FaceQualityCompleteness extends AbstractModel
  60. {
  61. /**
  62. * @var integer 眉毛的遮挡分数[0,100],分数越高遮挡越少。
  63. 参考范围:[0,80]表示发生遮挡。
  64. 注意:此字段可能返回 null,表示取不到有效值。
  65. */
  66. public $Eyebrow;
  67. /**
  68. * @var integer 眼睛的遮挡分数[0,100],分数越高遮挡越少。
  69. 参考范围:[0,80]表示发生遮挡。
  70. 注意:此字段可能返回 null,表示取不到有效值。
  71. */
  72. public $Eye;
  73. /**
  74. * @var integer 鼻子的遮挡分数[0,100],分数越高遮挡越少。
  75. 参考范围:[0,60]表示发生遮挡。
  76. 注意:此字段可能返回 null,表示取不到有效值。
  77. */
  78. public $Nose;
  79. /**
  80. * @var integer 脸颊的遮挡分数[0,100],分数越高遮挡越少。
  81. 参考范围:[0,70]表示发生遮挡。
  82. 注意:此字段可能返回 null,表示取不到有效值。
  83. */
  84. public $Cheek;
  85. /**
  86. * @var integer 嘴巴的遮挡分数[0,100],分数越高遮挡越少。
  87. 参考范围:[0,50]表示发生遮挡。
  88. 注意:此字段可能返回 null,表示取不到有效值。
  89. */
  90. public $Mouth;
  91. /**
  92. * @var integer 下巴的遮挡分数[0,100],分数越高遮挡越少。
  93. 参考范围:[0,70]表示发生遮挡。
  94. 注意:此字段可能返回 null,表示取不到有效值。
  95. */
  96. public $Chin;
  97. /**
  98. * @param integer $Eyebrow 眉毛的遮挡分数[0,100],分数越高遮挡越少。
  99. 参考范围:[0,80]表示发生遮挡。
  100. 注意:此字段可能返回 null,表示取不到有效值。
  101. * @param integer $Eye 眼睛的遮挡分数[0,100],分数越高遮挡越少。
  102. 参考范围:[0,80]表示发生遮挡。
  103. 注意:此字段可能返回 null,表示取不到有效值。
  104. * @param integer $Nose 鼻子的遮挡分数[0,100],分数越高遮挡越少。
  105. 参考范围:[0,60]表示发生遮挡。
  106. 注意:此字段可能返回 null,表示取不到有效值。
  107. * @param integer $Cheek 脸颊的遮挡分数[0,100],分数越高遮挡越少。
  108. 参考范围:[0,70]表示发生遮挡。
  109. 注意:此字段可能返回 null,表示取不到有效值。
  110. * @param integer $Mouth 嘴巴的遮挡分数[0,100],分数越高遮挡越少。
  111. 参考范围:[0,50]表示发生遮挡。
  112. 注意:此字段可能返回 null,表示取不到有效值。
  113. * @param integer $Chin 下巴的遮挡分数[0,100],分数越高遮挡越少。
  114. 参考范围:[0,70]表示发生遮挡。
  115. 注意:此字段可能返回 null,表示取不到有效值。
  116. */
  117. function __construct()
  118. {
  119. }
  120. /**
  121. * For internal only. DO NOT USE IT.
  122. */
  123. public function deserialize($param)
  124. {
  125. if ($param === null) {
  126. return;
  127. }
  128. if (array_key_exists("Eyebrow",$param) and $param["Eyebrow"] !== null) {
  129. $this->Eyebrow = $param["Eyebrow"];
  130. }
  131. if (array_key_exists("Eye",$param) and $param["Eye"] !== null) {
  132. $this->Eye = $param["Eye"];
  133. }
  134. if (array_key_exists("Nose",$param) and $param["Nose"] !== null) {
  135. $this->Nose = $param["Nose"];
  136. }
  137. if (array_key_exists("Cheek",$param) and $param["Cheek"] !== null) {
  138. $this->Cheek = $param["Cheek"];
  139. }
  140. if (array_key_exists("Mouth",$param) and $param["Mouth"] !== null) {
  141. $this->Mouth = $param["Mouth"];
  142. }
  143. if (array_key_exists("Chin",$param) and $param["Chin"] !== null) {
  144. $this->Chin = $param["Chin"];
  145. }
  146. }
  147. }