• OpenMV VSCode 扩展发布了,在插件市场直接搜索OpenMV就可以安装
  • 如果有产品硬件故障问题,比如无法开机,论坛很难解决。可以直接找售后维修
  • 发帖子之前,请确认看过所有的视频教程,https://singtown.com/learn/ 和所有的上手教程http://book.openmv.cc/
  • 每一个新的提问,单独发一个新帖子
  • 帖子需要目的,你要做什么?
  • 如果涉及代码,需要报错提示全部代码文本,请注意不要贴代码图片
  • 必看:玩转星瞳论坛了解一下图片上传,代码格式等问题。
  • 请问这个怎么解决?RuntimeError: Frame capture has timed out.



    • import sensor, image, time
      from pyb import UART
      
      uart = UART(3,19200)
      
      sensor.reset()
      sensor.set_pixformat(sensor.RGB565)
      sensor.set_framesize(sensor.QVGA)
      sensor.skip_frames(time = 2000)
      
      clock = time.clock()
      
      A=uart.read()==b'0x31'
      
      B=uart.read()==b'0x32'
      
      while(True):
          clock.tick()
          img=sensor.snapshot()
          while(A):
          #clock.tick()
          #img = sensor.snapshot()
              for c in img.find_circles(threshold = 3500, x_margin = 10, y_margin = 10, r_margin = 10,r_min = 2, r_max = 100, r_step = 2):
                  img.draw_circle(c.x(), c.y(), c.r(), color = (0, 255, 0))
                  if(c.x()>90):
                      uart.write("d\r")
                  else:
                      if(c.x()<70):
                          uart.write("c\r")
                      else:uart.write("e\r")
                  if(c.y()>70):
                      uart.write("a\r")
                  else:
                      if(c.x()<50):
                          uart.write("b\r")
                      else:uart.write("e\r")
                  time.sleep(1)
      
          while(B):
          #clock.tick()
              thresholds1 = [(30,100,15,127,15,127),(0, 60, -8, 69, -125, -3),(25, 53, -74, -23, 28, 58)]
          #img = sensor.snapshot()
              for blob in img.find_blobs(thresholds1, pixels_threshold=500, area_threshold=2000):
                  img.draw_rectangle(blob.rect())
                  img.draw_cross(blob.cx(), blob.cy())
                  uart.write(blob.code())
      
      

      0_1689302716245_屏幕截图 2023-07-14 104442.png
      我开始运行后,他软件内显示到的图像活动几秒后就不动了,然后自动结束进程,请问这怎么解决?



    • 运行hello world,如果还有问题,寄回维修。