DetectFaceResponse.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. * DetectFace返回参数结构体
  21. *
  22. * @method integer getImageWidth() 获取请求的图片宽度。
  23. * @method void setImageWidth(integer $ImageWidth) 设置请求的图片宽度。
  24. * @method integer getImageHeight() 获取请求的图片高度。
  25. * @method void setImageHeight(integer $ImageHeight) 设置请求的图片高度。
  26. * @method array getFaceInfos() 获取人脸信息列表。包含人脸坐标信息、属性信息(若需要)、质量分信息(若需要)。
  27. * @method void setFaceInfos(array $FaceInfos) 设置人脸信息列表。包含人脸坐标信息、属性信息(若需要)、质量分信息(若需要)。
  28. * @method string getFaceModelVersion() 获取人脸识别服务所用的算法模型版本。
  29. 目前入参支持 “2.0”和“3.0“ 两个输入。
  30. 2020年4月2日开始,默认为“3.0”,之前使用过本接口的账号若未填写本参数默认为“2.0”。
  31. 2020年11月26日后开通服务的账号仅支持输入“3.0”。
  32. 不同算法模型版本对应的人脸识别算法不同,新版本的整体效果会优于旧版本,建议使用“3.0”版本。
  33. * @method void setFaceModelVersion(string $FaceModelVersion) 设置人脸识别服务所用的算法模型版本。
  34. 目前入参支持 “2.0”和“3.0“ 两个输入。
  35. 2020年4月2日开始,默认为“3.0”,之前使用过本接口的账号若未填写本参数默认为“2.0”。
  36. 2020年11月26日后开通服务的账号仅支持输入“3.0”。
  37. 不同算法模型版本对应的人脸识别算法不同,新版本的整体效果会优于旧版本,建议使用“3.0”版本。
  38. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  39. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  40. */
  41. class DetectFaceResponse extends AbstractModel
  42. {
  43. /**
  44. * @var integer 请求的图片宽度。
  45. */
  46. public $ImageWidth;
  47. /**
  48. * @var integer 请求的图片高度。
  49. */
  50. public $ImageHeight;
  51. /**
  52. * @var array 人脸信息列表。包含人脸坐标信息、属性信息(若需要)、质量分信息(若需要)。
  53. */
  54. public $FaceInfos;
  55. /**
  56. * @var string 人脸识别服务所用的算法模型版本。
  57. 目前入参支持 “2.0”和“3.0“ 两个输入。
  58. 2020年4月2日开始,默认为“3.0”,之前使用过本接口的账号若未填写本参数默认为“2.0”。
  59. 2020年11月26日后开通服务的账号仅支持输入“3.0”。
  60. 不同算法模型版本对应的人脸识别算法不同,新版本的整体效果会优于旧版本,建议使用“3.0”版本。
  61. */
  62. public $FaceModelVersion;
  63. /**
  64. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  65. */
  66. public $RequestId;
  67. /**
  68. * @param integer $ImageWidth 请求的图片宽度。
  69. * @param integer $ImageHeight 请求的图片高度。
  70. * @param array $FaceInfos 人脸信息列表。包含人脸坐标信息、属性信息(若需要)、质量分信息(若需要)。
  71. * @param string $FaceModelVersion 人脸识别服务所用的算法模型版本。
  72. 目前入参支持 “2.0”和“3.0“ 两个输入。
  73. 2020年4月2日开始,默认为“3.0”,之前使用过本接口的账号若未填写本参数默认为“2.0”。
  74. 2020年11月26日后开通服务的账号仅支持输入“3.0”。
  75. 不同算法模型版本对应的人脸识别算法不同,新版本的整体效果会优于旧版本,建议使用“3.0”版本。
  76. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  77. */
  78. function __construct()
  79. {
  80. }
  81. /**
  82. * For internal only. DO NOT USE IT.
  83. */
  84. public function deserialize($param)
  85. {
  86. if ($param === null) {
  87. return;
  88. }
  89. if (array_key_exists("ImageWidth",$param) and $param["ImageWidth"] !== null) {
  90. $this->ImageWidth = $param["ImageWidth"];
  91. }
  92. if (array_key_exists("ImageHeight",$param) and $param["ImageHeight"] !== null) {
  93. $this->ImageHeight = $param["ImageHeight"];
  94. }
  95. if (array_key_exists("FaceInfos",$param) and $param["FaceInfos"] !== null) {
  96. $this->FaceInfos = [];
  97. foreach ($param["FaceInfos"] as $key => $value){
  98. $obj = new FaceInfo();
  99. $obj->deserialize($value);
  100. array_push($this->FaceInfos, $obj);
  101. }
  102. }
  103. if (array_key_exists("FaceModelVersion",$param) and $param["FaceModelVersion"] !== null) {
  104. $this->FaceModelVersion = $param["FaceModelVersion"];
  105. }
  106. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  107. $this->RequestId = $param["RequestId"];
  108. }
  109. }
  110. }