Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Python sample codes and documents about Autonomous vehicle control algorithm. Th
* [Hybrid A*](#hybrid-a)
* [D*](#d)
* [Dijkstra](#dijkstra)
* [ACO](#aco)
* [Q-Learning](#q-learning)
* [PSO](#pso)
* [PRM](#prm)
* [RRT](#rrt)
Expand Down Expand Up @@ -133,6 +135,13 @@ Planning with dynamic obstacle replanning
#### Dijkstra
Planning(Reduce frames by sampling every nth node to prevent memory exhaustion)
![](src/simulations/path_planning/dijkstra_path_planning/dijkstra_search.gif)
#### ACO
Ant Colony Optimization
Author: [Banaan Kiamanesh](https://github.com/BanaanKiamanesh)
![](src/simulations/path_planning/aco_path_planning/aco_search.gif)
#### Q-Learning
Reinforcement learning with a Q-table policy
![](src/simulations/path_planning/q_learning_path_planning/q_learning_search.gif)
#### PSO
Particle Swarm Optimization
![](src/simulations/path_planning/pso_path_planning/pso_search.gif)
Expand Down Expand Up @@ -200,4 +209,4 @@ Any contribution by creating an issue or sending a pull request is welcome!! Ple


## Author
[Shisato Yano](https://github.com/ShisatoYano)
[Shisato Yano](https://github.com/ShisatoYano)

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you change heare?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As you see the added line and the removed lines are exactly the same.
This happened because of the file saving that removes/adds a newline character at the end.

Loading
Loading