AipBodyAnalysis.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. /*
  3. * Copyright (c) 2017 Baidu.com, Inc. All Rights Reserved
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * 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, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. require_once 'lib/AipBase.php';
  18. class AipBodyAnalysis extends AipBase {
  19. /**
  20. * 人体关键点识别 body_analysis api url
  21. * @var string
  22. */
  23. private $bodyAnalysisUrl = 'https://aip.baidubce.com/rest/2.0/image-classify/v1/body_analysis';
  24. /**
  25. * 人体属性识别 body_attr api url
  26. * @var string
  27. */
  28. private $bodyAttrUrl = 'https://aip.baidubce.com/rest/2.0/image-classify/v1/body_attr';
  29. /**
  30. * 人流量统计 body_num api url
  31. * @var string
  32. */
  33. private $bodyNumUrl = 'https://aip.baidubce.com/rest/2.0/image-classify/v1/body_num';
  34. /**
  35. * 人体关键点识别接口
  36. *
  37. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  38. * @param array $options - 可选参数对象,key: value都为string类型
  39. * @description options列表:
  40. * @return array
  41. */
  42. public function bodyAnalysis($image, $options=array()){
  43. $data = array();
  44. $data['image'] = base64_encode($image);
  45. $data = array_merge($data, $options);
  46. return $this->request($this->bodyAnalysisUrl, $data);
  47. }
  48. /**
  49. * 人体属性识别接口
  50. *
  51. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  52. * @param array $options - 可选参数对象,key: value都为string类型
  53. * @description options列表:
  54. * type gender,<br>age,<br>lower_wear,<br>upper_wear,<br>headwear,<br>glasses,<br>upper_color,<br>lower_color,<br>cellphone,<br>upper_wear_fg,<br>upper_wear_texture,<br>lower_wear_texture,<br>orientation,<br>umbrella or 1)可选值说明:<br>gender-性别,age-年龄阶段,lower_wear-下身服饰,upper_wear-上身服饰,headwear-是否戴帽子,glasses-是否戴眼镜,upper_color-上身服饰颜色,lower_color-下身服饰颜色,cellphone-是否使用手机,upper_wear_fg-上身服饰细分类,upper_wear_texture-上身服饰纹理,lower_wear_texture-下身服饰纹理,orientation-身体朝向,umbrella-是否撑伞;<br>2)type 参数值可以是可选值的组合,用逗号分隔;**如果无此参数默认输出全部14个属性**
  55. * @return array
  56. */
  57. public function bodyAttr($image, $options=array()){
  58. $data = array();
  59. $data['image'] = base64_encode($image);
  60. $data = array_merge($data, $options);
  61. return $this->request($this->bodyAttrUrl, $data);
  62. }
  63. /**
  64. * 人流量统计接口
  65. *
  66. * @param string $image - 图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
  67. * @param array $options - 可选参数对象,key: value都为string类型
  68. * @description options列表:
  69. * area 特定框选区域坐标,逗号分隔,如‘x1,y1,x2,y2,x3,y3...xn,yn',默认尾点和首点相连做闭合,**此参数为空或无此参数默认识别整个图片的人数**
  70. * show 是否输出渲染的图片,默认不返回,**选true时返回渲染后的图片(base64)**,其它无效值或为空则默认false
  71. * @return array
  72. */
  73. public function bodyNum($image, $options=array()){
  74. $data = array();
  75. $data['image'] = base64_encode($image);
  76. $data = array_merge($data, $options);
  77. return $this->request($this->bodyNumUrl, $data);
  78. }
  79. }