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



    • while(True):
          clock.tick() # Track elapsed milliseconds between snapshots().
          img = sensor.snapshot() # 拍照,返回图像
          # 在图像中寻找满足颜色阈值约束(color_threshold, 数组格式), 像素阈值pixel_threshold, 色块面积大小阈值(area_threshold)的色块
          #blobs = img.find_blobs([red_threshold],[green_threshold],[blue_threshold])
          #blobs = img.find_blobs([red_threshold, green_threshold, blue_threshold],area_threshold=200,) #merge=True)
          red_blobs = img.find_blobs([red_threshold],area_threshold=200)# merge=False)
          green_blobs = img.find_blobs([green_threshold],area_threshold=200)# merge=False)
          blue_blobs=img.find_blobs([blue_threshold],area_threshold=200)#, merge=False)
      
          #if blobs:
      #如果找到了目标颜色
              #for blob in blobs:
      #迭代找到的目标颜色区域
                  #x = blob[0] #x坐标
                   #y= blob[1] #y坐标
                  #width = blob[2] # 色块矩形的宽度
                  #height = blob[3] # 色块矩形的高度
      
                  #center_x = blob[5] # 色块中心点x值
                  #center_y = blob[6] # 色块中心点y值
      
                  #color_code = blob[8] # 颜色代码
          
      
      
      
          if red_blobs:
      #如果找到了目标颜色
              for rblob in red_blobs:
      #迭代找到的目标颜色区域
                  x1 = rblob[0] #x坐标
                  y1 = rblob[1] #y坐标
                  width1 = rblob[2] # 色块矩形的宽度
                  height1 = rblob[3] # 色块矩形的高度
      
                  center_x1 = rblob[5] # 色块中心点x值
                  center_y1 = rblob[6] # 色块中心点y值
      
                  color_code1 = rblob[8] # 颜色代码
          
          if green_blobs:
      #如果找到了目标颜色
              for gblob in green_blobs:
      #迭代找到的目标颜色区域
                  x2 = gblob[0] #x坐标
                  y2 = gblob[1] #y坐标
                  width2 = gblob[2] # 色块矩形的宽度
                  height2 = gblob[3] # 色块矩形的高度
      
                  center_x2 = gblob[5] # 色块中心点x值
                  center_y2 = gblob[6] # 色块中心点y值
      
                  color_code2 = gblob[8] # 颜色代码
          
          if blue_blobs:
      #如果找到了目标颜色
              for bblob in blue_blobs:
      #迭代找到的目标颜色区域
                  x3 = bblob[0] #x坐标
                  y3 = bblob[1] #y坐标
                  width3 = bblob[2] # 色块矩形的宽度
                  height3 = bblob[3] # 色块矩形的高度
      
                  center_x3 = bblob[5] # 色块中心点x值
                  center_y3 = bblob[6] # 色块中心点y值
      
                  color_code3 = bblob[8] # 颜色代码
          
      
      
      
              # 添加颜色说明
              #if color_code == red_color_code:
               #   img.draw_string(x, y - 10, "red", color = (0xFF, 0x00, 0x00))
              #elif color_code == green_color_code:
               #   img.draw_string(x, y - 10, "green", color = (0x00, 0xFF, 0x00))
              #elif color_code == blue_color_code:
               #   img.draw_string(x, y - 10, "blue", color = (0x00, 0x00, 0xFF))
      
              #用矩形标记出目标颜色区域
              #img.draw_rectangle([x, y, width, height])
              #在目标颜色区域的中心画十字形标记
              #img.draw_cross(center_x, center_y)
      
          if center_x1>center_x2 and center_x2>center_x3:
      		print(color_code1,color_code2,color_code3)
          if center_x1>center_x3 and center_x3>center_x2:
      		print(color_code1,color_code3,color_code2)
          if center_x2>center_x3 and center_x3>center_x1:
      		print(color_code2,color_code3,color_code1)
          if center_x2>center_x1 and center_x1>center_x3:
      		print(color_code2,color_code1,color_code3)
          if center_x3>center_x2 and center_x2>center_x1:
      		print(color_code3,color_code2,color_code1)
          if center_x3>center_x1 and center_x1>center_x2:
      		print(color_code3,color_code1,color_code2)
      
      
      
      


    • 你的代码是,只有找到了red_blobs,才会定义center_x1。

      也就是说,没找到色块,就会出现未定义的错误。



    • 那这程序要怎么改呢



    • 你想一下,如果没有找到红色的色块你要做什么。
      或者是三个颜色里,如果没找全怎么做。