The evolution and current frontiers of path planning algorithms for mobile robots: A comprehensive review

Research Article
Open access

The evolution and current frontiers of path planning algorithms for mobile robots: A comprehensive review

Weihua Yang 1*
  • 1 The University of Sheffield    
  • *corresponding author xiaohua007qaq@outlook.com
Published on 25 March 2024 | https://doi.org/10.54254/2755-2721/50/20241229
ACE Vol.50
ISSN (Print): 2755-273X
ISSN (Online): 2755-2721
ISBN (Print): 978-1-83558-345-6
ISBN (Online): 978-1-83558-346-3

Abstract

The success of robotics heavily relies on path planning, which is a crucial link between computational processes and actual robot actions. This review deeply explores the evolution of path-planning algorithms tracing their development from strategies to advanced and adaptable methodologies powered by artificial intelligence. Moreover, this paper examines techniques like grid-based methods and potential fields, discussing their strengths and inherent limitations. Moving forward, this review delves into the game-changing potential of methods highlighting advancements such as Probabilistic Roadmaps (PRM) and Rapidly-exploring Random Trees (RRT). Furthermore, this paper dissects the impact of intelligence on path planning emphasizing the synergy between machine learning—particularly deep reinforcement learning—and robotic navigation. This review also sheds light on the challenges faced by these algorithms, including real-world implementation hurdles and potential risks associated with reliance on AI-centric approaches. Lastly, this study offers insights into trends. Speculate how emerging technologies like quantum computing may shape next-generation path planning. With its overview, this review aims to be a resource for researchers, academics, and practitioners interested, in exploring the vast realm of robotic path planning.

Keywords:

Mobile Robotics, Path Planning, Artificial Intelligence, Traditional Algorithms, Quantum Computing

Yang,W. (2024). The evolution and current frontiers of path planning algorithms for mobile robots: A comprehensive review. Applied and Computational Engineering,50,80-88.
Export citation

1. Introduction

Path planning is a cornerstone in the vast realm of mobile robotics. It's the very essence that dictates how robots, unaided by human interference, decide the course they should take to reach their destination efficiently and safely. Historically rooted in computational geometry and algorithmic theory, the domain of path planning has grown exponentially, reflecting the complexities and challenges introduced by real-world scenarios. The significance of path planning in mobile robotics cannot be understated. As the world becomes increasingly automated, robots are assigned critical roles, be it in healthcare, manufacturing, transportation, and even defense [1]. Ensuring these machines navigate their environments without causing disruptions or posing threats is paramount. At its core, path planning is not just about reaching point B from point A; it's about doing so while considering dynamic obstacles, minimizing energy consumption, and adhering to the physical and computational constraints of the robot [1].

Moreover, the realm of path planning has a broader significance than just navigation. It bridges the gap between theoretical computer science and tangible, real-world applications. Concepts studied abstractly in algorithm design and analysis are brought to life when a robot successfully navigates a maze, avoids moving obstacles, or plans a route in an unknown environment [2]. Looking ahead to the structure of this review, this article aims to embark on a journey arranged in chronological order. Starting from the historical roots of path planning, this review runs through traditional technologies and marks an important milestone in technological development. The narrative will gradually transition to modern methods and emphasize the impact of artificial intelligence on path-planning technology. Finally, this article delves into the current challenges and focuses on areas that still require urgent research, ultimately looking forward to the future of robot path planning [3].

This paper is structured to provide readers with a comprehensive understanding, irrespective of their familiarity with the domain. Whether it is for an experienced robotics expert, a student who has just entered this field, or a curious person who is eager to understand robots, this review is of great significance in revealing the development history and prospects of path planning for mobile robots.

2. Historical context of path planning in mobile robotics

The annals of mobile robotics are dotted with pivotal moments, and central to many of these has been the perpetual quest to conquer the intricacies of path planning. As robots transitioned from mere static machines to dynamic entities capable of movement, navigating an environment emerged as a paramount challenge.

2.1. Initial challenges and motivations

