CN114625162A - Hybrid algorithm-based optimal path planning method, system and medium for unmanned aerial vehicle - Google Patents

Hybrid algorithm-based optimal path planning method, system and medium for unmanned aerial vehicle Download PDF

Info

Publication number
CN114625162A
CN114625162A CN202210125627.4A CN202210125627A CN114625162A CN 114625162 A CN114625162 A CN 114625162A CN 202210125627 A CN202210125627 A CN 202210125627A CN 114625162 A CN114625162 A CN 114625162A
Authority
CN
China
Prior art keywords
node
unmanned aerial
aerial vehicle
global
path planning
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202210125627.4A
Other languages
Chinese (zh)
Inventor
元铭
杨剑涛
李浩田
黄文翰
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Guangdong University of Technology
Original Assignee
Guangdong University of Technology
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Guangdong University of Technology filed Critical Guangdong University of Technology
Priority to CN202210125627.4A priority Critical patent/CN114625162A/en
Publication of CN114625162A publication Critical patent/CN114625162A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G05CONTROLLING; REGULATING
    • G05DSYSTEMS FOR CONTROLLING OR REGULATING NON-ELECTRIC VARIABLES
    • G05D1/00Control of position, course, altitude or attitude of land, water, air or space vehicles, e.g. using automatic pilots
    • G05D1/10Simultaneous control of position or course in three dimensions
    • G05D1/101Simultaneous control of position or course in three dimensions specially adapted for aircraft
    • G05D1/106Change initiated in response to external conditions, e.g. avoidance of elevated terrain or of no-fly zones

