Autonomous navigation vehicle algorithms

From wikiluntti

Introduction

A great resource is F1Tenth, https://f1tenth.org/

See also https://mushr.io/tutorials/tuning/ and https://racecar.mit.edu/platform

Safety Concerns

  • Real-life problems
  • Sensors
  • Failure modes


Automatic breaking AEB

Automatic emergency breaking AEB

  • Detect objects
  • Find range, velocity, heading
  • Determine critical objects. Time to collision TTC.
  • False positive: Nobody will buy a system with these
  • False negative: kills innocent people

Stop the vehicle before colliding.

Sensors

  • Camera
    • Structured light 3d scanner camera
    • Stereo camera
    • Monocular camera
  • Radar
  • Ultrasonic
  • Lidar
    • Planar lidar (Hokuyo 30LX)
    • 3d lidar
    • solid state lidar (Velodyne velarray)
  • Odometry

Reactive Methods

Follow the Gap

Follow the gap

Furthest distance?

  • Misreading
  • Too small gap

Gap: Series of at least consecutive hits that pass some distance threshold .

  • Works good for holonomic robots. Also good if only sparse obstacles.
  • No car's dimensions, no safety.
  • What is the threshold radius ?

Avoid the nearest obstacle every timestep.

  1. Find the nearest point: add a safety bubble with radius around it.
  2. Set all distance points inside the safety bubble to zero (0).
  3. Find the max gaps of consecutive nonzeros
  4. Choose the best max gap of all. Naive: The furthest max-gap.

Consider changing the speed.


References

Bug algorithms

Original bug algorithm published around 1986.

Assume local knowledge of the environment and a global goal.

TangentBug

  • Distance function, and .

Saturated distance function for range

Problems

  • Requires knowledge about the distance to the goal; beacon setup or similar

References


Artificial Potential Fields

Gradient descent

Problems

  • Local minima


References

Brushfire algorithm

Mapping and localization

Planning

Vision

More

Labs from F1tenth

  1. Wall following https://f1tenth-coursekit.readthedocs.io/en/latest/assignments/labs/lab3.html#doc-lab3

More references