导航

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

    h25a

    @h25a

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

    h25a 关注

    h25a 发布的帖子

    • 用openmv识别到圆形(circle)之后怎么对其进行画框,通过框来获得它的圆心,想获得它的圆心坐标还有什么办法?

      。。。。。。。。。。。。。

      发布在 OpenMV Cam
      h25a
    • openmv怎么复位,举个例子,和stm32通信显示一串0开始的数,但是每次都不是0开始(下面是这个例子的代码)
      import time
      from pyb import UART
      
      # Always pass UART 3 for the UART number for your OpenMV Cam.
      # The second argument is the UART baud rate. For a more advanced UART control
      # example see the BLE-Shield driver.
      uart = UART(3, 115200)
      a=0
      while(True):
          a=a+11
          uart.write("%d\r\n"%a)
          time.sleep_ms(1000)
      
      发布在 OpenMV Cam
      h25a