导航

    • 登录
    • 搜索
    • 版块
    • 产品
    • 教程
    • 论坛
    • 淘宝
    1. 主页
    2. fpbx
    F
    • 举报资料
    • 资料
    • 关注
    • 粉丝
    • 屏蔽
    • 帖子
    • 楼层
    • 最佳
    • 群组

    fpbx

    @fpbx

    0
    声望
    1
    楼层
    1136
    资料浏览
    0
    粉丝
    0
    关注
    注册时间 最后登录

    fpbx 关注

    fpbx 发布的帖子

    • 运行二维码识别程序 报错

      import sensor, image

      sensor.reset()
      sensor.set_pixformat(sensor.RGB565)
      sensor.set_framesize(sensor.QQVGA) # can be QVGA on M7...
      sensor.skip_frames(30) # 修改sensor配置之后, 跳过30帧
      sensor.set_auto_gain(False) # must turn this off to prevent image washout...
      while(True):
      img = sensor.snapshot()
      img.lens_corr(1.8) # strength of 1.8 is good for the 2.8mm lens.
      for code in img.find_qrcodes():
      print(code)

      报错信息为
      this function is unavailable on your OpenMV Cam

      发布在 OpenMV Cam
      F
      fpbx