导航

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

    5aru

    @5aru

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

    5aru 关注

    5aru 发布的帖子

    • 我想巡线小车先往左转,一定时间后往右,用time.sleep函数实现不了?

      THRESHOLD = [(0, 100, -128, 127, -128, -24),
      (0, 100, -128, -41, -128, 127)]
      import sensor, image, time
      from pyb import LED
      import car
      from pid import PID
      rho_pid = PID(p=0.4, i=0)
      theta_pid = PID(p=0.001, i=0)
      LED(1).on()
      LED(2).on()
      LED(3).on()
      sensor.reset()
      sensor.set_vflip(True)
      sensor.set_hmirror(True)
      sensor.set_pixformat(sensor.RGB565)
      sensor.set_framesize(sensor.QQQVGA)
      sensor.skip_frames(time = 2000)
      clock = time.clock()
      while(True):
      clock.tick()
      img = sensor.snapshot()
      for blob in img.find_blobs(THRESHOLD, roi=(0,50,200,200),pixels_threshold=100, area_threshold=100, merge=True):
      if blob.code() == 2:
      car.run(15,30)
      time.sleep(50)
      car.run(30,15)
      elif blob.code() == 1:
      img = sensor.snapshot().binary([THRESHOLD[0]])
      line = img.get_regression([(100,100,0,0,0,0)], robust = True)
      if (line):
      rho_err = abs(line.rho())-img.width()/2
      if line.theta()>90:
      theta_err = line.theta()-180
      else:
      theta_err = line.theta()
      img.draw_line(line.line(), color = 127)
      print(rho_err,line.magnitude(),rho_err)
      if line.magnitude()>8:
      rho_output = rho_pid.get_pid(rho_err,1)
      theta_output = theta_pid.get_pid(theta_err,1)
      output = rho_output+theta_output
      car.run(30+output, 30-output)
      else:
      car.run(0,0)
      else:
      car.run(50,-50)

      发布在 OpenMV Cam
      5
      5aru