In the dawn of mobile robotics during the mid-20th century, the idea of a machine navigating autonomously in a space teeming with obstacles was nothing short of revolutionary. Robots were primarily restricted to controlled environments, like factories, where their movements were predictable and repetitive. The outside world, with its dynamic and often unpredictable nature, posed several challenges. The initial motivations for path planning were multi-faceted. On one hand, there was a surge in industrial demand for robots that could function outside the constraints of fixed environments. These robots could be employed in warehousing, transport, and even rudimentary search and rescue operations [4]. On the other hand, fuelled by the space race and the Cold War, there was a push from the defense and space sectors, aiming to deploy robots in unfamiliar terrains – be it the rugged landscapes of distant planets or reconnaissance missions in hostile territories [5].

2.2. Early strategies and their limitations

The first forays into path planning were largely deterministic. One of the foundational approaches was the grid-based method. Environments were discretized into grids, and robots would compute paths based on these predefined cells. While straightforward, this method was computationally expensive, especially for larger environments, and lacked finesse. Robots often moved in noticeably rigid patterns, unable to smoothly navigate curves or nuanced terrains [6]. The potential field method was another seminal technique. Here, robots were guided by virtual forces. Obstacles exerted repulsive forces, and goals exerted attractive ones. Conceptually elegant, this approach mimicked natural phenomena. However, in practice, robots often find themselves trapped in local minima, especially in complex environments with multiple obstacles. They would get "stuck" in places where the repulsive forces from obstacles and the attractive forces from the goal balanced out [7].

Visibility graphs and Voronoi diagrams also rose to prominence as tools for path planning. While visibility graphs connected all obstacle vertices to find the shortest path, Voronoi diagrams aimed to keep the robot as far away from obstacles as possible by navigating along the midpoints between obstacles. These methods were sound in theory, but they too had their limitations. Constructing such graphs was computationally intensive, and for dynamic environments where obstacles could move or change, these methods struggled to keep up in real time [8].

3. Traditional path planning techniques in mobile robotics

The evolution of path planning in mobile robotics has taken a dramatic turn over the years. Old methods were characterized by essentially simple and physically intuitive ‘straight-line’ geometric solutions, which formed part of the springboard from which subsequent significant developments evolved; although they also entailed a separate set of serious drawbacks. This paper provides an overview of some of the basic methods.

3.1. Grid-based methods

The most intuitive but earliest way of approaching path planning is the grid-based solution. The environment was represented as grids, with each cell denoting a potential position that the robot might occupy. The size of the robot and environment configuration defined several classes of cells: occupied, free, or partially occupied [9]. This simple approach helps plan through established algorithms like A* or Dijkstra, which search for the shortest path from the start to the final goal. However, since slightly increasing granularity in grids captured more detail, computational cost blew up fast. It did not handle real-world problems representative of an un-uniformly discretized environment smoothly—leading to sub-optimal plans [10].

3.2. Visibility graphs

Visibility graphs are rooted in computational geometry. Here, nodes are created for the start and goal positions and every vertex of each obstacle. A direct line, or edge, is then drawn between every pair of nodes if they're "visible" to each other, meaning the line doesn't cross any obstacle [11]. Once the graph is constructed, algorithms like Dijkstra's can find the shortest path. While this method guarantees optimality, constructing the visibility graph can be computationally intense, especially in environments crowded with obstacles.

3.3. Voronoi diagrams

Voronoi diagrams work on a distinct principle: for every point in free space, find the closest obstacle. The diagrams split the environment into regions, where every point within a region is closer to its associated obstacle than any other [12]. Robots then navigate along the edges of these regions, ensuring they stay maximally distant from obstacles. While this ensures safety, especially in environments where obstacle proximity can be hazardous, the paths might not always be the most direct or shortest. Moreover, constructing Voronoi diagrams, especially in higher dimensions, can be computationally demanding.

3.4. Potential fields

Potential fields were conceived as a reactive path-planning method based on drawing inspiration from electromagnetic fields. The robot is treated as a particle under the influence of virtual forces. An attractive force originating from the goal is pulling it towards the ill, while obstacles try to repel the robot and push it away [13]. Navigating through potential fields is like rolling down a hill; the robot moves by following a gradient of combined attractive and repulsive fields. However, one great challenge occurs in the form of local minima – places where equal pull comes simultaneously from all directions but gets “stuck”. These locations become more than pitfalls for robots navigating solely upon potential fields, especially when working in complex terrains [13].

4. Transition to modern path planning algorithms

