You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PSO is a metaheuristic optimization algorithm inspired by bird flocking behavior. In path planning, particles explore the search space to find collision-free paths while avoiding obstacles.
367
367
368
368
The animation shows particles (blue dots) converging towards the optimal path (yellow line) from start (green area) to goal (red star).
Copy file name to clipboardExpand all lines: docs/modules/5_path_planning/particleSwarmOptimization/particleSwarmOptimization_main.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
Particle Swarm Optimization Path Planning
4
4
------------------------------------------
5
5
6
-
This is a 2D path planning implementation using Particle Swarm Optimization (PSO).
6
+
This is a 2D path planning simulation using the Particle Swarm Optimization algorithm.
7
7
8
8
PSO is a metaheuristic optimization algorithm inspired by the social behavior of bird flocking or fish schooling. In path planning, particles represent potential solutions that explore the search space to find collision-free paths from start to goal.
0 commit comments