bl.createFaceDetection
仅支持andriod
获取 FaceDetection 引擎模块
参数说明
Object object
属性 | 类型 | 默认值 | 必填 | 说明 | 版本 |
---|---|---|---|---|---|
modelSelection | number | 0 | 否 | 取值0和1;模型选择; 整数索引0或1。使用0选择最适合距离摄影机2米以内的面的短期模型,使用1选择最适合距离摄影机5米以内的面的全范围模型。对于全范围选项,使用稀疏模型以提高推理速度。详情请参考模型卡。如果未指定,则默认为0 | |
success | function | 否 | 接口调用成功的回调函数 | ||
fail | function | 否 | 接口调用失败的回调函数 | ||
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
success参数说明
FaceDetection
示例
let faceDetection;
bl.createFaceDetection({modelSelection:0, success:(res) => {
console.log('createFaceDetection success', res) ;
faceDetection = res;
}, fail:(res) => {
console.log('createFaceDetection fail', JSON.stringify(res))
}})