收藏
回答

为什么wx.createVKSession faceMode模式为1时不生效?

        const session = wx.createVKSession({
          track: {
            face: { mode: 1 }
          }
        })
        session.on('updateAnchors', anchors => {
          session.update3DMode({ open3d: true })
          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('removeAnchors')
        })
        session.start(errno => {
          if (errno) return
        })
摄像头实时模式,只有start会触发,返回的errno为null


回答关注问题邀请回答
收藏

1 个回答

  • Roam
    Roam
    03-25

    小程序示例里面的 实时人脸示例 和 实时人脸3d示例 能正常运行吗

    03-25
    有用
    回复
登录 后发表内容