导航

    • 登录
    • 搜索
    • 版块
    • 产品
    • 教程
    • 论坛
    • 淘宝
    1. 主页
    2. fimw
    F
    • 举报资料
    • 资料
    • 关注
    • 粉丝
    • 屏蔽
    • 帖子
    • 楼层
    • 最佳
    • 群组

    fimw

    @fimw

    0
    声望
    6
    楼层
    1190
    资料浏览
    0
    粉丝
    0
    关注
    注册时间 最后登录

    fimw 关注

    fimw 发布的帖子

    • RE: 如何利用openmv识别红色激光点

      我刚刚尝试了信标追踪和红色物块识别,距离近都能识别的到,但远了就不行啦,,,

      发布在 OpenMV Cam
      F
      fimw
    • RE: 如何利用openmv识别红色激光点

      @lq16 同问

      发布在 OpenMV Cam
      F
      fimw
    • RE: 做了一个检测圆的程序,但一直显示有错误,说ROI无效,这是要怎么解决呢?

      其实还有代码的,这是主函数,sensor初始化在主函数里,我在主函数里,还是一样的错误

      import sensor, image, time, math, struct
      import json
      from pyb import LED,Timer
      from struct import pack, unpack
      import Message,LineFollowing,DotFollowing,find_circle
      #初始化镜头
      sensor.reset()
      sensor.set_pixformat(sensor.RGB565)#设置相机模块的像素模式
      sensor.set_framesize(sensor.QQVGA)#设置相机分辨率160*120
      sensor.skip_frames(time=3000)#时钟
      sensor.set_auto_whitebal(False)#若想追踪颜色则关闭白平衡
      clock = time.clock()#初始化时钟
      
      #主循环
      while(True):
          clock.tick()#时钟初始化
          #接收串口数据
          Message.UartReadBuffer()
          if Message.Ctr.WorkMode==1:#点检测
              DotFollowing.DotCheck()
          elif (Message.Ctr.WorkMode==2):#线检测
              LineFollowing.LineCheck()
          elif (Message.Ctr.WorkMode==3):#圆检测
              find_circle.CircleCheck()
          elif(Message.Ctr.WorkMode==4):#Led检测
          #用户数据发送
          #Message.UartSendData(Message.UserDataPack(127,127,32767,32767,65536,65536,65536,65536,65536,65536))
          #计算程序运行频率
          if Message.Ctr.IsDebug == 1:
              fps=int(clock.fps())
              Message.Ctr.T_ms = (int)(1000/fps)
              print('fps',fps,'T_ms',Message.Ctr.T_ms)
      
      #************************************ (C) COPYRIGHT 2019 ANO ***********************************#
      
      
      发布在 OpenMV Cam
      F
      fimw
    • RE: 把openmv装在无人机上识别不规则物体,比如led灯,那用什么方法识别比较好?

      @kidswong999 apriltag怎么用来识别灯呢???

      发布在 OpenMV Cam
      F
      fimw
    • RE: 做了一个检测圆的程序,但一直显示有错误,说ROI无效,这是要怎么解决呢?

      就这个错误
      Traceback (most recent call last):
      File "", line 25, in
      OSError: Invalid ROI dimensions!
      MicroPython v1.9.4-4553-gb4eccdfe3 on 2019-05-02; OPENMV4 with STM32H743
      Type "help()" for more information.

      发布在 OpenMV Cam
      F
      fimw
    • 做了一个检测圆的程序,但一直显示有错误,说ROI无效,这是要怎么解决呢?
      from pyb import LED,Timer
      import sensor, image, time, math, struct
      import Message
      class yuan(object):
          flag = 0
          r = 0
          x = 0
          y = 0
      yuan=yuan()
      
      circles=[]
      
      def find_max_circle(circles):
          max_r=0
          for c in circles:
              if c.r()>max_r:
                  max_circle=c
                  max_r=c.r()
                  return max_circle
      
      while(True):
      #def CircleCheck():
          img = sensor.snapshot().lens_corr(1.8)
          circles.clear()
          all_circles=img.find_circles(x_stride=1,y_stride=1,threshold = 2000,
          x_margin = 10, y_margin = 10, r_margin = 10,
          r_min = 2, r_max = 100)
          for c in all_circles:
              if c.r()<22:
                  circles.append(c)
          if circles:
              max_circle = find_max_circle(circles)
              img.draw_circle(max_circle.x(),max_circle.y(),max_circle.r())
              img.draw_cross(max_circle.x(), max_circle.y())
              yuan.x = max_circle.x()-80
              yuan.y = max_circle.y()-60
              yuan.flag = 1
              LED(3).toggle()
              LED(2).toggle()
          else:
              yuan.flag = 0
              LED(2).off()
              LED(3).off()
          Message.UartSendData(Message.DotDataPack(yuan.flag,yuan.x,yuan.y,max_circle.x(), max_circle.y()))
      
      
      发布在 OpenMV Cam
      F
      fimw