Motion planning or path planning is a process of determining series of configuration states of an entity to reach a goal state without collision with an obstacle. For a motion planning algorithm to be efficient it must be:
- Output the shortest path
- Require less computational time
- Require the least amount of storage
Two of the simplest and widely used algorithms of Motion Planning are
- Dijsktra's Shartest Path:
- A* Shortest Path Results:
- Ground Truth
- Dijsktra's Shortest Path Algorithm
- A* Shortest Path Algorithm
Resources:
- Motion Planning:
- Dijsktra's Shortest Path
- A* Shortest Path