• 免费好用的星瞳AI云服务上线!简单标注,云端训练,支持OpenMV H7和OpenMV H7 Plus。可以替代edge impulse。 https://forum.singtown.com/topic/9519
  • 我们只解决官方正版的OpenMV的问题(STM32),其他的分支有很多兼容问题,我们无法解决。
  • 如果有产品硬件故障问题,比如无法开机,论坛很难解决。可以直接找售后维修
  • 发帖子之前,请确认看过所有的视频教程,https://singtown.com/learn/ 和所有的上手教程http://book.openmv.cc/
  • 每一个新的提问,单独发一个新帖子
  • 帖子需要目的,你要做什么?
  • 如果涉及代码,需要报错提示全部代码文本,请注意不要贴代码图片
  • 必看:玩转星瞳论坛了解一下图片上传,代码格式等问题。
  • 当STM用HAL_UART_Transmit()函数给openmv发送数据时,画面卡死,过了很久之后才会恢复正常



    • import sensor, image, time, pyb
      import ujson
      from pyb import UART
      
      green_threshold   = (73, 96, -79, -22, -128, 127)
      #(0, 100, -128, -25, -128, 127)
      red_threshold   = (41, 61, 42, 127, -128, 127)
      #(41, 61, 42, 127, -128, 127)
      blue_threshold   = (0, 44, -8, 47, -68, -13)
      #(15, 100, -128, 127, -128, -41)
      #red=2,green=1,blue=4
      getrx = 0
      getcmd = 0
      renum = 0
      colornum = 0
      ptrposition = 0
      sensor.reset()# 初始化摄像头
      sensor.set_pixformat(sensor.RGB565)# 格式为 RGB565.
      sensor.set_framesize(sensor.QQVGA) # 使用 QQVGA 速度快一些
      sensor.skip_frames(time = 2000) # 跳过2000s,使新设置生效,并自动调节白平衡
      sensor.set_auto_gain(False) # 关闭自动自动增益。默认开启的,在颜色识别中,一定要关闭白平衡。
      sensor.set_auto_whitebal(False)
      #关闭白平衡。白平衡是默认开启的,在颜色识别中,一定要关闭白平衡。
      clock = time.clock() # 追踪帧率
      led = pyb.LED(1) # Red LED = 1, Green LED = 1, Blue LED = 2, IR LEDs = 4.
      uart = UART(3, 115200, timeout_char = 1000)
      led.on()
      
      def Rec_NUM1(lista):
          if (lista[0]=='1' and lista[1]=='2' and lista[2]=='3'):
              return 1
          elif (lista[0]=='1' and lista[1]=='3' and lista[2]=='2'):
              return 2
          elif (lista[0]=='2' and lista[1]=='1' and lista[2]=='3'):
              return 3
          elif (lista[0]=='2' and lista[1]=='3' and lista[2]=='1'):
              return 4
          elif (lista[0]=='3' and lista[1]=='1' and lista[2]=='2'):
              return 5
          elif (lista[0]=='3' and lista[1]=='2' and lista[2]=='1'):
              return 6
      
      def Rec_NUM2(lista):
          if (lista[4]=='1' and lista[5]=='2' and lista[6]=='3'):
              return 1
          elif (lista[4]=='1' and lista[5]=='3' and lista[6]=='2'):
              return 2
          elif (lista[4]=='2' and lista[5]=='1' and lista[6]=='3'):
              return 3
          elif (lista[4]=='2' and lista[5]=='3' and lista[6]=='1'):
              return 4
          elif (lista[4]=='3' and lista[5]=='1' and lista[6]=='2'):
              return 5
          elif (lista[4]=='3' and lista[5]=='2' and lista[6]=='1'):
              return 6
      
      while(True):
          clock.tick() # Track elapsed milliseconds between snapshots().
          if uart.any():
              led.off()
              getrx = uart.readline()
              print(getrx)
              time.sleep(150)     #延时150ms
              led = pyb.LED(2)
              led.on()
              getcmd = int(getrx)
              print(getcmd)
              #print(img.find_qrcodes())
          img = sensor.snapshot()# 从感光芯片获得一张图像
          img.lens_corr(1.8) # strength of 1.8 is good for the 2.8mm lens.
          blobs = img.find_blobs([green_threshold,red_threshold,blue_threshold],x_stride=25,y_stride=50,area_threshold=1000)
      #    getcmd=2
          if(getcmd==2):
              for code in img.find_qrcodes():
                   output_str="%s" % code.payload() #方式1
                   renum = int(Rec_NUM1(output_str)*10 + Rec_NUM2(output_str))
                   uart.write(ujson.dumps(renum))
                   getcmd = 0
                   led.off()
          if blobs and getcmd==3:
              for b in blobs:
                  # Draw a rect around the blob.
                  img.draw_rectangle(b[0:4]) # rect
                  #用矩形标记出目标颜色区域
                  img.draw_cross(b[5], b[6]) # cx, cy
                  #在目标颜色区域的中心画十字形标记
                  #print(b[5], b[6], b[8])
                  #uart.write(ujson.dumps(b[8]))
                  #将颜色序号转为比赛序号
                  if b[8]==1:
                      colornum=2
                  elif b[8]==2:
                      colornum=1
                  elif b[8]==4:
                      colornum=3
                  print('colornum=',colornum,'output_str[ptrposition]=',output_str[ptrposition])
                  #若任务码对应
                  if (int(output_str[ptrposition]) == colornum):
                      uart.write('t')
                      ptrposition+=1
                      if ptrposition==4:
                          ptrposition+=1
                      getcmd=0
      
      
      

      0_1615539753449_77dc0a27-70de-416e-b55b-595aec618d20-image.png
      串口是可以检测到数据的
      但是却会画面会卡死,然后过了很久之后才会正常,然后又输出一个数据
      0_1615539888850_078410dc-8494-47a7-99cb-f3d546abb9fc-image.png



    • time.sleep(150)改成time.sleep_ms(150)