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



    • 老师问一下有没有什么方法能够只截取我下图中红色框中的图像,让openmv只对红框中的图像内容进行各种识别呢?是用roi还是其他什么?
      0_1562512602733_微信图片_20190707231301.jpg



    • 有没有现有的例程啊?



    • ROI只能是矩形,不能是梯形。



    • @kidswong999 有获取矩形ROI区域的例程吗?



    • @kidswong999 老师你看一下,为什么我这边的ROI不起作用,是程序写得不对吗?

      import sensor, image, time, math
      ROI = [(50,100,50,80)]
      
      sensor.reset()
      sensor.set_pixformat(sensor.RGB565)
      sensor.set_framesize(sensor.QQVGA) # we run out of memory if the resolution is much bigger...
      sensor.skip_frames(time = 2000)
      sensor.set_auto_gain(False)  # must turn this off to prevent image washout...
      sensor.set_auto_whitebal(False)  # must turn this off to prevent image washout...
      clock = time.clock()
      
      tag_families = 0
      tag_families |= image.TAG16H5 # comment out to disable this family
      tag_families |= image.TAG25H7 # comment out to disable this family
      tag_families |= image.TAG25H9 # comment out to disable this family
      tag_families |= image.TAG36H10 # comment out to disable this family
      tag_families |= image.TAG36H11 # comment out to disable this family (default family)
      tag_families |= image.ARTOOLKIT # comment out to disable this family
      
      def family_name(tag):
          if(tag.family() == image.TAG16H5):
              return "TAG16H5"
          if(tag.family() == image.TAG25H7):
              return "TAG25H7"
          if(tag.family() == image.TAG25H9):
              return "TAG25H9"
          if(tag.family() == image.TAG36H10):
              return "TAG36H10"
          if(tag.family() == image.TAG36H11):
              return "TAG36H11"
          if(tag.family() == image.ARTOOLKIT):
              return "ARTOOLKIT"
      
      for t in ROI:    
          while(True):
              clock.tick()
              img = sensor.snapshot()
              for tag in img.find_apriltags(families=tag_families): # defaults to TAG36H11 without "families".
                  img.draw_rectangle(tag.rect(), color = (255, 0, 0))
                  img.draw_cross(tag.cx(), tag.cy(), color = (0, 255, 0))
                  print_args = (family_name(tag), tag.id(), (180 * tag.rotation()) / math.pi)
                  print("Tag Family %s, Tag ID %d, rotation %f (degrees)" % print_args)
              print(clock.fps())
      
      


    • img.find_apriltags(roi=(50,100,50,80))



    • 此回复已被删除!


    • @kidswong999 老师理论上可以用画矩形的这个函数把我想要的roi区域给框起来吗?我试了下面这个报错了。。

      img.draw_rectangle(roi=(0,000,160,80), color = (0, 255, 0))
      


    • @17826808312 不同的问题,单独发帖子。