The slow-moving transition from deterministic techniques to more flexible and adaptive ones is what characterizes the development of path-planning methods in robotics. At the earlier core of this transition, acceptance of the use of probabilistic methods that exemplify how mathematical veracity can be combined with the capability for handling uncertainty and complexity in real-world surroundings comes into play.

Probabilistic methods, unlike their deterministic predecessors that just look for a single optimal path based on a static model of the environment, try to model uncertainty and dynamics by imagining lots of possible futures and looking at them individually in addition to considering probabilities [14]. Robots are empowered to make decisions even with incomplete or corrupted data using the Probabilistic Roadmap (PRM), which constructs a roadmap of feasible paths and quickly checks it against an action plan. This technique is efficient in high-dimensional spaces and adaptable for many purposes, including wireless automation. The PRM led to the development of the Rapidly-exploring Random Trees technique (RRT) [15,16]. As it suggests, RRT rapidly expands trees into unexplored regions within a state space, ensuring thorough exploration while maintaining computational efficiency. Particularly good at handling non-linear dynamics and differential constraints, it finally came about being used for incremental search methods, which were quite an advancement, precisely D-Lite*, which marks a very important one. Built upon the traditional A* algorithm, D*-Lite stands out in its ability to deal with environmental changes by updating the shortest path incrementally, making it perfect for robots scouring dynamic terrains [17].

5. Influence of AI on path planning

Artificial intelligence (AI) catapulted the evolution of path planning considerably faster in mobile robotics. As practical as they are on more straightforward, smaller types of tasks, Trivial algorithms needed to be revised with expanding robotic applications and complex changing environments. The entry point is machine learning techniques incorporated from AI apparatuses that endowed robots with human-like learning abilities and adaptabilities.

5.1. Path optimization via Machine Learning and Neural Networks

Deep learning, in particular, Machine Learning (ML), has by and large left its mark on the path planning domain as well. Neural networks exploit their function approximation capabilities to model manifold complexities of a real-world environment [18]. Convolutional Neural Networks (CNNs) can process environmental data that are usually restricted for image processing tasks which they identify as obstacles and suitable paths or ruts. By learning over plenty of environmental samples though, these nets can predict safe routes even in unknown terrains [19].

Recurrent neural networks, especially with long-short term memory (LSTM) network-based versions of them, therefore remember sequences and consequently make them suitable for time-series data. Utilized in path planning, they have been adopted to predict as well as account for the movement trajectories of dynamic obstacles [20]. This is especially useful where other entities may be moving through the environment, such as cars or pedestrians. On the downside, using deep neural networks has a high computational cost, rendering on-robot real-time operations few and far between.

5.2. Reinforcement Learning and its applications in path planning

Reinforcement Learning (RL) gives a different perspective where an agent learns by interacting with its environment and receives feedback in the form of rewards or penalties depending on actions taken [21]. In a path-planning context, a robot learns through exploration, making decisions at each step. It obtains rewards from the latest experiments upon successful completion to decide about future activities on acquiring knowledge, if feasible or not. For example, reaching a destination quickly could be considered a high reward, whereas collision with any obstacle will lead to a penalty. Moreover, such methods as Proximal Policy Optimization (PPO) and others are introduced wherein not only does 'the robot find out the right act to do in every situation', but indeed not necessarily having written his long-term value [22]. RL thus shows promise and has worked wonders in simulations along with some specific applications though equally there persist difficulties. Such training can be time-consuming, and ensuring that the learned policies generalize well to all possible real-world scenarios remains an ongoing endeavor in research.

6. Hybrid and integrated approaches in path planning

The realm of mobile robotics has persistently sought to optimize path planning by ingeniously amalgamating traditional methodologies with the power and adaptability of contemporary AI-driven approaches. These hybrid techniques aim to leverage the robustness and predictability of traditional algorithms while benefiting from the flexibility and adaptability of modern AI techniques.

6.1. Combining traditional and modern techniques for enhanced efficiency

