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



    • import sensor, image, time, os, tf, uos, gc, lcd , cpufreq
      from pyb import UART,LED,Timer
      
      uart = UART(3, 115200, timeout_char=1000)
      u_start=bytearray([0x2C,0x12])
      u_over=bytearray([0x5B])
      LED(2).on()
      
      sensor.reset()                         # Reset and initialize the sensor.
      sensor.set_pixformat(sensor.RGB565)    # Set pixel format to RGB565 (or GRAYSCALE)
      sensor.set_framesize(sensor.QQVGA)     # Set frame size to QVGA (320x240)
      sensor.set_windowing((240, 240))       # Set 240x240 window.
      #sensor.skip_frames(time=2000)          # Let the camera adjust.
      lcd.init()
      net = None
      labels = None
      List_score01 = [0]*7
      
      #global List_score01
      
      try:
          # load the model, alloc the model file on the heap if we have at least 64K free after loading
          net = tf.load("trained.tflite", load_to_fb=uos.stat('trained.tflite')[6] > (gc.mem_free() - (64*1024)))
      except Exception as e:
          print(e)
          raise Exception('Failed to load "trained.tflite", did you copy the .tflite and labels.txt file onto the mass-storage device? (' + str(e) + ')')
      
      try:
          labels = [line.rstrip('\n') for line in open("labels.txt")]
      except Exception as e:
          raise Exception('Failed to load "labels.txt", did you copy the .tflite and labels.txt file onto the mass-storage device? (' + str(e) + ')')
      
      clock = time.clock()
      
      #label = "in","line","out","stop","wandao1","wandao2","word"
      #label = "0" ,"1"   ,"2"  ,"3"   ,"4"      ,"5"      ,"6"
      
      
      
      while(True):
          #flag=3
          
          number = 1
          clock.tick()
          cpufreq.set_frequency(480)
          img = sensor.snapshot().lens_corr(strength = 1.6, zoom = 1.0)
          global List_score01
          for obj in net.classify(img, min_scale=1.0, scale_mul=0.8, x_overlap=0.5, y_overlap=0.5):
              #
              img.draw_rectangle(obj.rect())
              #print(obj.output())
              predictions_list = list(zip(labels, obj.output()))
              #print(predictions_list)
              #print(predictions_list[0][1])
              print(List_score01)
      
              if(predictions_list[0][1]>=0.7): #'in'
                  List_score01[int(predictions_list[0][0])] += 1
                  print(List_score01)
                  if List_score01[0]>1:
                      while number < 5:  #发送10个"2"
                          uart.write(u_start)
                          uart.write(bytearray([2]))
                          uart.write(u_over)
                          #img.draw_string(0, 0, "flag:%s" %(flag), scale=2, color=(255, 0, 0))
                          print(2)
                          number +=1
                          time.sleep_ms(100)
      
      
                      number = 1  #number清除再发送"3"
                      while number < 10:  #发送"3"
                          uart.write(u_start)
                          uart.write(bytearray([3]))
                          uart.write(u_over)
                          #img.draw_string(0, 0, "flag:%s" %(flag), scale=2, color=(255, 0, 0))
                          print(3)
                          number +=1
                          time.sleep_ms(100)
                      List_score01 = [0]*7    #退出初始化循环
      
      
      
              if(predictions_list[3][1]>=0.9): #'stop'
                  List_score01[int(predictions_list[3][0])] += 1
                  #print(List_score01)
                  if List_score01[3]>20:
                      while number < 7:  #发送"2"
                          uart.write(u_start)
                          uart.write(bytearray([5]))
                          uart.write(u_over)
                          #img.draw_string(0, 0, "flag:%s" %(flag), scale=2, color=(255, 0, 0))
                          print(5)
                          number +=1
                          time.sleep_ms(100)
                      List_score01 = [0]*7
              for i in range(len(predictions_list)):
                  print("%s = %f" % (predictions_list[i][0], predictions_list[i][1]))
      
      
          #img.draw_string(10,10,str(flag),color=(0,0,255))
          uart_buf = bytearray([3])   
          uart.write(u_start)
          uart.write(uart_buf)
          uart.write(u_over)
          #print(clock.fps(), "fps")
          lcd.display(img)
          
          
      def test(timer):
          global List_score01
          List_score01 = [0]*7
          print("11111111")
      
      tim = Timer(4, freq=1)      # 使用定时器2创建定时器对象-以1Hz触发
      tim.callback(test)          # 将回调设置为tick函数
      
      

      主函数中global List_score01报错



    • while True不是函数,不需要加global