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



    • 0_1733409472915_屏幕截图 2024-12-05 223707.png



    • # This work is licensed under the MIT license.
      # Copyright (c) 2013-2023 OpenMV LLC. All rights reserved.
      # https://github.com/openmv/openmv/blob/master/LICENSE
      #
      # AprilTags Example
      #
      # This example shows the power of the OpenMV Cam to detect April Tags
      # on the OpenMV Cam M7. The M4 versions cannot detect April Tags.
      
      import sensor
      import time
      import math
      
      sensor.reset()
      sensor.set_pixformat(sensor.RGB565)
      sensor.set_framesize(sensor.QQVGA)
      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()
      
      # Note! Unlike find_qrcodes the find_apriltags method does not need lens correction on the image to work.
      
      # Please use the TAG36H11 tag family for this script - it's the recommended tag family to use.
      
      
      while True:
          clock.tick()
          img = sensor.snapshot()
          for tag in img.find_apriltags():
              img.draw_rectangle(tag.rect, color=(255, 0, 0))
              img.draw_cross(tag.cx, tag.cy, color=(0, 255, 0))
              print_args = (tag.name, tag.id, (180 * tag.rotation) / math.pi)
              print("Tag Family %s, Tag ID %d, rotation %f (degrees)" % print_args)
          print(clock.fps())