导航

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

    libarwz

    @libarwz

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

    libarwz 关注

    libarwz 发布的帖子

    • RE: 识别数字后的数据通过串口发送到电脑出现问题

      照着修改后出现这样的错误0_1528796558551_捕获222222.PNG

      发布在 OpenMV Cam
      L
      libarwz
    • 识别数字后的数据通过串口发送到电脑出现问题

      用识别数字例程识别数字,想将输出的数据经串口传送到电脑,代码如下

      import sensor, image, time
      from pyb import UART
      
      sensor.reset()                          # Reset and initialize the sensor.
      sensor.set_contrast(3)
      sensor.set_pixformat(sensor.GRAYSCALE)  # Set pixel format to RGB565 (or GRAYSCALE)
      sensor.set_framesize(sensor.VGA)        # Set frame size to QVGA (320x240)
      sensor.set_windowing((128, 128))        # Set 128x128 window.
      sensor.skip_frames(time = 2000)         # Wait for settings take effect.
      sensor.set_auto_gain(False)
      sensor.set_auto_exposure(False)
      
      uart = UART(3, 115200)
      
      
      while(True):
          img = sensor.snapshot()
          # NOTE: Uncomment to detect dark numbers on white background
          # img.invert()
          out = img.find_number(roi=(img.width()//2-14, img.height()//2-14, 28, 28))
          img.draw_rectangle((img.width()//2-15, img.height()//2-15, 30, 30))
          if out[1] > 5: # Confidence level
              print("Number: %d Confidence: %0.2f" %(out[0], out[1]))
              
         uart.write(out[0]'\n')
        time.sleep(1000)
      

      发现串口部分代码不正确,但不知道要怎么改,求大神指点一二。

      发布在 OpenMV Cam
      L
      libarwz
    • 关于数字识别的问题

      想用openmv识别四位数码管中的数字,为了能够准确识别,可以使用模板匹配的方法吗?

      发布在 OpenMV Cam
      L
      libarwz
    • 请问可以将openmv识别图像中的数字后的数据发送给stm32吗?

      如果可以的话要怎么操作呢?有例程能分享一下吗?

      发布在 OpenMV Cam
      L
      libarwz