导航

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

    JiuDing

    @JiuDing

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

    JiuDing 关注

    JiuDing 发布的帖子

    • RE: 二维码识别

      好的,谢谢,我拍完照传到电脑屏幕他就看清楚了

      发布在 OpenMV Cam
      J
      JiuDing
    • RE: 二维码识别

      @kidswong999 您好,我还有一个问题,比如像我用手机扫描一个二维码,很快就显示出结果了,但使用openmv却似乎得不到结果,这是为什么呢1_1536663563969_TIM截图20180911185847.jpg 0_1536663563968_Screenshot_2018-09-11-18-54-47.png

      发布在 OpenMV Cam
      J
      JiuDing
    • RE: 二维码识别

      奥,好的,谢谢,我才发现原来那里有窗口😅

      发布在 OpenMV Cam
      J
      JiuDing
    • 二维码识别

      大家好,我使用的是OpenMv3 M7版本的摄像头,我按照教程里的程序copy到IDE中,按照教程推荐的网页生成了二维码,然后让摄像头去识别,但是似乎并没有什么反应。这是怎么回事呢?我之刚才使用特征点识别的例程就没有问题可以成功运行,但现在不晓得为什么
      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.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)

      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.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)
      0_1536662391716_2018-09-11.png

      发布在 OpenMV Cam
      J
      JiuDing