Traditional path planning techniques, like grid-based methods or Voronoi diagrams, provide deterministic results, ensuring that, given the same environment and parameters, the outcome will remain consistent. Such predictability can be essential in many applications [19]. On the other hand, AI-based techniques, especially those rooted in machine learning, offer adaptability, allowing robots to cope with dynamic and uncertain environments better. A classic example of such integration is using neural networks as heuristic functions in A* or Dijkstra's algorithms. While the traditional search algorithms chart the path, the neural networks, trained on vast environmental data, provide the heuristic, improving the efficiency of the search process [23]. Another strategy involves employing Convolutional Neural Networks (CNNs) to process environmental data, extracting features that inform traditional algorithms, like potential fields, of the environment's nuances. This allows for a more adaptive reaction to complex terrains or dynamic obstacles [24].

6.2. Multi-objective path planning

Path planning is not always about the shortest path. Sometimes, robots might have multiple objectives to consider, like minimizing energy consumption, avoiding threat zones, or maximizing data collection [25]. Such scenarios demand multi-objective optimization. Traditionally, techniques like the Pareto front were used, where multiple objectives were weighed, and a set of non-dominated solutions were presented. However, these solutions, in large-dimensional spaces, can be computationally expensive. AI-driven multi-objective optimization, particularly using evolutionary algorithms, has provided a fresh avenue. For instance, algorithms like the Non-dominated Sorting Genetic Algorithm II (NSGA-II) employ genetic algorithm principles to find a set of optimal paths considering multiple objectives simultaneously [26]. Furthermore, integrating reinforcement learning with multi-objective criteria has shown potential. Here, the agent receives feedback based on multiple objectives, refining its policy to strike a balance among them.

7. Complex environment navigation in mobile robotics

Navigating intricate environments represents a critical challenge in mobile robotics. As robots find increased applications in myriad domains, from urban landscapes to remote terrains, their path-planning algorithms are continually tested by the dynamism and unpredictability of these environments present. These challenges only amplify when multiple robots are introduced, necessitating inter-robot coordination.

7.1. Path planning in dynamic and uncertain environments

Historically, many path-planning algorithms assumed a static environment. However, real-world applications frequently involve changing scenarios – moving pedestrians, vehicles, or other obstacles [27]. One prominent solution is the Probabilistic RoadMap (PRM) method, which creates a roadmap of an environment by randomly sampling collision-free paths. When dynamic elements are introduced, a temporal aspect is included to adjust the roadmap, making it adaptable to changing circumstances. Another approach is the Dynamic Window Approach (DWA), tailored for robots with velocity constraints. It combines local trajectory optimization and obstacle avoidance by considering the robot's dynamics and only searching in the reachable velocity space [28].

7.2. Multi-robot path planning and coordination

Introducing multiple robots into the equation complicates the planning process. It's no longer just about the optimal path; it's about ensuring paths don't collide, tasks are distributed effectively, and there's a consensus among the robots. Decentralized planning strategies, where each robot plans for itself while considering others, have been a go-to solution. Techniques like rapidly Rapidly-exploring Random Trees (RRT) can be extended for multi-robot systems, where each tree represents a robot's path and the algorithm ensures these paths remain collision-free [29]. Centralized methods, though computationally more intensive, provide a holistic solution by considering the entire robot team as a single entity and planning paths for all robots simultaneously.

7.3. Addressing Real-world Challenges: Crowd Navigation and Variable Terrains

Two pertinent challenges in complex environment navigation are navigating through crowds and handling variable terrains.

7.3.1. Crowd Navigation. Moving in environments with pedestrians or crowds requires robots to be not just efficient but also socially compliant. The robot needs to anticipate human movement, which often involves understanding subtle social cues and norms. Techniques that combine Deep Reinforcement Learning with traditional motion prediction models have shown promise, allowing robots to both predict pedestrian trajectories and adapt their paths accordingly [30].

7.3.2. Variable Terrains. Whether it's the rugged landscape of a mining site or the shifting sands of a desert, robots need algorithms that can adjust to the ground beneath them. Hybrid algorithms, combining the traditional grid-based methods with learning-based approaches, help map these terrains in real time and adjust paths based on the robot's stability and environmental constraints [25].

8. Current limitations and challenges in path planning

Even with the substantial advancements in path planning for mobile robotics, there persist significant challenges and limitations that need to be addressed for a truly holistic and universally applicable solution. Recognizing these limitations is pivotal for directing future research and ensuring mobile robots are reliable and effective in diverse environments.

