人脸识别
// base64 code调用
$code = 'image base64 code';
$ai->face()->base64($code)->detect();
// 图片url
$url = 'http://domain.com/some.jpg';
$ai->face()->url($url)->detect();
// 本地文件路径
$path = 'path/to/some.jpg';
$ai->face()->path($path )->detect();人脸检测与分析
多人脸检测
跨年龄人脸识别
五官定位
人脸对比
人脸验证
Last updated