Landscapes

  • Engineering & Computer Science (AREA)
  • Aviation & Aerospace Engineering (AREA)
  • Radar, Positioning & Navigation (AREA)
  • Remote Sensing (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Automation & Control Theory (AREA)
  • Control Of Position, Course, Altitude, Or Attitude Of Moving Bodies (AREA)

Abstract

The invention discloses an unmanned aerial vehicle optimal path planning method, a system and a medium based on a hybrid algorithm, wherein the method comprises the following steps: loading a global grid map in the flight process of the unmanned aerial vehicle, planning a global static path based on an A-x algorithm according to historical information, acquiring a global sub-target point sequence to determine a flight optimal path, flying through the flight optimal path and sensing the surrounding environment; when the unknown obstacle information is sensed, judging whether the global sub-target point is blocked by the unknown obstacle or not; if the unmanned aerial vehicle is blocked, updating the global planning, otherwise, performing local path planning, detecting collision according to a geometric algorithm, acquiring a local sub-target point sequence, and determining the short-term flight motion of the unmanned aerial vehicle; and judging whether the global sub-target point is a local sub-target point, if so, finishing path planning, and otherwise, updating the local sub-target point for repeated operation. The invention improves the real-time performance of the unmanned aerial vehicle path planning and enhances the survival capability of the unmanned aerial vehicle and the adaptability of the environment.

Description

Hybrid algorithm-based optimal path planning method, system and medium for unmanned aerial vehicle
Technical Field
The invention relates to the technical field of unmanned aerial vehicles, in particular to an unmanned aerial vehicle optimal path planning method, an unmanned aerial vehicle optimal path planning system and a medium based on a hybrid algorithm.
Background
With the development of modern technology, the types of unmanned aerial vehicles are continuously changed, and the application of the unmanned aerial vehicles is specialized and perfected day by day, for example, the unmanned aerial vehicles are specially used as plant protection unmanned aerial vehicles, unmanned aerial vehicles for street view shooting and monitoring patrolling, underwater unmanned aerial vehicles for underwater rescue and the like. When the unmanned aerial vehicle executes various tasks, the unmanned aerial vehicle can fly according to a path which is calculated in advance and set by a ground task planning center, abnormal factors appearing on a given route can influence the flight performance of the unmanned aerial vehicle, and therefore the path planning of the unmanned aerial vehicle is an extremely important problem in the navigation task of the unmanned aerial vehicle.
Moreover, with the gradual development of the unmanned aerial vehicle technology, the application of the cluster unmanned aerial vehicle is more and more extensive. Higher requirements are provided for path planning of the cluster unmanned aerial vehicle, the measurement precision of the unmanned aerial vehicle, reasonable planning of the path, stability and safety of the unmanned aerial vehicle during working and other changes of the unmanned aerial vehicle have higher and higher requirements for an integrated control system of the unmanned aerial vehicle. The optimal path planning of the cluster unmanned aerial vehicles is a solution for designing an optimal path route in order to ensure that an unmanned aerial vehicle group completes a specific flight task and avoid various obstacles in the task completing process.
In the existing unmanned aerial vehicle path planning scheme, the conventional planning algorithm and the intelligent planning algorithm can be divided according to planning decisions, and some unmanned aerial vehicle path planning schemes adopt a genetic algorithm and are used for a search algorithm for complex system optimization, so that the premature phenomenon is difficult to avoid, and the global optimal solution cannot be obtained; some adopt ant colony algorithm, but need the greater storage space, also adopt particle swarm algorithm, RRT algorithm, Dijkstra algorithm, etc.; various algorithms have characteristics of themselves, and although the problem of path planning of the unmanned aerial vehicle can be solved, algorithm defects exist more or less, such as the fact that the unmanned aerial vehicle is easy to fall into a local optimal solution, the searching capability is poor, the searching time is long, the searching efficiency is low, and the high requirements of the cluster unmanned aerial vehicle on real-time path planning cannot be well met.
Disclosure of Invention
In order to solve the technical problems, the invention provides an unmanned aerial vehicle optimal path planning method and system based on a hybrid algorithm and a storage medium.
The invention provides an unmanned aerial vehicle optimal path planning method based on a hybrid algorithm, which comprises the following steps:
in the flight process of the unmanned aerial vehicle, acquiring a global grid map, performing global static path planning based on an A-x algorithm according to historical information, and acquiring a global sub-target point sequence;
determining the optimal flight path of the unmanned aerial vehicle according to the global sub-target point sequence, flying according to the optimal flight path and sensing the surrounding environment;
when the unknown obstacle information is sensed, judging whether the global sub-target point is blocked by the unknown obstacle or not;
if the unmanned aerial vehicle is blocked, updating the global planning, if the unmanned aerial vehicle is not blocked, performing local path planning, detecting collision according to a geometric algorithm, acquiring a local sub-target point sequence, and determining the short-term flight motion of the unmanned aerial vehicle;
and judging whether the global sub-target point is a local sub-target point, if so, finishing path planning, and if not, updating the local sub-target point for repeated operation.
In this scheme, the global static path planning is performed based on an algorithm a to obtain a global sub-target point sequence, which specifically includes:
acquiring the current position of the unmanned aerial vehicle as a starting node to start path planning, and storing nodes generated in the planning into an OpenList table and a CloseList table;
evaluating each node through an evaluation function, and selecting a node n with the minimum evaluation cost value in each cycle of an A-star algorithm from OpenLists;
if the node n is a target node, acquiring an optimal path, if the node n is not the target node, taking the node n out of an OpenList, storing the node n into a CloseList, and simultaneously checking adjacent nodes of the node n;
judging whether the adjacent node is in an OpenList or not, if not, storing the adjacent node in the OpenList, and taking a node n stored in the CloseList as a father node of a newly stored node;
and acquiring a target node in the OpenList through node extension, moving back to the initial node through pointing to the father node through a pointer, acquiring an optimal path, and generating a global sub-target point sequence according to the optimal path.
In this scheme, each node is evaluated through an evaluation function, and the evaluation function is specifically:
f(n)=g(n)+h(n)
wherein f (n) represents an evaluation cost from an initial node to a target node, g (n) represents an evaluation cost from a specific initial node to a specific target node, and h (n) represents a predicted evaluation cost from a current node to a target node.
In this scheme, the prediction and evaluation cost h (n) from the current node to the target node is specifically:
h(n)=D[a·b(xn-xgoal)+a·b(yn-ygoal)]
wherein D represents the Manhattan distance, a · b represents the grid square area, xnAnd ynRespectively representing the horizontal and vertical position, x, of the current grid blockgoalAnd ygoalRespectively representing the horizontal and vertical positions of the target grid square.
In this scheme, the detecting collision according to a geometric algorithm specifically includes:
detecting collision through a geometric algorithm, judging whether barrier occupation information exists in grids occupied by all sampling points on a sampling path, and calculating whether barrier occupation information exists in the grids occupied by corresponding points of the real-time unmanned aerial vehicle on each sampling point;
if the obstacle occupying information exists, the collision is judged and the path information is abandoned, and if the obstacle occupying information does not exist, the evaluation function is continuously executed.
In the scheme, priority setting is carried out on global path planning and local path planning, path control is respectively carried out on the unmanned aerial vehicle, when the priority of the obstacle avoidance behavior in the local path planning is higher than that of the obstacle avoidance behavior advancing along the original path, the local path planning is preferentially executed, and the unmanned aerial vehicle returns to the global planning route of the global path planning after the execution is finished.
The second aspect of the present invention further provides an optimal path planning system for an unmanned aerial vehicle based on a hybrid algorithm, where the system includes: the memory comprises a hybrid algorithm-based optimal path planning method program for the unmanned aerial vehicle, and the processor executes the optimal path planning method program for the unmanned aerial vehicle based on the hybrid algorithm to realize the following steps:
in the flight process of the unmanned aerial vehicle, acquiring a global grid map, performing global static path planning based on an A-x algorithm according to historical information, and acquiring a global sub-target point sequence;
determining the optimal flight path of the unmanned aerial vehicle according to the global sub-target point sequence, flying according to the optimal flight path and sensing the surrounding environment;
when the unknown obstacle information is sensed, judging whether the global sub-target point is blocked by the unknown obstacle or not;
if the unmanned aerial vehicle is blocked, updating the global planning, if the unmanned aerial vehicle is not blocked, performing local path planning, detecting collision according to a geometric algorithm, acquiring a local sub-target point sequence, and determining the short-term flight motion of the unmanned aerial vehicle;
and judging whether the global sub-target point is a local sub-target point, if so, finishing path planning, and if not, updating the local sub-target point for repeated operation.
In this scheme, the global static path planning based on the a-x algorithm to obtain the global sub-target point sequence specifically includes:
acquiring the current position of the unmanned aerial vehicle as a starting node to start path planning, and storing nodes generated in the planning into an OpenList table and a CloseList table;
evaluating each node through an evaluation function, and selecting a node n with the minimum evaluation cost value in each cycle of an A-star algorithm from OpenLists;
if the node n is a target node, acquiring an optimal path, and if the node n is not the target node, taking the node n out of an OpenList, storing the node n into a CloseList, and simultaneously checking adjacent nodes of the node n;
judging whether the adjacent node is in an OpenList or not, if not, storing the adjacent node in the OpenList, and taking a node n stored in the CloseList as a father node of a newly stored node;
and acquiring a target node in the OpenList through node expansion, pointing to a father node through a pointer, moving back to the initial node, acquiring an optimal path, and generating a global sub-target point sequence according to the optimal path.
In this scheme, each node is evaluated through an evaluation function, and the evaluation function is specifically:
f(n)=g(n)+h(n)
wherein, (n) represents the evaluation cost from the starting node to the target node, (g), (n) represents the evaluation cost from the specific starting node to the specific target node, and (h), (n) represents the predicted evaluation cost from the current node to the target node.
In this scheme, the prediction and evaluation cost h (n) from the current node to the target node is specifically:
h(n)=D[a·b(xn-xgoal)+a·b(yn-ygoal)]
wherein D represents the Manhattan distance, a · b represents the grid square area, xnAnd ynRespectively representing the horizontal and vertical position, x, of the current grid blockgoalAnd ygoalRespectively representing the horizontal and vertical positions of the target grid square.
In this scheme, the detecting collision according to a geometric algorithm specifically includes:
detecting collision through a geometric algorithm, judging whether barrier occupation information exists in a grid occupied by all sampling points on a sampling path, and then calculating whether barrier occupation information exists in the grid occupied by a corresponding point of the real-time unmanned aerial vehicle on each sampling point;
if the obstacle occupying information exists, the collision is judged and the path information is abandoned, and if the obstacle occupying information does not exist, the evaluation function is continuously executed.
In the scheme, priority setting is carried out on global path planning and local path planning, path control is respectively carried out on the unmanned aerial vehicle, when the priority of the obstacle avoidance behavior in the local path planning is higher than that of the obstacle avoidance behavior advancing along the original path, the local path planning is preferentially executed, and the unmanned aerial vehicle returns to the global planning route of the global path planning after the execution is finished.
The third aspect of the present invention further provides a computer-readable storage medium, where the computer-readable storage medium includes a hybrid algorithm-based optimal path planning method program for an unmanned aerial vehicle, and when the hybrid algorithm-based optimal path planning method program is executed by a processor, the method implements any of the above steps of the hybrid algorithm-based optimal path planning method for an unmanned aerial vehicle.
The invention discloses an unmanned aerial vehicle optimal path planning method, a system and a medium based on a hybrid algorithm, wherein the method comprises the following steps: in the flight process of the unmanned aerial vehicle, loading a global grid map, planning a global static path based on an A-x algorithm according to historical information, acquiring a global sub-target point sequence, determining a flight optimal path, flying through the flight optimal path and sensing the surrounding environment; when the unknown obstacle information is sensed, judging whether the global sub-target point is blocked by the unknown obstacle or not; if the unmanned aerial vehicle is blocked, updating the global planning, otherwise, performing local path planning, detecting collision according to a geometric algorithm, acquiring a local sub-target point sequence, and determining the short-term flight motion of the unmanned aerial vehicle; and judging whether the global sub-target point is a local sub-target point, if so, finishing path planning, and otherwise, updating the local sub-target point for repeated operation. By applying the hybrid algorithm, the invention realizes the global planning and the local planning, and also realizes the dynamic planning and the static planning, and combines the global planning and the local planning, and the composite structure formed by the global planning and the local planning improves the real-time performance of the unmanned aerial vehicle and the navigation stability and safety of the unmanned aerial vehicle; meanwhile, the hybrid algorithm is verified by simulation, and the reliability is high.
Drawings
Fig. 1 shows a flow chart of an optimal path planning method for an unmanned aerial vehicle based on a hybrid algorithm according to the invention;
fig. 2 shows a path planning flow diagram of the drone according to the invention;
fig. 3 shows a block diagram of an optimal path planning system for an unmanned aerial vehicle based on a hybrid algorithm.
Detailed Description
In order that the above objects, features and advantages of the present invention can be more clearly understood, a more particular description of the invention will be rendered by reference to the appended drawings. It should be noted that the embodiments and features of the embodiments of the present application may be combined with each other without conflict.
In the following description, numerous specific details are set forth in order to provide a thorough understanding of the present invention, however, the present invention may be practiced in other ways than those specifically described herein, and thus the scope of the present invention is not limited by the specific embodiments disclosed below.
Fig. 1 shows a flow chart of an optimal path planning method for an unmanned aerial vehicle based on a hybrid algorithm.
As shown in fig. 1, a first aspect of the present invention provides a hybrid algorithm-based optimal path planning method for an unmanned aerial vehicle, including:
s102, acquiring a global grid map in the flight process of the unmanned aerial vehicle, planning a global static path based on an A-x algorithm according to historical information, and acquiring a global sub-target point sequence;
s104, determining the optimal flight path of the unmanned aerial vehicle according to the global sub-target point sequence, flying according to the optimal flight path and sensing the surrounding environment;
s106, judging whether the global sub-target point is blocked by the unknown obstacle or not when the unknown obstacle information is sensed;
s108, if the unmanned aerial vehicle is blocked, updating the global planning, if the unmanned aerial vehicle is not blocked, performing local path planning, detecting collision according to a geometric algorithm, and acquiring a local sub-target point sequence to determine the short-term flight motion of the unmanned aerial vehicle;
s110, judging whether the global sub-target point is a local sub-target point, if so, finishing path planning, and if not, updating the local sub-target point for repeated operation.
It should be noted that path planning can be divided into global and local path planning according to the range, and can be divided into static and dynamic path planning according to the environmental change, and the combination of global, local and dynamic, static path planning can make the path planning precision of the unmanned aerial vehicle higher, greatly improve the real-time performance of the path planning of the unmanned aerial vehicle.
It should be noted that, the global static path planning based on the a-x algorithm to obtain the global sub-target point sequence specifically includes:
acquiring the current position of the unmanned aerial vehicle as a starting node to start path planning, and storing nodes generated in the planning into an OpenList table and a CloseList table;
evaluating each node through an evaluation function, and selecting a node n with the minimum evaluation cost value in each cycle of an A-star algorithm from OpenList;
if the node n is a target node, acquiring an optimal path, if the node n is not the target node, taking the node n out of an OpenList, storing the node n into a CloseList, and simultaneously checking adjacent nodes of the node n;
judging whether the adjacent node is in an OpenList or not, if not, storing the adjacent node in the OpenList, and taking a node n stored in the CloseList as a father node of a newly stored node;
and acquiring a target node in the OpenList through node expansion, pointing to a father node through a pointer, moving back to the initial node, acquiring an optimal path, and generating a global sub-target point sequence according to the optimal path.
It should be noted that, the evaluation function is used to evaluate each node, and the evaluation function specifically includes:
f(n)=g(n)+h(n)
wherein, (n) represents the evaluation cost from the starting node to the target node, (g), (n) represents the evaluation cost from the specific starting node to the specific target node, and (h), (n) represents the predicted evaluation cost from the current node to the target node.
It should be noted that the prediction and evaluation cost h (n) from the current node to the target node adopts a manhattan prediction algorithm, which specifically includes:
h(n)=D[a·b(xn-xgoal)+a·b(yn-ygoal)]
wherein D represents the Manhattan distance, a · b represents the grid square area, xnAnd ynRespectively representing the horizontal and vertical position, x, of the current grid blockgoalAnd ygoalRespectively representing the horizontal and vertical positions of the target grid square.
It should be noted that the detecting collision according to a geometric algorithm specifically includes:
detecting collision through a geometric algorithm, judging whether barrier occupation information exists in a grid occupied by all sampling points on a sampling path, and then calculating whether barrier occupation information exists in the grid occupied by a corresponding point of the real-time unmanned aerial vehicle on each sampling point;
if the obstacle occupying information exists, the collision is determined and the path information is discarded, and if the obstacle occupying information does not exist, the evaluation function is continuously executed.
It should be noted that priority setting is performed on global path planning and local path planning, path control is performed on the unmanned aerial vehicle respectively, when the priority of the obstacle avoidance behavior in the local path planning is higher than that of the obstacle avoidance behavior in the local path planning, local path planning is preferentially performed, and the unmanned aerial vehicle returns to the global planned route of the global path planning after the execution is completed. In the overall structure of the path planning behaviors, global and local planning is based on behavior structure organization, and the path control can be performed on the entity unmanned aerial vehicle respectively according to the setting of priority, so that the real-time adaptability of the unmanned aerial vehicle is improved.
Fig. 3 shows a block diagram of the system for planning the optimal path of the unmanned aerial vehicle based on the hybrid algorithm.
The second aspect of the present invention also provides an unmanned aerial vehicle optimal path planning system 3 based on a hybrid algorithm, which includes: the unmanned aerial vehicle optimal path planning method based on the hybrid algorithm comprises a memory 31 and a processor 32, wherein the memory comprises a hybrid algorithm-based unmanned aerial vehicle optimal path planning method program, and when the processor executes the hybrid algorithm-based unmanned aerial vehicle optimal path planning method program, the following steps are realized:
in the flight process of the unmanned aerial vehicle, acquiring a global grid map, performing global static path planning based on an A-x algorithm according to historical information, and acquiring a global sub-target point sequence;
determining the optimal flight path of the unmanned aerial vehicle according to the global sub-target point sequence, flying according to the optimal flight path and sensing the surrounding environment;
when the unknown obstacle information is sensed, judging whether the global sub-target point is blocked by the unknown obstacle or not;
if the unmanned aerial vehicle is blocked, updating the global planning, if the unmanned aerial vehicle is not blocked, performing local path planning, detecting collision according to a geometric algorithm, acquiring a local sub-target point sequence, and determining the short-term flight motion of the unmanned aerial vehicle;
and judging whether the global sub-target point is a local sub-target point, if so, finishing path planning, and if not, updating the local sub-target point for repeated operation.
It should be noted that path planning can be divided into global and local path planning according to the range, and can be divided into static and dynamic path planning according to the environmental change, and the combination of global, local and dynamic, static path planning can make the path planning precision of the unmanned aerial vehicle higher, greatly improve the real-time performance of the path planning of the unmanned aerial vehicle.
It should be noted that, the global static path planning based on the a-x algorithm to obtain the global sub-target point sequence specifically includes:
acquiring the current position of the unmanned aerial vehicle as a starting node to start path planning, and storing nodes generated in the planning into an OpenList table and a CloseList table;
evaluating each node through an evaluation function, and selecting a node n with the minimum evaluation cost value in each cycle of an A-star algorithm from OpenList;
if the node n is a target node, acquiring an optimal path, if the node n is not the target node, taking the node n out of an OpenList, storing the node n into a CloseList, and simultaneously checking adjacent nodes of the node n;
judging whether the adjacent node is in an OpenList or not, if not, storing the adjacent node in the OpenList, and taking a node n stored in the CloseList as a father node of a newly stored node;
and acquiring a target node in the OpenList through node extension, moving back to the initial node through pointing to the father node through a pointer, acquiring an optimal path, and generating a global sub-target point sequence according to the optimal path.
It should be noted that, the evaluation function is used to evaluate each node, and the evaluation function specifically includes:
f(n)=g(n)+h(n)
wherein, (n) represents the evaluation cost from the starting node to the target node, (g), (n) represents the evaluation cost from the specific starting node to the specific target node, and (h), (n) represents the predicted evaluation cost from the current node to the target node.
It should be noted that the prediction and evaluation cost h (n) from the current node to the target node adopts a manhattan prediction algorithm, which specifically includes:
h(n)=D[a·b(xn-xgoal)+a·b(yn-ygoal)]
wherein D represents the Manhattan distance, a · b represents the grid square area, xnAnd ynRespectively representing the horizontal and vertical position, x, of the current grid blockgoalAnd ygoalRespectively representing the horizontal and vertical positions of the target grid square.
It should be noted that the detecting collision according to a geometric algorithm specifically includes:
detecting collision through a geometric algorithm, judging whether barrier occupation information exists in a grid occupied by all sampling points on a sampling path, and then calculating whether barrier occupation information exists in the grid occupied by a corresponding point of the real-time unmanned aerial vehicle on each sampling point;
if the obstacle occupying information exists, the collision is judged and the path information is abandoned, and if the obstacle occupying information does not exist, the evaluation function is continuously executed.
It should be noted that priority setting is performed on global path planning and local path planning, path control is performed on the unmanned aerial vehicle respectively, when the priority of the obstacle avoidance behavior in the local path planning is higher than that of the obstacle avoidance behavior in the local path planning, local path planning is preferentially performed, and the unmanned aerial vehicle returns to the global planned route of the global path planning after the execution is completed. In the overall structure of the path planning behaviors, global and local planning is based on behavior structure organization, and the path control can be performed on the entity unmanned aerial vehicle respectively according to the setting of priority, so that the real-time adaptability of the unmanned aerial vehicle is improved.
The third aspect of the present invention further provides a computer-readable storage medium, where the computer-readable storage medium includes a hybrid algorithm-based optimal path planning method program for an unmanned aerial vehicle, and when the hybrid algorithm-based optimal path planning method program is executed by a processor, the method implements any of the above steps of the hybrid algorithm-based optimal path planning method for an unmanned aerial vehicle.
The invention discloses an unmanned aerial vehicle optimal path planning method, a system and a medium based on a hybrid algorithm, wherein the method comprises the following steps: loading a global grid map in the flight process of the unmanned aerial vehicle, planning a global static path based on an A-x algorithm according to historical information, acquiring a global sub-target point sequence to determine a flight optimal path, flying through the flight optimal path and sensing the surrounding environment; when unknown obstacle information is sensed, whether the global sub-target point is blocked by an unknown obstacle or not is judged; if the unmanned aerial vehicle is blocked, updating the global planning, otherwise, performing local path planning, detecting collision according to a geometric algorithm, acquiring a local sub-target point sequence, and determining the short-term flight motion of the unmanned aerial vehicle; and judging whether the global sub-target point is a local sub-target point, if so, finishing path planning, and otherwise, updating the local sub-target point for repeated operation. By applying the hybrid algorithm, the invention realizes the global planning and the local planning, and also realizes the dynamic planning and the static planning, and combines the global planning and the local planning, and the composite structure formed by the global planning and the local planning improves the real-time performance of the unmanned aerial vehicle and the navigation stability and safety of the unmanned aerial vehicle; meanwhile, the hybrid algorithm is verified by simulation, and the reliability is high.
In the several embodiments provided in the present invention, it should be understood that the disclosed apparatus and method may be implemented in other ways. The above-described device embodiments are merely illustrative, for example, the division of the unit is only a logical functional division, and there may be other division ways in actual implementation, such as: multiple units or components may be combined, or may be integrated into another system, or some features may be omitted, or not implemented. In addition, the coupling, direct coupling or communication between the components shown or discussed may be through some interfaces, indirect coupling or communication between devices or units, and may be electrical, mechanical or other.
The units described as separate parts may or may not be physically separate, and parts displayed as units may or may not be physical units; can be located in one place or distributed on a plurality of network units; some or all of the units can be selected according to actual needs to achieve the purpose of the solution of the embodiment.
In addition, all the functional units in the embodiments of the present invention may be integrated into one processing unit, or each unit may be separately regarded as one unit, or two or more units may be integrated into one unit; the integrated unit can be realized in a hardware form, and can also be realized in a form of hardware and a software functional unit.
Those of ordinary skill in the art will understand that: all or part of the steps for realizing the method embodiments can be completed by hardware related to program instructions, the program can be stored in a computer readable storage medium, and the program executes the steps comprising the method embodiments when executed; the storage medium includes: various media capable of storing program codes, such as a removable Memory device, a Read-Only Memory (ROM), a Random Access Memory (RAM), a magnetic disk, or an optical disk.
Alternatively, the integrated unit of the present invention may be stored in a computer-readable storage medium if it is implemented in the form of a software functional module and sold or used as a separate product. Based on such understanding, the technical solutions of the embodiments of the present invention or portions thereof contributing to the prior art may be embodied in the form of a software product, which is stored in a storage medium and includes several instructions for enabling a computer device (which may be a personal computer, a server, or a network device) to execute all or part of the methods described in the embodiments of the present invention. And the aforementioned storage medium includes: a removable storage device, a ROM, a RAM, a magnetic or optical disk, or various other media that can store program code.
The above description is only for the specific embodiments of the present invention, but the scope of the present invention is not limited thereto, and any person skilled in the art can easily think of the changes or substitutions within the technical scope of the present invention, and shall cover the scope of the present invention. Therefore, the protection scope of the present invention shall be subject to the protection scope of the appended claims.

Claims (10)

1. An unmanned aerial vehicle optimal path planning method based on a hybrid algorithm is characterized by comprising the following steps:
in the flight process of the unmanned aerial vehicle, acquiring a global grid map, performing global static path planning based on an A-x algorithm according to historical information, and acquiring a global sub-target point sequence;
determining a flight optimal path of the unmanned aerial vehicle according to the global sub-target point sequence, flying according to the flight optimal path and sensing the surrounding environment;
when the unknown obstacle information is sensed, judging whether the global sub-target point is blocked by the unknown obstacle or not;
if the unmanned aerial vehicle is blocked, updating the global planning, if the unmanned aerial vehicle is not blocked, performing local path planning, detecting collision according to a geometric algorithm, acquiring a local sub-target point sequence, and determining the short-term flight motion of the unmanned aerial vehicle;
and judging whether the global sub-target point is a local sub-target point, if so, finishing path planning, and if not, updating the local sub-target point for repeated operation.
2. The method for planning the optimal path of the unmanned aerial vehicle based on the hybrid algorithm according to claim 1, wherein the global static path planning is performed based on an a-x algorithm to obtain a global sub-target point sequence, and specifically comprises:
acquiring the current position of the unmanned aerial vehicle as a starting node to start path planning, and storing nodes generated in the planning into an OpenList table and a CloseList table;
evaluating each node through an evaluation function, and selecting a node n with the minimum evaluation cost value in each circulation of an A-star algorithm from OpenList;
if the node n is a target node, acquiring an optimal path, and if the node n is not the target node, taking the node n out of an OpenList, storing the node n into a CloseList, and simultaneously checking adjacent nodes of the node n;
judging whether the adjacent node is in an OpenList or not, if not, storing the adjacent node in the OpenList, and taking a node n stored in the CloseList as a father node of a newly stored node;
and acquiring a target node in the OpenList through node extension, moving back to the initial node through pointing to the father node through a pointer, acquiring an optimal path, and generating a global sub-target point sequence according to the optimal path.
3. The hybrid algorithm-based optimal path planning method for unmanned aerial vehicles according to claim 2, wherein each node is evaluated by an evaluation function, and the evaluation function specifically comprises:
f(n)=g(n)+h(n)
wherein, (n) represents the evaluation cost from the starting node to the target node, (g), (n) represents the evaluation cost from the specific starting node to the specific target node, and (h), (n) represents the predicted evaluation cost from the current node to the target node.
4. The hybrid algorithm-based optimal path planning method for unmanned aerial vehicles according to claim 3, wherein the prediction and evaluation cost h (n) from the current node to the target node is specifically:
h(n)=D[a·b(xn-xgoal)+a·b(yn-ygoal)]
wherein D represents the Manhattan distance, a · b represents the grid square area, xnAnd ynRespectively representing the horizontal and vertical positions, x, of the current grid squaregoalAnd ygoalRespectively representing the horizontal and vertical positions of the target grid square.
5. The hybrid algorithm-based optimal path planning method for unmanned aerial vehicles according to claim 1, wherein the collision is detected according to a geometric algorithm, specifically:
detecting collision through a geometric algorithm, judging whether barrier occupation information exists in a grid occupied by all sampling points on a sampling path, and calculating whether barrier occupation information exists in a grid occupied by a corresponding point of the real-time unmanned aerial vehicle on each sampling point;
if the obstacle occupying information exists, the collision is judged and the path information is abandoned, and if the obstacle occupying information does not exist, the evaluation function is continuously executed.
6. The optimal path planning method for the unmanned aerial vehicle based on the hybrid algorithm as claimed in claim 1, wherein priority setting is performed on global path planning and local path planning, path control is performed on the unmanned aerial vehicle, when the priority of the obstacle avoidance behavior in the local path planning is higher than that of the obstacle avoidance behavior in the local path planning, the local path planning is preferentially performed, and the unmanned aerial vehicle returns to the global path planning route of the global path planning after the execution is completed.
7. An unmanned aerial vehicle optimal path planning system based on a hybrid algorithm is characterized by comprising: the memory comprises a hybrid algorithm-based optimal path planning method program for the unmanned aerial vehicle, and the processor executes the program to realize the following steps:
in the flight process of the unmanned aerial vehicle, acquiring a global grid map, planning a global static path based on an A-x algorithm according to historical information, and acquiring a global sub-target point sequence;
determining a flight optimal path of the unmanned aerial vehicle according to the global sub-target point sequence, flying according to the flight optimal path and sensing the surrounding environment;
when the unknown obstacle information is sensed, judging whether the global sub-target point is blocked by the unknown obstacle or not;
if the unmanned aerial vehicle is blocked, updating the global planning, if the unmanned aerial vehicle is not blocked, performing local path planning, detecting collision according to a geometric algorithm, acquiring a local sub-target point sequence, and determining the short-term flight motion of the unmanned aerial vehicle;
and judging whether the global sub-target point is a local sub-target point, if so, finishing path planning, and if not, updating the local sub-target point for repeated operation.
8. The system according to claim 7, wherein the global static path planning is performed based on the a-x algorithm to obtain a global sub-target sequence, specifically:
acquiring the current position of the unmanned aerial vehicle as a starting node to start path planning, and storing nodes generated in the planning into an OpenList table and a CloseList table;
evaluating each node through an evaluation function, and selecting a node n with the minimum evaluation cost value in each circulation of an A-star algorithm from OpenList;
if the node n is a target node, acquiring an optimal path, if the node n is not the target node, taking the node n out of an OpenList, storing the node n into a CloseList, and simultaneously checking adjacent nodes of the node n;
judging whether the adjacent node is in an OpenList or not, if not, storing the adjacent node in the OpenList, and taking a node n stored in the CloseList as a father node of a newly stored node;
and acquiring a target node in the OpenList through node expansion, pointing to a father node through a pointer, moving back to the initial node, acquiring an optimal path, and generating a global sub-target point sequence according to the optimal path.
9. The hybrid algorithm-based optimal path planning system for unmanned aerial vehicles according to claim 7, wherein the collision is detected according to a geometric algorithm, specifically:
detecting collision through a geometric algorithm, judging whether barrier occupation information exists in a grid occupied by all sampling points on a sampling path, and then calculating whether barrier occupation information exists in the grid occupied by corresponding points of the real-time unmanned aerial vehicle on each sampling point;
if the obstacle occupying information exists, the collision is judged and the path information is abandoned, and if the obstacle occupying information does not exist, the evaluation function is continuously executed.
10. A computer-readable storage medium characterized by: the computer readable storage medium includes a hybrid algorithm-based optimal path planning method program for the unmanned aerial vehicle, which when executed by a processor, implements the steps of the hybrid algorithm-based optimal path planning method for the unmanned aerial vehicle according to any one of claims 1 to 6.
CN202210125627.4A 2022-02-10 2022-02-10 Hybrid algorithm-based optimal path planning method, system and medium for unmanned aerial vehicle Pending CN114625162A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202210125627.4A CN114625162A (en) 2022-02-10 2022-02-10 Hybrid algorithm-based optimal path planning method, system and medium for unmanned aerial vehicle

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202210125627.4A CN114625162A (en) 2022-02-10 2022-02-10 Hybrid algorithm-based optimal path planning method, system and medium for unmanned aerial vehicle

Publications (1)

Publication Number Publication Date
CN114625162A true CN114625162A (en) 2022-06-14

Family

ID=81898411

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202210125627.4A Pending CN114625162A (en) 2022-02-10 2022-02-10 Hybrid algorithm-based optimal path planning method, system and medium for unmanned aerial vehicle

Country Status (1)

Country Link
CN (1) CN114625162A (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114925937A (en) * 2022-06-27 2022-08-19 东北大学 Stage scene point cloud scanning site selection and path planning method
CN116576865A (en) * 2023-07-07 2023-08-11 民航成都电子技术有限责任公司 Flight area path planning method, device, equipment and medium
CN117055601A (en) * 2023-09-05 2023-11-14 广东工业大学 Unmanned aerial vehicle meal delivery path planning method, unmanned aerial vehicle meal delivery path planning device, unmanned aerial vehicle meal delivery path planning equipment and storage medium

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114925937A (en) * 2022-06-27 2022-08-19 东北大学 Stage scene point cloud scanning site selection and path planning method
CN116576865A (en) * 2023-07-07 2023-08-11 民航成都电子技术有限责任公司 Flight area path planning method, device, equipment and medium
CN116576865B (en) * 2023-07-07 2023-10-17 民航成都电子技术有限责任公司 Flight area path planning method, device, equipment and medium
CN117055601A (en) * 2023-09-05 2023-11-14 广东工业大学 Unmanned aerial vehicle meal delivery path planning method, unmanned aerial vehicle meal delivery path planning device, unmanned aerial vehicle meal delivery path planning equipment and storage medium
CN117055601B (en) * 2023-09-05 2024-05-31 广东工业大学 Unmanned aerial vehicle meal delivery path planning method, unmanned aerial vehicle meal delivery path planning device, unmanned aerial vehicle meal delivery path planning equipment and storage medium

Similar Documents

Publication Publication Date Title
US11709058B2 (en) Path planning method and device and mobile device
CN114625162A (en) Hybrid algorithm-based optimal path planning method, system and medium for unmanned aerial vehicle
CN107436148B (en) Robot navigation method and device based on multiple maps
US11300964B2 (en) Method and system for updating occupancy map for a robotic system
CN106371445B (en) A kind of unmanned vehicle planning control method based on topological map
CN106110656B (en) Method and device for calculating route in game scene
CN109163722B (en) Humanoid robot path planning method and device
CN103576698A (en) Mission re-planning for coordinated multivehicle task allocation
CN109931942A (en) Robot path generation method, device, robot and storage medium
CN114440916B (en) Navigation method, device, equipment and storage medium
CN109341698B (en) Path selection method and device for mobile robot
CN108803659B (en) Multi-window heuristic three-dimensional space path planning method based on magic cube model
CN111427341B (en) Robot shortest expected time target searching method based on probability map
CN114296474A (en) Unmanned aerial vehicle path planning method and system based on path time cost
CN112084853A (en) Footprint prediction method, footprint prediction device and humanoid robot
CN112699517B (en) Three-dimensional route planning method, system, equipment and medium
CN114779770A (en) Global path planning control method, device, equipment, medium and program product
US20180283870A1 (en) Patrol route setting apparatus, patrol route setting method, and non-transitory storage medium
CN117367433A (en) Low-altitude unmanned aerial vehicle path planning method and device, unmanned aerial vehicle and readable storage medium
CN109446437B (en) Information mining method, device, server and storage medium
CN117007067A (en) River course inspection unmanned aerial vehicle path planning method based on A star algorithm
CN114117260B (en) Spatiotemporal trajectory indexing and query processing method, device, equipment and medium
US20220300002A1 (en) Methods and systems for path planning in a known environment
CN114202126A (en) Intelligent safety control method and system for electric power operation
CN112232649A (en) Task processing evaluation method, system and equipment

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination