Skip to Content
ElectronicsElectronics
  • Article
  • Open Access

25 August 2022

The UAV Path Coverage Algorithm Based on the Greedy Strategy and Ant Colony Optimization

,
,
,
,
,
,
and
School of Physics and Electronics, Nanning Normal University, Nanning 530100, China
*
Authors to whom correspondence should be addressed.

Abstract

Today, the development of unmanned aerial vehicles (UAVs) has attracted significant attention in both civil and military fields due to their flight flexibility in complex and dangerous environments. However, due to energy constraints, UAVs can only finish a few tasks in a limited time. The problem of finding the best flight path while balancing the task completion time and the coverage rate needs to be resolved urgently. Therefore, this paper proposes a UAV path coverage algorithm base on the greedy strategy and ant colony optimization. Firstly, this paper introduces a secondary advantage judgment and optimizes it using an ant colony optimization algorithm to reach the goal of minimum time and maximum coverage. Simulations are performed for different numbers of mission points and UAVs, respectively. The results illustrate that the proposed algorithm achieves a 2.8% reduction in task completion time while achieving a 4.4% improvement in coverage rate compared to several previous works.

1. Introduction

Nowadays, Unmanned Aerial Vehicle (UAV) technologies are rapidly developing and gaining attention from countries worldwide due to their faster moving speed and wider deployment range, mainly due to freedom to move. With these advantages, UAVs have a wide range of applications in military and civilian use, such as reconnaissance [1], surveillance [2], cargo delivery [3], natural disaster prevention or rescue [4,5], etc. Unlike crewed vehicles, UAVs can take humans out of dull, dirty, dangerous missions. The UAV usually works unsupervised, which requires them to choose the best collision-free coverage path from the start to the destination.
For example, suppose a UAV needs to patrol and monitor a complex area. In that case, the UAV will fly from the base to the location of a possible disaster to collect in-formation and eventually return to the base and generate an early warning situational map of the area. Although UAVs can effectively reduce costs and increase flexibility in large-area surveillance work, it also leads to serious path planning and mission assign-ment problems. In some cases, the flight time is irrelevant to the importance of the mis-sion point. UAVs sometimes have to fly very long times to important mission points. Failure to balance these two aspects will seriously undermine the effectiveness of the work in the mission area [6]. Meanwhile, the inefficient use or waste of energy can also seriously affect the efficiency of UAVs.
Therefore, it is challenging to design path planning algorithms in energy constraints conditions. This challenge also requires flight time and important mission point coordi-nation. In this paper, the problem is considered the minimum time and maximum cov-erage (MTMC) problem, where a group of UAVs is dispatched to effectively patrol tar-gets in a large-scale surveillance area to achieve the maximum coverage in the minimum mission time [7]. The importance of the mission points is quantified as the weight values. The MTMC problem is NP-hard because it is an extension of the well-known Traveling Salesman Problem. No efficient algorithm has been found for this problem, and only its practical approximate optimum can be obtained.
The details of the contribution of this paper can be summarized as follows.
(1)
Optimize the greedy algorithm using secondary advantage mechanism to balance the flight time and the importance of mission points.
(2)
Optimize the flight path using the ant colony algorithm to reduce the UAV flight time.
The rest of this paper is organized as follows. The related work of the paper is shown in Section 2. The system model and the details of the path planning algorithm are pre-sented in Section 3. The simulation results of the algorithm in this paper are given in Section 4. The conclusion and the prospect of future work are presented in Section 5.

3. System Model

3.1. Environmental Model

In Figure 1, there are N mission points randomly distributed in a 50 km × 50 km working area [7]. Each point is assigned a weight value based on its importance. Suppose M UAVs are deployed, and they will fly according to a planned path, collecting information such as pictures and videos taken at the mission point during the flight. Eventually, the UAVs returned to the starting point, and the data collection mission finished. During a mission: Each mission point is captured at most once during a mission. The time for mission completion is as follows: the timing starts from the first UAV taking off and ends when the last UAV returns. The main parameters in this paper are listed in Table 2.
Figure 1. Environmental Model.
Table 2. Main parameters of this paper.