8.1. Unsolved problems in path planning

8.1.1. Dynamic environments with unpredictable obstacles. While some algorithms can adapt to environments with moving obstacles, predicting the unpredictable – such as sudden, erratic movements – remains a significant challenge [22].

8.1.2. Scalability issues. As the complexity of an environment increases, so does the computational cost of path planning. Algorithms that work efficiently in simple terrains might become computationally prohibitive in more intricate scenarios [25].

8.1.3. Long-Term path planning. While many algorithms excel at short-term obstacle avoidance, determining the best long-term path in a changing environment remains a complex problem [6].

8.2. Real-world implementation barriers

8.2.1. Sensor limitations. Path planning heavily relies on the robot's sensors. However, sensors can sometimes provide noisy or incomplete data, affecting the robot's perception of its environment [4].

8.2.2. Processing constraints. Onboard processing capabilities can limit the complexity of the algorithms that can be run in real-time. This balance between computational efficiency and optimality is often a significant constraint [1].

8.2.3. Physical limitations of robots. Path planning algorithms can compute a path, but the physical robot needs to execute it. Issues like slippage, mechanical failures, or energy constraints can affect the execution [11].

8.3. Potential pitfalls in Over-relying on AI-driven methods

8.3.1. Loss of determinism. Traditional algorithms have a deterministic nature, meaning given the same inputs, they produce the same outputs. AI-driven methods, especially those based on neural networks, can sometimes produce varied results under identical conditions, leading to unpredictability [26].

8.3.2. Overfitting. Machine learning models might perform exceptionally well in known environments (where they were trained) but could fail in unseen scenarios. This over-specialization can lead to unreliable robot behavior in unfamiliar terrains [26].

8.3.3. Transparency and understandability. AI-driven methods are often seen as black boxes. If a robot makes an error, determining the cause can be challenging with complex neural networks [24].

8.3.4. Training data constraints. Effective machine learning models require vast amounts of training data. However, acquiring comprehensive and diverse datasets for all possible real-world scenarios is daunting, if not impossible [26].

9. Conclusion

As people move through the pages of robotics, path planning is a testimony to human ingenuity and an unrelenting desire for perfection. From rudimental algorithms charting simple terrains to sophisticated AI-driven approaches navigating the convoluted labyrinths that are our dynamic world, path planning has undergone a miracle like no prior systemic engineering endeavor. The historical progression of path planning mirrors more broadly on technological innovation in general. Initial strategies with their deterministic nature attempted to solve this problem within rigid mathematical frameworks. Reaping better solutions than systems without boundaries often stumbled at unpredictability and complexity. This resulted in the integration of AI, a transformative force that brought life to robotic agents for their ability to learn, adjust themselves, and decide just like sentient beings. However, as the promises spread above our heads by AI spread farther apart from us bodies and minds start bothering us simultaneously; its immediate emergence spelt new issues reminding us of the intricate relation existing between innovation and complexity.

Emerging technologies like quantum computing propagate a future brimming with possibilities. They not only promise to enhance computational prowess but also rethink the fundamental paradigms that underpin path planning. But new challenges will arise with every leap forward, be it regarding the ethical implications of ultra-intelligent robots or of implementing bleeding-edge technologies on the fly and balancing its risks against benefits. This cyclical nature of progress and challenge invokes an imperative for continuous research and innovation, as robots integrate deeper into our societal fabric. In flawless navigation, there is increasing demand for seamless cooperation between human beings and robotic agents acting on their behalf in hospitals, factories, homes, and streets alike: this ability to navigate seamlessly becomes an indispensable prerequisite in many contexts.

Our journey is not just about improving technology. It is about pushing boundaries and creating, which reflects humanity's spirit. Standing at the edge of an exciting future, we realize that the road to perfection is continuous and driven by successes and challenges. It is critical to remember that as we evolve with path-planning technology, the endgame is just as important as the steps we take to get there.


References

[1]. LaValle S M 2006 Planning Algorithms: Cambridge University Press, 2006.

[2]. Choset H, Lynch K, Hutchinson S, Kantor G, Burgard W, Kavraki L and Thrun S 2007 Principles of Robot Motion: Theory, Algorithms, and Implementation ERRATA!!!!.

