人体分析
调用过程
// 以人体关键点识别为例 人体关键点识别的路由为body_analysis
//参数
$paranms = [
'image' => base64_encode(file_get_contents('path/to/some_img.jpg'))
];
//调用过程
$res = $ai->body()->send('body_analysis',$paranms);
if($res->success()){
var_dump($res->toArray());
}Last updated