导航

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

    _xiaohuohu_

    @_xiaohuohu_

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

    _xiaohuohu_ 关注

    _xiaohuohu_ 发布的帖子

    • 串口数字显示出错
      # Blob Detection and uart transport
      import sensor, image, time
      from pyb import UART
      import json
      # For color tracking to work really well you should ideally be in a very, very,
      # very, controlled enviroment where the lighting is constant...
      yellow_threshold   = (65, 100, -10, 6, 24, 51)
      # You may need to tweak the above settings for tracking green things...
      # Select an area in the Framebuffer to copy the color settings.
      
      sensor.reset() # Initialize the camera sensor.
      sensor.set_pixformat(sensor.RGB565) # use RGB565.
      sensor.set_framesize(sensor.QQVGA) # use QQVGA for speed.
      sensor.skip_frames(10) # Let new settings take affect.
      sensor.set_auto_whitebal(False) # turn this off.
      clock = time.clock() # Tracks FPS.
      
      uart = UART(3, 115200)
      def find_max(blobs):
          max_size=0
          for blob in blobs:
              if blob.pixels() > max_size:
                  max_blob=blob
                  max_size = blob.pixels()
          return max_blob
      
      while(True):
          img = sensor.snapshot() # Take a picture and return the image.
      
          blobs = img.find_blobs([yellow_threshold])
          if blobs:
              max_blob=find_max(blobs)
              print('sum :', len(blobs))
              img.draw_rectangle(max_blob.rect())
              img.draw_cross(max_blob.cx(), max_blob.cy())
      
              output_str="[%d,%d]" % (max_blob.cx(),max_blob.cy()) #方式1
              #output_str=json.dumps([max_blob.cx(),max_blob.cy()]) #方式2
              print('you send:',output_str)
              #uart.write(output_str+'\r\n')
              uart.writechar(max_blob.cx()) #发送数字
              uart.writechar(max_blob.cy())![0_1531979493507_QQ图片20180719135118.png](https://fcdn.singtown.com/047cea61-1237-4943-8b39-d45b28f57a0d.png) 
          else:
              print('not found!')
      
      

      0_1531979502427_QQ图片20180719135045.png 0_1531979506991_QQ图片20180719134935.png

      😭 😭 检查了一下没有什么错误,波特率也是对的。而且传递字符的 .write可以正常传递,可以.writethar就传递不了数字,显示乱码,这是什么问题 求大神指教

      发布在 OpenMV Cam
      _
      _xiaohuohu_
    • stm32与openmv 无线通信

      我想用openmv通过无线模块与stm32进行数据的传递,有例程嘛?

      发布在 OpenMV Cam
      _
      _xiaohuohu_
    • RE: OSError: Could not find the path怎么解决

      好的 谢谢大神

      发布在 OpenMV Cam
      _
      _xiaohuohu_
    • OSError: Could not find the path怎么解决

      0_1527073861472_QQ图片20180523191027.png

      发布在 OpenMV Cam
      _
      _xiaohuohu_