[3]. Latombe J C 2012 Robot motion planning (Vol. 124). Springer Science & Business Media.

[4]. Brooks R 1986 A robust layered control system for a mobile robot. IEEE journal on robotics and automation, 2(1), 14-23.

[5]. Granda C P N 2021 Robust Distributed Multi-Robot Information Based Exploration and Sampling. University of California, San Diego.

[6]. Alagić E, Velagić J and Osmanović A 2019 Design of Mobile Robot Motion Framework based on Modified Vector Field Histogram. In 2019 International Symposium ELMAR (pp. 135-138). IEEE.

[7]. Lin H C, Liu C, Fan Y and Tomizuka M 2017 Real-time collision avoidance algorithm on industrial manipulators. In 2017 IEEE Conference on Control Technology and Applications (CCTA) (pp. 1294-99). IEEE.

[8]. Montiel O, Sepúlveda R and Orozco-Rosas U 2015 Optimal path planning generation for mobile robots using parallel evolutionary artificial potential field. Journal of Intelligent & Robotic Systems, 79, 237-257.

[9]. Elfes A 2013 Occupancy grids: A stochastic spatial representation for active robot perception. arXiv preprint arXiv:1304.1098.

[10]. Zhong X, Tian J, Hu H and Peng X 2020 Hybrid path planning based on safe A* algorithm and adaptive window approach for mobile robot in large-scale dynamic environment. Journal of Intelligent & Robotic Systems, 99, 65-77.

[11]. Liang J H and Lee C H 2015 Efficient collision-free path-planning of multiple mobile robots system using efficient artificial bee colony algorithm. Advances in Engineering Software, 79, 47-56.

[12]. Ayawli B B K, Appiah A Y, Nti I K, Kyeremeh F and Ayawli E I 2021 Path planning for mobile robots using Morphological Dilation Voronoi Diagram Roadmap algorithm. Scientific African, 12, e00745.

[13]. Rostami S M H, Sangaiah A K, Wang J and Liu X 2019 Obstacle avoidance of mobile robots using modified artificial potential field algorithm. EURASIP Journal on Wireless Communications and Networking, 2019(1), 1-19.

[14]. Thrun S 2002 Probabilistic robotics. Communications of the ACM, 45(3), 52-57.

[15]. Wang Z and Cai J 2018 Probabilistic roadmap method for path-planning in radioactive environment of nuclear facilities. Progress in Nuclear Energy, 109, 113-120.

[16]. Rybus T and Seweryn K 2015 Application of rapidly-exploring random trees (RRT) algorithm for trajectory planning of free-floating space manipulator. In 2015 10th International Workshop on Robot Motion and Control (RoMoCo) (pp. 91-96). IEEE.

[17]. Peng J H, Li I H, Chien Y H, Hsu C C and Wang W Y 2015 Multi-robot path planning based on improved D* lite algorithm. In 2015 IEEE 12th International Conference on Networking, Sensing and Control (pp. 350-353). IEEE.

[18]. Aradi S 2020 Survey of deep reinforcement learning for motion planning of autonomous vehicles. IEEE Transactions on Intelligent Transportation Systems, 23(2), 740-759.

[19]. Tai L and Liu M 2016 Deep-learning in mobile robotics-from perception to control systems: A survey on why and why not. arXiv preprint arXiv:1612.07139, 1.

[20]. Buhet T, Wirbel E, Bursuc A and Perrotton X 2020 Plop: Probabilistic polynomial objects trajectory planning for autonomous driving. arXiv preprint arXiv:2003.08744.

[21]. Qu C, Gai W, Zhong M and Zhang J 2020 A novel reinforcement learning based grey wolf optimizer algorithm for unmanned aerial vehicles (UAVs) path planning. Applied soft computing, 89, 106099.

[22]. Liu G, Deng W, Xie X, Huang L and Tang H 2022 Human-Level Control Through Directly Trained Deep Spiking $ Q $-Networks. IEEE Transactions on Cybernetics.

[23]. Schulman J, Wolski F, Dhariwal P, Radford A and Klimov O 2017 Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347.

[24]. Kalyanmoy D 2002 A fast and elitist multi-objective genetic algorithm: NSGA-II. IEEE Trans. on Evolutionary Computation, 6(2), 182-197.

