Fast Marching

base_f

Description

Introduction to Fast Marching

The FM algorithm was introduced by J. Sethian in 1996 and is a numerical algorithm that approximates the viscosity solution of the Eikonal equation which represents, among other,
The FM method is used to solve the Eikonal equation and is very similar to the Dijkstra algorithm that finds the shortest paths on graphs, though it is applied to continuous media.

Fast Marching and Motion Planning

To get a Motion Planner for mobile robots with desirable
properties, such as smoothness and safety, we can think of
attractive potentials. In Nature, there are phenomena with a
similar behaviour, e.g., the electromagnetic waves. If there
is an antenna in the goal point that emits an electromagnetic
wave, then the robot can drive to the destination by tracing
the waves back to the source. In general, the concept of
electromagnetic waves is especially interesting, since the potential and its associated vector field have the good properties
desired for the trajectory, such as smoothness and the absence
of local minima.

This attractive potential still has some problems. The most
important one that typically arises in mobile robotics, is
that optimal motion plans may bring robots too close to
obstacles or people, which is not safe. To obtain a safe
path, it is necessary to add a component that repels the robot
from obstacles. In addition, this repulsive potential and its
associated vector field should have good properties such as
those of electrical fields. If we consider that the robot has
an electrical charge of the same sign as obstacles, then the
robot would be pushed away from obstacles. The properties
of this electric field are very good because it is smooth and
there are no singular points in the interest space.



To help understand the Fast Marching Path Planning basis method, let us suppose a two dimensional wave propagating in a homogeneous medium. The front wave is then a circle propagating outwards the initial point. If an additional axis is added to represent the time, the results is as shown in the next figure:

Now, if the initial point of the wave propagation are all those points which represents obstacles in a binary occupancy map, we obtain a map in which the value for each cell is proportional to the distance to the nearest obstacle, as shown in the next figures:


An the path obtained over this new “distances” map, applying the gradient method is:

FM2: Fast Marching Square

The path obtained applying Fast Marching directly is non-smooth and runs too close to obstacles, being not safe at all. The solution we propose is to use the “distances” map obtained applying Fast Marching as a slowness map. This means that the lower is the value for a given cell the closer it is to an obstacle (or wall) thus the velocity has to be slower.

Then, a wave is propagating from the goal point until it reaches the current position of the robot. For this propagation, the velocity of the wave for each cell is proportional to the value of the slowness map for that cell. Then it is obtained a map in which each cell has a value for the time the wave lasts to reach that cell. This map will never have local minima, since the velocity of the wave is always non negative.

The map with the time values applying Fast Marching over the previous slowness map is:

And applying the gradient method from the goal point to the initial point the path obtained is:

The result is a path much more smooth, safer and optimal in time.

We already proposed other alternatives such as Voronoi Fast Marching. Please, see the publications list below to find more information.

FM Applications

This proposed path planning has been applied successfully to:

– 2D and 3D path planning.
– Exploration and SLAM.
– Robot formations.
– Outdoor path planning.

Entries:
A model-free approach for accurate joint motion control in humanoid locomotion
International Journal of Humanoid Robotics. num. 1 , vol. 8 , 2011
J. Villagra
Humanoid Robot RH-1 for Collaborative Tasks. A Control Architecture for Human-Robot Cooperation
Applied Bionics and Biomechanics. num. 4 , vol. 5 , pages: 225 – 234 , 2009
C.A. Monje P. Pierro

Entries:
O. Stasse; A. Kheddar; K. Yokoi. Humanoid feet trajectory generation for the reduction of the dynamical effects
The 9th IEEE-RAS International Conference on Humanoid Robots (Humanoids '09), Paris, France
P. Pierro
A Human-Humanoid Interface for Collaborative Tasks
Second workshop for young researchers on Human-friendly robotics, Sestri Levante, Italy
P. Pierro M. Gonz谩lez-Fierro D. Hernandez
A Practical Decoupled Stabilizer for Joint-Position Controlled Humanoid Robots
The 2009 IEEE/RSJ International Conference on Intelligent RObots and Systems (IROS '09), St. Louis, USA
D. Kaynov P. Pierro
The Virtual COM Joints Approach for Whole-Body RH-1 Motion
18th IEEE International Symposium on Robot and Human Interactive Communication (RO-MAN '09), Toyama , Japan
P. Pierro C.A. Monje
Performing collaborative tasks with the humanoid robot RH-1 – A novel control architecture
12th International Conference on Climbing and Walking Robots and the Support Technologies for Mobile Machines (CLAWAR '09), Istanbul, Turkey
P. Pierro C.A. Monje
Pose Control of the Humanoid Robot RH-1 for Mobile Manipulation
14th International Conference on Advanced Robotics (ICAR '09), Munich, Germany
P. Pierro C.A. Monje
Cap铆tulo: “Realizaci贸n de tareas colaborativas entre robots humanoides. Experimentaci贸n con dos robots Robonova”
At Proceedings of the V Workshop ROBOCITY2030. Cooperaci贸n en Rob贸tica, 2009, Madrid, Spain
D. Herrero P. Pierro A. Jardon
Modelling and Control of the Humanoid Robot RH-1 for Collaborative Tasks
IEEE RAS/RSJ Conference on Humanoids Robots, Daejeon, Korea
P. Pierro C.A. Monje
Robots in future collaborative working environments
First workshop for young researchers on Human-friendly robotics, Napoli, Italy
P. Pierro
HUMAN-HUMANOID ROBOT COOPERATION IN COLLABORATIVE TRANSPORTATION TASKS
11th International Conference on Climbing and Walking Robots and the Support Technologies for Mobile Machines (CLAWAR 2008), 2008, Coimbra, Portugal
M. Arbulu
Trends of new robotics platform, designing Humanoid Robot Rh-1
CARS & FOF 0723rd ISPE International Conference on CAD/CAM Robotics and Factories of the Future, 2007, Bogota, Colombia
M. Arbulu D. Kaynov L.M. Cabas P. Staroverov
Nuevas tendencias en plataformas de rob贸tica, caso robot humanoide Rh-1
Intercon 2007XIV Congreso Internacional de Ingenier铆a El茅ctrica, Electr贸nica y Sistemas, 2007, Piura, Peru
M. Arbulu D. Kaynov L.M. Cabas P. Staroverov
ZMP Human Measure System
8th International Conference on Climbing and Walking Robots (Clawar'2005), London, United Kingdom
M. Arbulu D. Kaynov P. Staroverov
Rh-0 Humanoid Robot Bipedal Locomotion and Navigation Using Lie Groups and Geometric Algorithms
International Conference on Intelligent Robots and Systems (IROS'2005), Edmonton, Canada
J. M. Pardos-Gotor
Humanoid Robot Kinematics Modeling Using Lie Groups
7th International Conference on Climbing and Walking Robots (Clawar'2004), Madrid, Spain
J. M. Pardos-Gotor
Lie Groups and Lie Algebras in Robotics.
University Carlos III of Madrid – ROBOTICSLAB SEMINAR., Madrid, Spain
J. M. Pardos-Gotor

Previous Research topics

next Research topics