Navigation

    • Login
    • Search
    • 版块
    • 产品
    • 教程
    • 论坛
    • 淘宝
    1. Home
    2. m5gd
    M
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    • mipush

    m5gd

    @m5gd

    0
    Reputation
    2
    Posts
    105
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    m5gd Follow

    Posts made by m5gd

    • 全局快门采集图像,apriltag扫码发现图像倾斜

      大家在使用全局快门时,有发现它的图像是轻微倾斜的么?(绕x轴有较小的转动)

      posted in OpenMV Cam
      M
      m5gd
    • 网络socket和uart同时通信

      网络socket和uart同时通信时,recv函数阻塞,采用poll模型,发现在执行poll.poll(100)时,直接弹出EIO错误。

      while True:
          c,addr=client.accept()
          poller = uselect.poll()
          while True:
              poller.register(c)
              res = poller.poll(100)    ## EIO
              print(res)
          client.close()
      
      posted in OpenMV Cam
      M
      m5gd