[25]. Deb K and Jain H 2013 An evolutionary many-objective optimization algorithm using reference-point-based nondominated sorting approach, part I: solving problems with box constraints. IEEE transactions on evolutionary computation, 18(4), 577-601.

[26]. van Den Berg J, Snoeyink J, Lin M C and Manocha D 2009 Centralized path planning for multiple robots: Optimal decoupling into sequential plans. In Robotics: Science and systems (Vol. 2, No. 2.5, pp. 2-3).

[27]. Henkel C, Bubeck A and Xu W 2016 Energy efficient dynamic window approach for local path planning in mobile service robotics. IFAC-papersonline, 49(15), 32-37.

[28]. Zhang L, Lin Z, Wang J and He B 2020 Rapidly-exploring Random Trees multi-robot map exploration under optimization framework. Robotics and Autonomous Systems, 131, 103565.

[29]. Chen Y F, Everett M, Liu M and How J P 2017 Socially aware motion planning with deep reinforcement learning. In 2017 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) (pp. 1343-1350). IEEE.

[30]. Doshi-Velez F and Kim B 2017 Towards a rigorous science of interpretable machine learning. arXiv preprint arXiv:1702.0860


Cite this article

Yang,W. (2024). The evolution and current frontiers of path planning algorithms for mobile robots: A comprehensive review. Applied and Computational Engineering,50,80-88.

Data availability

The datasets used and/or analyzed during the current study will be available from the authors upon reasonable request.

Disclaimer/Publisher's Note

The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of EWA Publishing and/or the editor(s). EWA Publishing and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

About volume

Volume title: Proceedings of the 4th International Conference on Signal Processing and Machine Learning

ISBN:978-1-83558-345-6(Print) / 978-1-83558-346-3(Online)
Editor:Marwan Omar
Conference website: https://www.confspml.org/
Conference date: 15 January 2024
Series: Applied and Computational Engineering
Volume number: Vol.50
ISSN:2755-2721(Print) / 2755-273X(Online)

© 2024 by the author(s). Licensee EWA Publishing, Oxford, UK. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license. Authors who publish this series agree to the following terms:
1. Authors retain copyright and grant the series right of first publication with the work simultaneously licensed under a Creative Commons Attribution License that allows others to share the work with an acknowledgment of the work's authorship and initial publication in this series.
2. Authors are able to enter into separate, additional contractual arrangements for the non-exclusive distribution of the series's published version of the work (e.g., post it to an institutional repository or publish it in a book), with an acknowledgment of its initial publication in this series.
3. Authors are permitted and encouraged to post their work online (e.g., in institutional repositories or on their website) prior to and during the submission process, as it can lead to productive exchanges, as well as earlier and greater citation of published work (See Open access policy for details).

References

[1]. LaValle S M 2006 Planning Algorithms: Cambridge University Press, 2006.

[2]. Choset H, Lynch K, Hutchinson S, Kantor G, Burgard W, Kavraki L and Thrun S 2007 Principles of Robot Motion: Theory, Algorithms, and Implementation ERRATA!!!!.

[3]. Latombe J C 2012 Robot motion planning (Vol. 124). Springer Science & Business Media.

[4]. Brooks R 1986 A robust layered control system for a mobile robot. IEEE journal on robotics and automation, 2(1), 14-23.

[5]. Granda C P N 2021 Robust Distributed Multi-Robot Information Based Exploration and Sampling. University of California, San Diego.

[6]. Alagić E, Velagić J and Osmanović A 2019 Design of Mobile Robot Motion Framework based on Modified Vector Field Histogram. In 2019 International Symposium ELMAR (pp. 135-138). IEEE.

[7]. Lin H C, Liu C, Fan Y and Tomizuka M 2017 Real-time collision avoidance algorithm on industrial manipulators. In 2017 IEEE Conference on Control Technology and Applications (CCTA) (pp. 1294-99). IEEE.

[8]. Montiel O, Sepúlveda R and Orozco-Rosas U 2015 Optimal path planning generation for mobile robots using parallel evolutionary artificial potential field. Journal of Intelligent & Robotic Systems, 79, 237-257.

[9]. Elfes A 2013 Occupancy grids: A stochastic spatial representation for active robot perception. arXiv preprint arXiv:1304.1098.

