- updateAnchors removeAnchors回调无效?
const session = wx.createVKSession({ track: { face: { mode: 1 } // mode: 1 - 使用摄像头;2 - 手动传入图像 }, }) // 摄像头实时检测模式下,监测到人脸时,updateAnchors 事件会连续触发 (每帧触发一次) session.on('updateAnchors', anchors => { console.log('#########') console.log('1') console.log('#########') anchors.forEach(anchor => { console.log('anchor.points', anchor.points) console.log('anchor.origin', anchor.origin) console.log('anchor.size', anchor.size) console.log('anchor.angle', anchor.angle) }) }) // 当人脸从相机中离开时,会触发 removeAnchors 事件 session.on('removeAnchors', () => { console.log('#########') console.log('2') console.log('#########') console.log('removeAnchors') }) // 需要调用一次 start 以启动 session.start(errno => { if (errno) { console.log(errno) // 如果失败,将返回 errno } else { console.log('#########') console.log('3') console.log('#########') // 否则,返回null,表示成功 } })
2023-03-16 - 地理位置相关接口( wx.getLocation )暂未开通,小程序审核不通过?
我代码里面没有使用wx.getLocation 为什么审核不通过?
2022-06-08