收藏
回答

wx.createVKSession 无法唤起摄像头?


直接把文档测试代码拷贝使用, 右上角提示摄像头已经打开,可以实际并没有打开

	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,表示成功')
				  }
				})
最后一次编辑于  09-19
回答关注问题邀请回答
收藏

1 个回答

  • 小程序视觉技术yolo
    小程序视觉技术yolo
    09-23

    本身设备运行案例没问题的话,请自查自己的小程序代码,这里可能是没申请相机权限

    09-23
    有用
    回复 1
    • 磊
      10-10
      示例小程序也不行,换不起摄像头
      10-10
      回复
登录 后发表内容