3.2. Model Formulation

Definition 1
(Flight path, d ij ). When the UAV flies directly from mission point i to mission point j, the vector ij is defined to represent the flight path of the UAV, where the Euclidean distance [42] between two points is d ij as the flight distance.
d ij = ( x i     x j ) 2 + ( y i     y j ) 2 ,     i , j 0 , 1 , 2 , , N  
In practical scenarios, the consumption time of turning the UAV also can not be ignored. As shown in Figure 2, when the UAV moves from mission point j to the next P, the flight direction changes from ij to jP after turning by a certain angle. Therefore, the turning angle of the UAV θ ijP is defined as the angle between two vectors.
Figure 2. Turning angle diagram.
Definition 2
(Turning angle, θ ijP ).
θ ijP = arc cos d ij · d jP d ij · d jP ,   i , j , P 0 , 1 , 2 , , N
It should be pointed out that the turning angle θ ijP ranges from 0 to π. When the mission points i, j and P are in the same line, and the flight direction of the UAV has not changed, the turning angle θ ijP is 0. On the contrary, the turning angle θ ijP is π.
Definition 3
(Flight time, T ij ). Flight time refers to the time it costs for the UAV to take flight between two mission points. Assume that the UAV departs from mission point i and that the velocity is a deterministic constant. As shown in Figure 2, the flight time T ij for the UAV to travel from the current point j to the point P can be obtained by:
T jP = d jP V + θ ijP ω ,   i , j , P 0 , 1 , 2 , , N ,
where V and ω represent the straight-line speed and turning speed of the UAV.
It is worth noting that each time a new mission point P is selected, it is necessary to predict whether there will be enough time to spend on returning to the base after reaching mission point P. Because only carrying enough energy can ensure the safety of the UAV’s flight. Therefore, it is required to calculate the estimated flight time T back from mission point P back to the base.
T back = d PP 0 V + θ jPP 0 ω ,     j , P 0 , 1 , 2 , , N   ,
where P 0 represents the base. It should be noted that the value T back is only to assist the algorithm in determining whether the remaining energy of the UAV is sufficient to support its return to the base.
Definition 4
(Cost function [7], COST). When the UAV selects a new mission point, it needs to calculate the energy cost function to reach this mission point.
COS T ij = ε T ij + 1     ε W j ,   i , j 0 , 1 , 2 , , N   ,
where W j is the weight of mission point j. ε is a constant in the range (0, 1), and it is used to balance the degree of influence of the weight and the flight time on the algorithm
Definition 5
(Total flight time, T k ). When the path of the k-th UAV is known, the total flight time T k of the k-th UAV can be calculated by
T k = j = 0 N P = 1 N T jP   *   Q jP k ,   k 1 , 2 , , M ,   j , P 0 , 1 , 2 , , N   ,
where P jP k indicates whether there is a path from mission point j to mission point P in the path of the k-th UAV, and if the path exists, Q jP k = 1 , otherwise Q jP k = 0 .
Definition 6
(Path weight, W k ). The importance of different mission points corresponds to different weights. Path weight refers to the sum of the weights of the mission points covered by the k-th UAV. The path weights W k can be obtained by calculating
W k = i = 1 N W i   *   X i k ,   k 1 , 2 , , M ,   i 0 , 1 , 2 , , N   ,
where W i represents the weight of the mission point i. X i k represents whether mission point i is covered by the k-th UAV. If the point is covered, X i k = 1 , otherwise X i k = 0 .
Definition 7
(Task completion time, T done ). In UAV path planning missions, task completion time and coverage rate are important metrics. The task completion time is the duration when the last UAV returns to the base. That is, the maximum value of the flight time is T done .
T done = max T k ,   k 1 , 2 , , M
Definition 8 (Task weight,  W t ).
When the paths of these k drones are known, the covered mission points can be counted. Therefore, the mission coverage weights W t can be obtained by calculating the sum of the weights of these mission points.
W t = k = 1 M W k ,   k 1 , 2 , , M  
Definition 9 (Path weight, μ).
The coverage rate μ is obtained by calculating the ratio of W total to the task coverage weights W t .
μ = W t W total   ,
where W total is the sum of the weights of all mission points in the mission area.
Definition 10
(Ant Colony Optimization [43ACO). Ants secrete pheromones on their way to a mission point to obtain food, and the concentration of this pheromone can be sensed by the ants to each other. Therefore, the pheromone concentration can indicate the path distance, and the higher the density, the shorter the path length. In each iteration, the algorithm will retain the path with the highest concentration parameter. The algorithm selects the shortest path through iteration by combining group perception and a positive feedback mechanism.
P ij g = τ ij t α · η ij t β s allow k τ is t α · η is t β   ,   s allow k   0       ,   s allow k   ,  
where P ij g represents the probability that the g-th ant selects to travel from mission point i to mission point j; τ ij t represents the pheromone concentration between mission points i and j at the t-th iteration; η ij t is the heuristic function whose value is the reciprocal of the distance between mission points i and j; α and β represent the pheromone concentration and the heuristic function factor, respectively; allow k represents the set of mission points which have not been visited yet. In particular, each iteration updates the pheromone concentration on the path with the following:
τ i j t + 1 = 1     ρ   *   τ ij t + τ ij τ ij = g = 1 m τ ij g                                                   ,   0   <   ρ   <   1   ,
where τ ij g represents the pheromone concentration secreted by the g-th ant between the mission points i and j; Δ τ ij represents the sum of the pheromone concentrations secreted by the total g ants between the mission points i and j. It should be pointed out that ρ is the volatilization factor and takes a range from 0 to 1. The reason is that the pheromone secreted by the ants is continuously volatilized into the air with iterations.

3.3. PCBGA Algorithm

In previous studies [7,40,41], they were calculated to get the new path point through which the UAV passed. However, when the remaining energy of the UAV does not support it to return to the base after reaching the next optimal point, the previous algorithm will decide that the UAV returns to the base directly from the current point. The above methods will lead to the energy of the UAV cannot being fully utilized.
Therefore, this paper introduces the secondary advantage point, which will be activated when the UAV encounters the content described in the previous paragraph. Then, the method will calculate the energy consumed to reach the secondary advantage point and re-evaluate whether the remaining energy is enough to support the UAV back to the base.
Definition 11 (secondary advantage point, sa).
When the mechanism of calculating secondary advantage points is activated, the energy already consumed by the UAV when it reaches the sa can be calculated by
T sa   =   i   =   0 N T j   +   T jsa , j , sa 1 , 2 , , N   ,
where j = 0 N T j denotes the time already consumed by the UAV to reach mission point j. T jsa calculates the flight time from the current mission point j to sa, where sa refers to the second mission point in the COST set. It is important to point out that when T sa + T back T max , the UAV will move to sa. On the contrary, the algorithm will continue to evaluate the third smallest mission point in the COST set and so on. The UAV will return to the base if all the mission points in the COST set fail to satisfy the condition.

Algorithm Description

The details of the PCBGA algorithm are shown in Algorithm 1. First, a set of mission points P and a set of UAVs U are randomly deployed on an area, and the weight set W represent the importance mission point according to the map, as in Figure 1. Set all the UAVs to take off at the initial location of the base P 0 and start flying to each mission point.
Algorithm 1 PCBGA Algorithm
Input: Mission point set: P   =   { P 1 , P 2 , , P N } ; Weight set: W   =   { W 1 , W 2 , , W N } ;
     UAV   set :   U   =   { U 1 , U 2 , , U M } ;   Base :   P 0
Output: Flight path set: L   =   { L 1 , L 2 , , L M } ; Task completion time: T done ;
    Coverage rate: μ
Electronics 11 02667 i001
In Step 1, the parameters are initialized. In Step 2, the Euclidean distance between each mission point in the task area is calculated. From step 3 to step 21, the mission points are added to the path of each UAV. In steps 6 to 7, the algorithm calculates the COST set and selects the smallest value. When the flight duration exceeds the UAV endurance time, the algorithm executes the judgment mechanism of the secondary advantage in steps 9 to 12. The set of mission points P = { P 1 , P 2 , , P j , , P N } is the points that need to be collected for information. In steps 13 to 15, if the mission time of point j is less than the UAV endurance time ( T judge     T max ), point j is added to the UAV path L k . Meanwhile, point j will be removed from the mission points set P, P = { P 1 , P 2 , , P N } . This method avoids the same point being selected repeatedly. In steps 17 to 20, the algorithm optimizes the path of the UAV using the ACO algorithm. If the new total flight time T ACO is shorter than before, the optimization of the ant colony optimization algorithm is proved successful. The path of the k-th UAV will be updated; otherwise, the original path will not be changed. After the above steps are executed, the algorithm is rerun, and the remaining mission points are assigned to the next UAV until all UAVs return to the base.
Therefore, the algorithm first uses the greedy strategy to plan the initial flight path of the UAV. When the greedy strategy determine whether the UAV needs to return to the base because of lack of energy, the suboptimal mechanism will be activated. After conducting path planning, the ant colony optimization algorithm is then used to find the optimal visiting order of the mission points that have been selected. Ultimately, the algorithm plans an efficient flight path for each UAV.

4. Simulation

The coverage performance of this algorithm is evaluated through simulation experiments. Specifically, it is evaluated by two aspects: task completion time and coverage rate. To demonstrate the superiority of the algorithm, we also use the WTSC algorithm [7] and the G-MSCR algorithm [41] as the contrast. It is important to note that the UAV collects data when it passes the mission point and does hover above it. All simulations in this chapter are performed in MATLAB, and the simulation experiments and detailed results are shown below.

4.1. Simulation Model

The main parameters [7] in the simulation experiment are shown in Table 3. The number of mission points is between 50 and 400. It should be pointed out that the mission points are obtained from locations in the monitored area where the heat value is higher than 0, as shown in Figure 3a. The heat value of an area indicates the probability of a disaster occurring in that area and expresses the heat value as the weight of the mission point in that area. The camera carried by the UAV has a coverage range of 1.5 km2 at an altitude of 1 km.
Table 3. Simulation experiment parameter setting table.
Figure 3. The path planning when N = 100, M = 5. (a) Simulation heat map of forest environment; (b) Flight paths based on the PCBGA algorithm.

4.2. PCBGA Algorithm for Path Planning on Heat Map

The experiment verifies the planning capability of the PCBGA algorithm on the heat map of the mission area. Refer to Table 2 for the environment and simulation data settings. It should be pointed out that the number M of UAVs is fixed at 5, and the number of mission points N is fixed at 100. The experimental result is shown in Figure 3b.
In Figure 3b, the black square indicates the base, the white circles indicate the mission points, and the white straight lines are the flight paths of the UAVs. The PCBGA algorithm works out the flight paths of the UAVs. The mission points in critical areas are largely covered, while less important points are not. The coverage rate is 92.13%, and the mission completion time is 87.98 min.

4.3. Performance Comparison of the Three Algorithms

Two sets of simulation experiments with different numbers of mission points and UAVs are also set up to compare the impact of the three algorithms on task completion times and coverage rates. The experimental results are counted as follows: the results of 10 executions of each of the three algorithms are counted, and their averages are calculated.

4.3.1. Comparison with Different Number of Mission Points

In this case, M is 5, and N is incremented from 50 to 400. This experiment compares the change in task completion time and coverage rate with the increasing number of mission points. The simulation results are shown in Figure 4 and Figure 5.
Figure 4. Comparison of the task completion time with the increase of the mission points.
Figure 5. Comparison of the coverage rate with the increase of the mission points.
In Figure 4, the x-axis represents the number of mission points, and the y-axis represents the task completion time. It is clear from the figure that when the number of the mission points is 50, the task completion times of the PCBGA algorithm, the WTSC algorithm, and the G-MSCR algorithm are 85.77, 88.31, and 88.17 min, respectively. PCBGA algorithm takes the shortest time. The analysis shows that with the increase in the number of mission points, the task completion time of the three algorithms keeps increasing slowly. However, the task completion time of the PCBGA algorithm is always the fastest. Its task completion time is about 2.8% shorter than the other two algorithms. That is, the PCBGA algorithm performs better in the task completion time.
In Figure 5, the x-axis represents the number of mission points, and the y-axis represents the coverage rate. When the number of mission points N is 50, the task coverage rate of the PCBGA algorithm and WTSC algorithm is 99.5%, and the algorithm coverage rate of G-MSCR is 98.4%. With the increase of mission points, the task coverage of the three algorithms decreases to a certain extent. The reason is that the endurance time of a single UAV is limited. When the number of mission points exceeds a certain value, the flight time of the UAV reaches the upper limit. As the number of mission points continues to increase, more mission point coverage will not be completed. Nevertheless, regardless of the change in the number of mission points, the task coverage of the PCBGA algorithm is still the largest. It is worth noting that compared with the WTSC algorithm and the G-MSCR algorithm, our algorithm achieves a maximum improvement of 4.4% and 57.3% in task coverage, respectively.

4.3.2. Comparison with Different Number of UAVs

In this case, the number of mission points N is fixed at 200, and the number of UAVs M is increased from 3 to 10. The simulation results are shown in Figure 6 and Figure 7.
Figure 6. Comparison of the task completion time with the increase of UAVs.
Figure 7. Comparison of the coverage rate with the increase of UAVs.
In Figure 6, the results show that when the number of mission points is 200, and the number of UAVs is 3, the task completion times for the WTSC algorithm and the G-MSCR algorithm are 89 min and 89.2 min, respectively. However, the task completion time by the PCBGA algorithm is 88 min, which is the shortest one. With the number of UAVs changing, all three algorithms remain stable regarding task completion time. This phenomenon occurs because the task completion time is defined by when the last UAV returns to the base. Meanwhile, the algorithm proposed in this paper plans the UAVs flight paths according to the takeoff sequence. In this case, the change in task completion time will remain stable when the number of UAVs increases. Nevertheless, the PCBGA algorithm is still the fastest among the three algorithms.
In Figure 7, when the number of mission points is fixed at 200 and the number of UAVs is 3, the coverage rates of PCBGA, WTSC, and G-MSCR algorithms are 0.3, 0.4, and 0.43, respectively. As the number of UAVs changes, the coverage rate of the three algorithms keeps increasing. The reason for this phenomenon is that more UAVs are involved during the work. When the number of UAVs is 10, the coverage rate of the PCBGA and WTSC algorithms is 100%. It should be pointed out that the PCBGA algorithm always maintains the highest task coverage.
Therefore, it can be seen that the PCBGA algorithm is superior to the other two algorithms. The above conclusions express that the PCBGA can effectively design the path of the UAV, improving the mission coverage while shortening the mission time.

5. Conclusions

In order to achieve efficient UAV flights planning and ensure surveillance operations in hazardous areas. The problem of concern in this paper is the inability of UAVs to balance mission completion time and coverage in large areas due to energy limitations. The proposed algorithm will seek solutions to obtain maximum coverage benefits with minimum time costs. First, the algorithm introduces a second advantage mechanism to optimize the greedy goal assignment strategy to coordinate the flight time between task points and the importance of task points to obtain the initial path. Secondly, the above initial path is continuously iterated using the positive feedback mechanism of ant colony optimization, this method optimizes the order in which these points are accessed. Finally, the proposed algorithm is compared with the WTSC and G-MSCR algorithms. The results of the experiments show that the proposed algorithm has better stability, and the objective of a higher coverage rate in a shorter time is achieved.
The real shape of the obstacles can affect the flight of the UAV to some degree. Path planning technology for UAVs needs to have online planning capability, shorter computation time, and better robustness. In the future, the authors intend to use a combination of deep learning methods and ant colony optimization to further improve the algorithm in this paper.

Author Contributions

Conceptualization, Y.J., S.Z., Q.Z. and C.L.; methodology, Y.J., S.Z, Q.Z. and C.L.; software, Y.J., S.Z., Q.Z., L.L. and Z.C.; formal analysis, Y.J., S.Z., Q.Z. and C.L.; investigation, Y.J., S.Z., D.C. and K.Z.; data curation, Y.J., L.L. and Z.C.; writing—original draft preparation, Y.J., S.Z., Q.Z. and C.L.; writing—review and editing, Y.J., Q.Z., C.L., S.Z., D.C. and K.Z.; visualization, Y.J., S.Z., Q.Z., D.C., K.Z., L.L. and Z.C. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by The Guangxi Natural Science Foundation, grant number 2020GXNSFBA297097; The National Natural Science Foundation of China, grant number 62161031; The Basic Ability Enhancement Project for University Young and Middle-aged Teachers of Guangxi, grant number 2022KY0381; Innovation Project of Guangxi Graduate Education, grant number YCSW2021280. The APC was funded by the National Natural Science Foundation of China, grant number 6216103; Guangxi Natural Science Foundation, grant number 2020GXNSFBA297097.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Paden, B.; Cap, M.; Yong, S.Z.; Yershov, D.; Frazzoli, E. A Survey of Motion Planning and Control Techniques for Self-Driving Urban Vehicles. IEEE Trans. Intell. Veh. 2016, 1, 33–55. [Google Scholar] [CrossRef]
  2. Wu, Y.; Wu, S.; Hu, X. Cooperative Path Planning of UAVs & UGVs for a Persistent Surveillance Task in Urban Environments. IEEE Internet Things J. 2021, 8, 4906–4919. [Google Scholar] [CrossRef]
  3. Muñoz, J.; López, B.; Quevedo, F.; Monje, C.A.; Garrido, S.; Moreno, L.E. Multi UAV Coverage Path Planning in Urban Environments. Sensors 2021, 21, 7365. [Google Scholar] [CrossRef] [PubMed]
  4. Harikumar, K.; Senthilnath, J.; Sundaram, S. Multi-UAV Oxyrrhis Marina-Inspired Search and Dynamic Formation Control for Forest Firefighting. IEEE Trans. Autom. Sci. Eng. 2019, 16, 863–873. [Google Scholar] [CrossRef]
  5. Al-Kaff, A.; Madridano, Á.; Campos, S.; García, F.; Martín, D.; de la Escalera, A. Emergency Support Unmanned Aerial Vehicle for Forest Fire Surveillance. Electronics 2020, 9, 260. [Google Scholar] [CrossRef]
  6. Wang, H.; Du, H. Time Sensitive Sweep Coverage with Minimum UAVs. Theor. Comput. Sci. 2022, 928, 197–209. [Google Scholar] [CrossRef]
  7. Li, J.; Xiong, Y.; She, J.; Wu, M. A Path Planning Method for Sweep Coverage With Multiple UAVs. IEEE Internet Things J. 2020, 7, 8967–8978. [Google Scholar] [CrossRef]
  8. Aggarwal, S.; Kumar, N. Path planning techniques for unmanned aerial vehicles: A review, solutions, and challenges. Comput. Commun. 2020, 149, 270–299. [Google Scholar] [CrossRef]
  9. Hart, P.E.; Nilsson, N.J.; Raphael, B. A Formal Basis for the Heuristic Determination of Minimum Cost Paths. IEEE Trans. Syst. Sci. Cybern. 1968, 4, 100–107. [Google Scholar] [CrossRef]
  10. Julius Fusic, S.; Ramkumar, P.; Hariharan, K. Path Planning of Robot Using Modified Dijkstra Algorithm. In Proceedings of the 2018 National Power Engineering Conference (NPEC), Madurai, India, 9 March 2018. [Google Scholar]
  11. Zammit, C.; van Kampen, E.-J. Comparison Between A* and RRT Algorithms for 3D UAV Path Planning. Unmanned Syst. 2022, 10, 129–146. [Google Scholar] [CrossRef]
  12. Shivgan, R.; Dong, Z. Energy-Efficient Drone Coverage Path Planning Using Genetic Algorithm. In Proceedings of the 2020 IEEE 21st International Conference on High Performance Switching and Routing (HPSR), Newark, NJ, USA, 11 May 2020. [Google Scholar]
  13. Sharma, A. Swarm Intelligence: Foundation, Principles, and Engineering Applications, 1st ed.; Mathematical Engineering, Manufacturing, and Management Sciences; CRC Press: Boca Raton, FL, USA, 2022; ISBN 978-0-367-54661-8. [Google Scholar]
  14. Sharma, A.; Shoval, S.; Sharma, A.; Pandey, J.K. Path Planning for Multiple Targets Interception by the Swarm of UAVs based on Swarm Intelligence Algorithms: A Review. IETE Tech. Rev. 2022, 39, 675–697. [Google Scholar] [CrossRef]
  15. Mirjalili, S.; Mirjalili, S.M.; Lewis, A. Grey Wolf Optimizer. Adv. Eng. Softw. 2014, 69, 46–61. [Google Scholar] [CrossRef]
  16. Yang, X.S. Bat Algorithm for Multi-Objective Optimisation. Int. J. Bio-Inspired Comput. 2011, 3, 267. [Google Scholar] [CrossRef]
  17. Liu, C.; Mao, Q.; Chu, X.; Xie, S. An Improved A-Star Algorithm Considering Water Current, Traffic Separation and Berthing for Vessel Path Planning. Appl. Sci. 2019, 9, 1057. [Google Scholar] [CrossRef]
  18. Wang, N.; Xu, H. Dynamics-Constrained Global-Local Hybrid Path Planning of an Autonomous Surface Vehicle. IEEE Trans. Veh. Technol. 2020, 69, 6928–6942. [Google Scholar] [CrossRef]
  19. Gao, S.; Wu, J.; Ai, J. Multi-UAV Reconnaissance Task Allocation for Heterogeneous Targets Using Grouping Ant Colony Optimization Algorithm. Soft Comput. 2021, 25, 7155–7167. [Google Scholar] [CrossRef]
  20. Chen, X.; Gao, P. Path Planning and Control of Soccer Robot Based on Genetic Algorithm. J. Ambient Intell. Humaniz. Comput. 2020, 11, 6177–6186. [Google Scholar] [CrossRef]
  21. Pehlivanoglu, Y.V.; Pehlivanoglu, P. An Enhanced Genetic Algorithm for Path Planning of Autonomous UAV in Target Coverage Problems. Appl. Soft Comput. 2021, 112, 107796. [Google Scholar] [CrossRef]
  22. Qu, C.; Gai, W.; Zhang, J.; Zhong, M. A Novel Hybrid Grey Wolf Optimizer Algorithm for Unmanned Aerial Vehicle (UAV) Path Planning. Knowl.-Based Syst. 2020, 194, 105530. [Google Scholar] [CrossRef]
  23. Zhou, X.; Gao, F.; Fang, X.; Lan, Z. Improved Bat Algorithm for UAV Path Planning in Three-Dimensional Space. IEEE Access 2021, 9, 20100–20116. [Google Scholar] [CrossRef]
  24. Jayaweera, H.M.; Hanoun, S. A Dynamic Artificial Potential Field (D-APF) UAV Path Planning Technique for Following Ground Moving Targets. IEEE Access 2020, 8, 192760–192776. [Google Scholar] [CrossRef]
  25. Fox, D.; Burgard, W.; Thrun, S. The Dynamic Window Approach to Collision Avoidance. IEEE Robot. Autom. Mag. 1997, 4, 23–33. [Google Scholar] [CrossRef]
  26. Shin, H.; Chae, J. A Performance Review of Collision-Free Path Planning Algorithms. Electronics 2020, 9, 316. [Google Scholar] [CrossRef]
  27. Song, J.; Hao, C.; Su, J. Path Planning for Unmanned Surface Vehicle Based on Predictive Artificial Potential Field. Int. J. Adv. Robot. Syst. 2020, 17, 172988142091846. [Google Scholar] [CrossRef]
  28. Zhao, Y.; Zheng, Z.; Liu, Y. Survey on computational-intelligence-based UAV path planning. Knowl.-Based Syst. 2018, 158, 54–64. [Google Scholar] [CrossRef]
  29. Zhao, X.; Yang, R.; Zhang, Y.; Yan, M.; Yue, L. Deep Reinforcement Learning for Intelligent Dual-UAV Reconnaissance Mission Planning. Electronics 2022, 11, 2031. [Google Scholar] [CrossRef]
  30. Gopi, S.P.; Magarini, M. Reinforcement Learning Aided UAV Base Station Location Optimization for Rate Maximization. Electronics 2021, 10, 2953. [Google Scholar] [CrossRef]
  31. Chang, B.R.; Tsai, H.-F.; Lyu, J.-L. Drone-Aided Path Planning for Unmanned Ground Vehicle Rapid Traversing Obstacle Area. Electronics 2022, 11, 1228. [Google Scholar] [CrossRef]
  32. Cabreira, T.; Brisolara, L.; Ferreira, P.R., Jr. Survey on Coverage Path Planning with Unmanned Aerial Vehicles. Drones 2019, 3, 4. [Google Scholar] [CrossRef]
  33. Cho, S.W.; Park, H.J.; Lee, H.; Shim, D.H.; Kim, S.-Y. Coverage Path Planning for Multiple Unmanned Aerial Vehicles in Maritime Search and Rescue Operations. Comput. Ind. Eng. 2021, 161, 107612. [Google Scholar] [CrossRef]
  34. Ahmadi, S.M.; Kebriaei, H.; Moradi, H. Constrained Coverage Path Planning: Evolutionary and Classical Approaches. Robotica 2018, 36, 904–924. [Google Scholar] [CrossRef]
  35. Bähnemann, R.; Lawrance, N.; Chung, J.J.; Pantic, M.; Siegwart, R.; Nieto, J. Revisiting Boustrophedon Coverage Path Planning as a Generalized Traveling Salesman Problem. In Field and Service Robotics; Springer: Singapore, 2021; Volume 16, pp. 277–290. [Google Scholar]
  36. Cabreira, T.M.; Ferreira, P.R.; Franco, C.D.; Buttazzo, G.C. Grid-Based Coverage Path Planning With Minimum Energy Over Irregular-Shaped Areas With Uavs. In Proceedings of the 2019 International Conference on Unmanned Aircraft Systems (ICUAS), Atlanta, GA, USA, 11 June 2019. [Google Scholar]
  37. Biundini, I.Z.; Pinto, M.F.; Melo, A.G.; Marcato, A.L.M.; Honório, L.M.; Aguiar, M.J.R. A Framework for Coverage Path Planning Optimization Based on Point Cloud for Structural Inspection. Sensors 2021, 21, 570. [Google Scholar] [CrossRef] [PubMed]
  38. Kruskal, J.B. On the Shortest Spanning Subtree of a Graph and the Traveling Salesman Problem. Proc. Am. Math. Soc. 1956, 7, 48–50. [Google Scholar] [CrossRef]
  39. Christofides, N. Worst-Case Analysis of a New Heuristic for the Travelling Salesman Problem. Oper. Res. Forum 2022, 3, 20. [Google Scholar] [CrossRef]
  40. Gao, X.; Fan, J.; Wu, F.; Chen, G. Approximation Algorithms for Sweep Coverage Problem With Multiple Mobile Sensors. IEEEACM Trans. Netw. 2018, 26, 990–1003. [Google Scholar] [CrossRef]
  41. Liu, C.; Du, H.; Ye, Q. Sweep Coverage with Return Time Constraint. In Proceedings of the 2016 IEEE Global Communications Conference (GLOBECOM), Washington, DC, USA, 4–8 December 2016. [Google Scholar] [CrossRef]
  42. Jembre, Y.Z.; Nugroho, Y.W.; Khan, M.T.R.; Attique, M.; Paul, R.; Shah, S.H.A.; Kim, B. Evaluation of Reinforcement and Deep Learning Algorithms in Controlling Unmanned Aerial Vehicles. Appl. Sci. 2021, 11, 7240. [Google Scholar] [CrossRef]
  43. Dorigo, M.; Birattari, M.; Stutzle, T. Ant Colony Optimization. IEEE Comput. Intell. Mag. 2006, 1, 28–39. [Google Scholar] [CrossRef]
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.