直接把文档测试代码拷贝使用, 右上角提示摄像头已经打开,可以实际并没有打开
const session = wx.createVKSession({
track: {
OCR: { mode: 1 } // mode: 1 - 使用摄像头;2 - 手动传入图像
},
})
console.log(session)
// 摄像头实时检测模式下,监测到文字时,updateAnchors 事件会连续触发 (每帧触发一次)
session.on('updateAnchors', anchors => {
console.log('anchors.text',"".concat(anchors.map(anchor=>anchor.text)))
})
// 当文字区域从相机中离开时,会触发 removeAnchors 事件
session.on('removeAnchors', () => {
console.log('removeAnchors')
})
// 需要调用一次 start 以启动
session.start(errno => {
if (errno) {
// 如果失败,将返回 errno
console.log(errno,'如果失败,将返回 errno')
} else {
// 否则,返回null,表示成功
console.log('否则,返回null,表示成功')
}
})
本身设备运行案例没问题的话,请自查自己的小程序代码,这里可能是没申请相机权限