[10]. Zhong X, Tian J, Hu H and Peng X 2020 Hybrid path planning based on safe A* algorithm and adaptive window approach for mobile robot in large-scale dynamic environment. Journal of Intelligent & Robotic Systems, 99, 65-77.

[11]. Liang J H and Lee C H 2015 Efficient collision-free path-planning of multiple mobile robots system using efficient artificial bee colony algorithm. Advances in Engineering Software, 79, 47-56.

[12]. Ayawli B B K, Appiah A Y, Nti I K, Kyeremeh F and Ayawli E I 2021 Path planning for mobile robots using Morphological Dilation Voronoi Diagram Roadmap algorithm. Scientific African, 12, e00745.

[13]. Rostami S M H, Sangaiah A K, Wang J and Liu X 2019 Obstacle avoidance of mobile robots using modified artificial potential field algorithm. EURASIP Journal on Wireless Communications and Networking, 2019(1), 1-19.

[14]. Thrun S 2002 Probabilistic robotics. Communications of the ACM, 45(3), 52-57.

[15]. Wang Z and Cai J 2018 Probabilistic roadmap method for path-planning in radioactive environment of nuclear facilities. Progress in Nuclear Energy, 109, 113-120.

[16]. Rybus T and Seweryn K 2015 Application of rapidly-exploring random trees (RRT) algorithm for trajectory planning of free-floating space manipulator. In 2015 10th International Workshop on Robot Motion and Control (RoMoCo) (pp. 91-96). IEEE.

[17]. Peng J H, Li I H, Chien Y H, Hsu C C and Wang W Y 2015 Multi-robot path planning based on improved D* lite algorithm. In 2015 IEEE 12th International Conference on Networking, Sensing and Control (pp. 350-353). IEEE.

[18]. Aradi S 2020 Survey of deep reinforcement learning for motion planning of autonomous vehicles. IEEE Transactions on Intelligent Transportation Systems, 23(2), 740-759.

[19]. Tai L and Liu M 2016 Deep-learning in mobile robotics-from perception to control systems: A survey on why and why not. arXiv preprint arXiv:1612.07139, 1.

[20]. Buhet T, Wirbel E, Bursuc A and Perrotton X 2020 Plop: Probabilistic polynomial objects trajectory planning for autonomous driving. arXiv preprint arXiv:2003.08744.

[21]. Qu C, Gai W, Zhong M and Zhang J 2020 A novel reinforcement learning based grey wolf optimizer algorithm for unmanned aerial vehicles (UAVs) path planning. Applied soft computing, 89, 106099.

[22]. Liu G, Deng W, Xie X, Huang L and Tang H 2022 Human-Level Control Through Directly Trained Deep Spiking $ Q $-Networks. IEEE Transactions on Cybernetics.

[23]. Schulman J, Wolski F, Dhariwal P, Radford A and Klimov O 2017 Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347.

[24]. Kalyanmoy D 2002 A fast and elitist multi-objective genetic algorithm: NSGA-II. IEEE Trans. on Evolutionary Computation, 6(2), 182-197.

[25]. Deb K and Jain H 2013 An evolutionary many-objective optimization algorithm using reference-point-based nondominated sorting approach, part I: solving problems with box constraints. IEEE transactions on evolutionary computation, 18(4), 577-601.

[26]. van Den Berg J, Snoeyink J, Lin M C and Manocha D 2009 Centralized path planning for multiple robots: Optimal decoupling into sequential plans. In Robotics: Science and systems (Vol. 2, No. 2.5, pp. 2-3).

[27]. Henkel C, Bubeck A and Xu W 2016 Energy efficient dynamic window approach for local path planning in mobile service robotics. IFAC-papersonline, 49(15), 32-37.

[28]. Zhang L, Lin Z, Wang J and He B 2020 Rapidly-exploring Random Trees multi-robot map exploration under optimization framework. Robotics and Autonomous Systems, 131, 103565.

[29]. Chen Y F, Everett M, Liu M and How J P 2017 Socially aware motion planning with deep reinforcement learning. In 2017 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) (pp. 1343-1350). IEEE.

[30]. Doshi-Velez F and Kim B 2017 Towards a rigorous science of interpretable machine learning. arXiv preprint arXiv:1702.0860