CN110487279A - A kind of paths planning method based on improvement A* algorithm - Google Patents
A kind of paths planning method based on improvement A* algorithm Download PDFInfo
- Publication number
- CN110487279A CN110487279A CN201910794684.XA CN201910794684A CN110487279A CN 110487279 A CN110487279 A CN 110487279A CN 201910794684 A CN201910794684 A CN 201910794684A CN 110487279 A CN110487279 A CN 110487279A
- Authority
- CN
- China
- Prior art keywords
- obstacle
- path
- nodes
- point
- search
- 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.)
- Granted
Links
- 238000004422 calculation algorithm Methods 0.000 title claims abstract description 43
- 238000000034 method Methods 0.000 title claims abstract description 35
- 238000009499 grossing Methods 0.000 claims abstract description 5
- 239000011159 matrix material Substances 0.000 claims description 6
- 238000004364 calculation method Methods 0.000 claims description 3
- 238000010586 diagram Methods 0.000 description 8
- 238000010845 search algorithm Methods 0.000 description 3
- 230000001133 acceleration Effects 0.000 description 2
- 230000009286 beneficial effect Effects 0.000 description 2
- 238000004088 simulation Methods 0.000 description 2
- 230000001427 coherent effect Effects 0.000 description 1
- 238000001514 detection method Methods 0.000 description 1
- 230000000694 effects Effects 0.000 description 1
- 238000005516 engineering process Methods 0.000 description 1
- 230000002349 favourable effect Effects 0.000 description 1
- 230000004927 fusion Effects 0.000 description 1
Classifications
-
- G—PHYSICS
- G01—MEASURING; TESTING
- G01C—MEASURING DISTANCES, LEVELS OR BEARINGS; SURVEYING; NAVIGATION; GYROSCOPIC INSTRUMENTS; PHOTOGRAMMETRY OR VIDEOGRAMMETRY
- G01C21/00—Navigation; Navigational instruments not provided for in groups G01C1/00 - G01C19/00
- G01C21/20—Instruments for performing navigational calculations
Landscapes
- Engineering & Computer Science (AREA)
- Radar, Positioning & Navigation (AREA)
- Remote Sensing (AREA)
- Automation & Control Theory (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Numerical Control (AREA)
- Control Of Position, Course, Altitude, Or Attitude Of Moving Bodies (AREA)
Abstract
本发明公开了一种基于改进A*算法的路径规划方法。针对A*算法得出的路径中存在较多转折点,造成路径不是最优的问题,首先在A*算法基础上合并路径中的关键拐点,这样不仅减少了路径中的转折点,也减少了三次样条插值点数,提高插值效率,然后根据合并拐点后的路径节点,利用三次样条插值达到平滑路径目的,通过改进后的算法,路径长度更短,整体更平滑,更符合非完整型机器人运动。
The invention discloses a path planning method based on the improved A* algorithm. In view of the fact that there are many turning points in the path obtained by the A* algorithm, which causes the path to be not optimal, firstly, the key turning points in the path are merged on the basis of the A* algorithm, which not only reduces the turning points in the path, but also reduces the three-time sample rate. The number of interpolation points is improved to improve the interpolation efficiency, and then according to the path nodes after the inflection points are merged, the cubic spline interpolation is used to achieve the purpose of smoothing the path. Through the improved algorithm, the path length is shorter, the overall smoother, and more in line with the non-holonomic robot motion.
Description
技术领域technical field
本发明属于智能机器人领域,尤其涉及一种基于改进A*算法的路径规划方法。The invention belongs to the field of intelligent robots, in particular to a path planning method based on an improved A* algorithm.
背景技术Background technique
随着机器人技术的不断发展,越来越多的机器人被用来提供各种服务,甚至替代了人的工作。自主导航是机器人实现智能化并发挥作用的关键,而路径规划则是机器人自动导航能力的重要组成。路径规划问题一直是智能移动机器人领域中的一个热点研究内容。路径规划是指在先验地图中,移动机器人能够根据周围环境,利用传感器获取信息,自动规划出一条从起点到终点的无碰撞路径。With the continuous development of robot technology, more and more robots are used to provide various services and even replace human work. Autonomous navigation is the key for robots to realize intelligence and play a role, and path planning is an important component of robot automatic navigation capabilities. Path planning has always been a hot research topic in the field of intelligent mobile robots. Path planning means that in the prior map, the mobile robot can automatically plan a collision-free path from the starting point to the ending point according to the surrounding environment and using sensors to obtain information.
路径规划算法的分类有很多种。根据外部环境信息是否已知,可分为全局路径规划算法和局部路径规划算法;而根据算法的搜索方式,也可分为盲目式搜索算法和启发式搜索算法。盲目式搜索注重搜索的过程而不是搜索目标,往往伴随着巨大的搜索空间,导致消耗大量内存资源且效率低下,具体的有广度优先算法、深度优先算法和Dijkstra算法等。启发式搜索在搜索的过程中,根据与问题相关的启发式信息,朝着有利的方向展开搜索,可以避免许多无意义的搜索路径,大大减少搜索范围、降低问题的复杂度,常见的有贪婪算法和A*算法。而A*算法作为一种被广泛使用的启发式搜索算法,同时兼顾了Dijkstra算法和贪婪算法的优点,它既可以保证找到一条最优路径,又能使搜索方向更加明确,从而搜索空间更小、搜索速度更快。There are many classifications of path planning algorithms. According to whether the external environment information is known, it can be divided into global path planning algorithm and local path planning algorithm; and according to the search method of the algorithm, it can also be divided into blind search algorithm and heuristic search algorithm. Blind search focuses on the search process rather than the search target, and is often accompanied by a huge search space, resulting in the consumption of a large amount of memory resources and low efficiency. Specifically, there are breadth-first algorithms, depth-first algorithms, and Dijkstra algorithms. Heuristic search In the process of searching, according to the heuristic information related to the problem, the search is carried out in a favorable direction, which can avoid many meaningless search paths, greatly reduce the search scope, and reduce the complexity of the problem. The common one is greedy Algorithm and A* Algorithm. As a widely used heuristic search algorithm, the A* algorithm takes into account the advantages of the Dijkstra algorithm and the greedy algorithm. It can not only guarantee to find an optimal path, but also make the search direction clearer, so that the search space is smaller. , Search faster.
发明内容Contents of the invention
发明目的:传统A*算法在搜索过程中扩展相邻节点时,只是以当前节点为中心向外扩展一层,即当前节点邻近的8个节点,此时机器人的运动方向的角度就会被限制成45度的整数倍,行动方向受到了限制,如果根据传统A*算法的8邻节点扩展方式,实际环境中的机器人路径规划所得到的最终路径可能不是最优的。针对以上问题,本发明提出一种基于改进A*算法的路径规划方法,改进后的算法规划的路径长度更短,路径更加平滑,路径搜索效率更高。Purpose of the invention: When the traditional A* algorithm expands the adjacent nodes during the search process, it only expands one layer outward with the current node as the center, that is, the 8 nodes adjacent to the current node. At this time, the angle of the robot's motion direction will be limited. Integer multiples of 45 degrees, the direction of action is limited. If the traditional A* algorithm is expanded to 8 neighbor nodes, the final path obtained by robot path planning in the actual environment may not be optimal. In view of the above problems, the present invention proposes a path planning method based on the improved A* algorithm. The path length planned by the improved algorithm is shorter, the path is smoother, and the path search efficiency is higher.
技术方案:为实现本发明的目的,本发明所采用的技术方案是:一种基于改进A*算法的路径规划方法,包括以下步骤:Technical scheme: in order to realize the purpose of the present invention, the technical scheme adopted in the present invention is: a kind of path planning method based on improved A* algorithm, comprises the following steps:
步骤1:将机器人所处的环境表示成栅格地图,并利用A*算法在栅格地图中搜索出一条从起始点到目标点的初始路径;Step 1: Express the environment of the robot as a grid map, and use the A* algorithm to search for an initial path from the starting point to the target point in the grid map;
步骤2:提取初始路径中所有节点,从起点开始,利用面积法依次判断相邻三个节点是否共线,从而找到路径上的所有转折点,即拐点;Step 2: Extract all the nodes in the initial path, start from the starting point, use the area method to judge whether the three adjacent nodes are collinear in turn, so as to find all the turning points on the path, that is, the inflection points;
步骤3:从起点开始,利用直线依次连接拐点直到目标点,得到更新后的路径;记每段直线为L(i,j),i,j分别表示直线段的起点和终点,i=0,1,2,...,n-1,j=1,2,...,n,其中n为拐点个数;Step 3: Starting from the starting point, use a straight line to connect the inflection point to the target point in turn to obtain the updated path; record each straight line as L(i, j), i, j represent the starting point and end point of the straight line segment, i=0, 1, 2, ..., n-1, j=1, 2, ..., n, where n is the number of inflection points;
步骤4:通过判断步骤3更新后路径中的直线段是否穿越障碍物,剔除冗余拐点,更新路径;Step 4: By judging whether the straight line segment in the path updated in step 3 passes through obstacles, redundant inflection points are eliminated, and the path is updated;
步骤5:对步骤4剔除冗余拐点之后的路径,采用三次样条插值进行平滑处理,得到最终规划完成的路径。Step 5: For the path after removing redundant inflection points in step 4, smoothing is performed by cubic spline interpolation to obtain the final planned path.
进一步,所述步骤4中,由于将机器人所处的环境表示成栅格地图,在固定方向(横向或者纵向)上以固定步长搜索路径中任意两个节点之间是否有障碍时,可能会出现漏检测障碍物的情况;本发明通过动态选择搜索方向的方法判断直线段是否穿越障碍物,当直线段L(i,j)不穿越障碍物时,去除i和j之间的冗余拐点。Further, in step 4, since the environment where the robot is located is represented as a grid map, when searching whether there is an obstacle between any two nodes in the path with a fixed step in a fixed direction (horizontal or vertical), it may be The situation of missing detection of obstacles occurs; the present invention judges whether the straight line segment passes through the obstacle by dynamically selecting the search direction, and removes the redundant inflection point between i and j when the straight line segment L(i, j) does not cross the obstacle.
进一步,通过动态选择搜索方向的方法判断直线段是否穿越障碍物,去除冗余拐点,具体过程如下:Further, the method of dynamically selecting the search direction is used to determine whether the straight line segment passes through obstacles and remove redundant inflection points. The specific process is as follows:
4-1,选取步骤3更新后路径中任意两个节点为搜索起点A和目标点B,AB两点的坐标均为所在栅格地图网格的中心,分别记为(x1,y1)和(x2,y2);4-1. Select any two nodes in the updated path in step 3 as the search starting point A and the target point B. The coordinates of the two points A and B are the center of the grid map where they are located, and they are respectively recorded as (x 1 , y 1 ) and (x 2 , y 2 );
4-2,计算AB的直线方程y=kx+b,k为直线斜率,b为直线与纵轴交点的纵坐标;4-2, calculate the straight line equation y=kx+b of AB, k is the slope of the straight line, and b is the ordinate of the intersection point of the straight line and the vertical axis;
4-3,判断AB两点的abs(y2-y1)和abs(x2-x1)大小,若abs(y2-y1)>abs(x2-x1),采用横向搜索,执行步骤4-4;否则,采用纵向搜索,执行步骤4-5;4-3. Determine the size of abs(y 2 -y 1 ) and abs(x 2 -x 1 ) of two points AB, if abs(y 2 -y 1 )>abs(x 2 -x 1 ), use horizontal search , go to step 4-4; otherwise, use vertical search and go to step 4-5;
4-4,在横向方向上以固定步长搜索AB两个节点之间是否有障碍物;如果有障碍物,AB两个节点之间的拐点不能剔除,相应路径不能更新;如果没有障碍物,剔除AB两个节点之间的拐点,更新相应路径;4-4. Search whether there is an obstacle between the two nodes of AB with a fixed step in the horizontal direction; if there is an obstacle, the inflection point between the two nodes of AB cannot be removed, and the corresponding path cannot be updated; if there is no obstacle, Eliminate the inflection point between the two nodes of AB, and update the corresponding path;
4-5,在纵向方向上以固定步长搜索AB两个节点之间是否有障碍物;如果有障碍物,AB两个节点之间的拐点不能剔除,相应路径不能更新;如果没有障碍物,剔除AB两个节点之间的拐点,更新相应路径;4-5. Search whether there is an obstacle between the two nodes of AB with a fixed step length in the longitudinal direction; if there is an obstacle, the inflection point between the two nodes of AB cannot be removed, and the corresponding path cannot be updated; if there is no obstacle, Eliminate the inflection point between the two nodes of AB, and update the corresponding path;
4-6,根据所述步骤4-1~4-5遍历路径中所有节点,剔除冗余拐点,更新路径。4-6. Traverse all nodes in the path according to the steps 4-1 to 4-5, remove redundant inflection points, and update the path.
进一步,所述步骤4-4在横向方向上以固定步长搜索AB两个节点之间是否有障碍物,具体如下:Further, the step 4-4 searches whether there is an obstacle between the two nodes AB with a fixed step in the horizontal direction, specifically as follows:
4-4-a,将栅格地图上的纵向网格线和线段AB的所有交点记为a(1),a(2),...,a(m),m为交点的个数;利用AB的直线方程计算出所有的交点纵坐标,通过纵坐标可以分析得到交点周围是否存在障碍物;4-4-a, record all intersections of the longitudinal grid lines and line segment AB on the grid map as a(1), a(2),..., a(m), m is the number of intersections; Use the straight line equation of AB to calculate the ordinate of all the intersection points, and through the ordinate, you can analyze whether there are obstacles around the intersection point;
4-4-b,确定将交点a(i),i=1,2,…,m作为公共交点的网格数量;如果交点a(i)为四个网格的公共交点,进入步骤4-4-c;如果交点a(i)为两个网格的公共交点,进入步骤4-4-d;4-4-b, determine the intersection point a (i), i=1, 2, ..., m as the number of grids of common intersection points; if intersection point a (i) is the common intersection point of four grids, enter step 4- 4-c; if the intersection point a(i) is the common intersection point of two grids, enter step 4-4-d;
4-4-c,判断线段AB的斜率k的正负,若斜率为正,检查线段AB上方毗邻三个网格是否有障碍物;若斜率为负,检查线段AB下方毗邻三个网格是否有障碍物;4-4-c, judge whether the slope k of the line segment AB is positive or negative. If the slope is positive, check whether there are obstacles in the three adjacent grids above the line segment AB; if the slope is negative, check whether the three adjacent grids below the line segment AB are There are obstacles;
如果有障碍物,AB两个节点之间的拐点不能剔除,相应路径不能更新,AB两个节点间障碍物搜索结束;如果没有障碍物,i=i+1,转到步骤4-4-b,继续判断下一个交点;If there is an obstacle, the inflection point between the two nodes of AB cannot be removed, the corresponding path cannot be updated, and the obstacle search between the two nodes of AB ends; if there is no obstacle, i=i+1, go to step 4-4-b , continue to judge the next intersection point;
4-4-d,判断交点相邻的左右网格是否为障碍物;如果是障碍物,AB两个节点间障碍物搜索结束;如果不是障碍物,i=i+1,转到步骤4-4-b,继续判断下一个交点;4-4-d, judge whether the left and right grid adjacent to the intersection point is an obstacle; if it is an obstacle, the obstacle search between the two nodes AB ends; if it is not an obstacle, i=i+1, go to step 4- 4-b, continue to judge the next intersection point;
4-4-e,所有交点遍历完成后,AB两个节点间障碍物搜索结束。4-4-e, after all intersection traversals are completed, the obstacle search between the two nodes AB ends.
进一步,所述步骤4-5在纵向方向上以固定步长搜索AB两个节点之间是否有障碍物,具体如下:Further, the steps 4-5 search whether there is an obstacle between the two nodes AB with a fixed step length in the longitudinal direction, specifically as follows:
4-5-a,将栅格地图上的横向网格线和线段AB的所有交点记为b(1),b(2),...,b(m),m为交点的个数;利用AB的直线方程计算出所有的交点横坐标,通过横坐标可以分析得到交点周围是否存在障碍物;4-5-a, record all intersections of the horizontal grid lines and line segment AB on the grid map as b(1), b(2),..., b(m), m is the number of intersections; Use the straight line equation of AB to calculate the abscissa of all intersections, and analyze whether there are obstacles around the intersection through the abscissa;
4-5-b,确定将交点b(j),j=1,2,…,m作为公共交点的网格数量;如果交点b(j)为四个网格的公共交点,进入步骤4-5-c;如果交点b(j)为两个网格的公共交点,进入步骤4-5-d;4-5-b, determine the intersection point b(j), j=1, 2,..., m as the number of grids of common intersection points; if intersection point b(j) is the common intersection point of four grids, enter step 4- 5-c; if the intersection point b(j) is the common intersection point of two grids, go to step 4-5-d;
4-5-c,判断线段AB的斜率k的正负,若斜率为正,检查线段AB上方毗邻三个网格是否有障碍物;若斜率为负,检查线段AB下方毗邻三个网格是否有障碍物;4-5-c, judge whether the slope k of the line segment AB is positive or negative. If the slope is positive, check whether there are obstacles in the three adjacent grids above the line segment AB; if the slope is negative, check whether the three adjacent grids below the line segment AB are There are obstacles;
如果有障碍物,AB两个节点之间的拐点不能剔除,相应路径不能更新,AB两个节点间障碍物搜索结束;如果没有障碍物,i=i+1,转到步骤4-5-b,继续判断下一个交点;If there is an obstacle, the inflection point between the two nodes AB cannot be removed, the corresponding path cannot be updated, and the obstacle search between the two nodes AB ends; if there is no obstacle, i=i+1, go to step 4-5-b , continue to judge the next intersection point;
4-5-d,判断交点相邻的左右网格是否为障碍物,如果是障碍物,AB两个节点间障碍物搜索结束;如果不是障碍物,i=i+1,转到步骤4-5-b,继续判断下一个交点;4-5-d, judge whether the left and right grid adjacent to the intersection point is an obstacle, if it is an obstacle, the obstacle search between the two nodes AB ends; if it is not an obstacle, i=i+1, go to step 4- 5-b, continue to judge the next intersection point;
4-5-e,所有交点遍历完成后,AB两个节点间障碍物搜索结束。4-5-e, after all intersections are traversed, the obstacle search between nodes A and B ends.
进一步,所述步骤5中,对剔除冗余拐点之后的路径,采用三次样条插值进行平滑处理,具体过程如下:Further, in the step 5, the path after removing redundant inflection points is smoothed by cubic spline interpolation, and the specific process is as follows:
5-1,设路径有n+1个数据节点,节点坐标分别为(x0,y0),(x1,y1),(x2,y2),...,(xn,yn);在每个子区间xi≤x≤xi+1中,创建样条差值方程:5-1. Let the path have n+1 data nodes, and the node coordinates are (x 0 , y 0 ), (x 1 , y 1 ), (x 2 , y 2 ),..., (x n , y n ); in each subinterval x i ≤ x ≤ x i+1 , create a spline difference equation:
gi(x)=ai+bi(x-xi)+ci(x-xi)2+di(x-xi)3 g i (x)=a i +b i (xx i )+c i (xx i ) 2 +d i (xx i ) 3
其中,ai,bi,ci,di表示样条曲线的系数;Among them, a i , b i , c i , d i represent the coefficients of the spline curve;
5-2,计算步长hi=xi+1-xi,i=0,1,...,n-1;5-2, calculation step size h i = xi+1 -xi , i =0, 1,..., n-1;
5-3,将数据节点和端点条件M0=0,Mn=0带入如下矩阵方程,得到:5-3. Put the data node and endpoint conditions M 0 =0, M n =0 into the following matrix equation to get:
其中,Mi,i=0,1,...,n表示样条差值方程二次微分值;Wherein, M i , i=0, 1, ..., n represents the quadratic differential value of the spline difference equation;
5-4,求解矩阵方程,得到样条差值方程二次微分值Mi,i=0,1,...,n;5-4. Solve the matrix equation to obtain the second differential value M i of the spline difference equation, i=0, 1, ..., n;
5-5,计算样条曲线的系数ai,bi,ci,di,公式如下:5-5. Calculate the coefficients a i , b i , c i , d i of the spline curve, the formula is as follows:
ai=yi a i =y i
其中,i=0,1,...,n-1;Wherein, i=0, 1, ..., n-1;
5-6,求解出每段样条差值方程中的系数,即可得到每段曲线的具体表达式。5-6. Solve the coefficients in the difference equation of each segment of spline to get the specific expression of each segment of the curve.
有益效果:与现有技术相比,本发明的技术方案具有以下有益的技术效果:Beneficial effects: Compared with the prior art, the technical solution of the present invention has the following beneficial technical effects:
本发明提出的融合改进A*算法和三次样条插值的平滑轨迹规划算法相对于传统三次样条插值平滑路径算法,减少了路径转折点的同时也减少了插值点数目,此外还减小了路径总长度。三次样条插值的引入,使整体路径更加平滑,从而避免机器人在转弯处出现急加速和急减速的情况,使其运动形式更加连贯,更加符合非完整型机器人的动力学控制。Compared with the traditional cubic spline interpolation smooth path algorithm, the fusion improved A* algorithm and cubic spline interpolation smooth trajectory planning algorithm proposed by the present invention not only reduces the turning points of the path, but also reduces the number of interpolation points, and also reduces the total number of paths. length. The introduction of cubic spline interpolation makes the overall path smoother, thereby avoiding the rapid acceleration and deceleration of the robot at the turn, making its motion form more coherent and more in line with the dynamic control of the non-holonomic robot.
附图说明Description of drawings
图1是本发明方法的整体流程图;Fig. 1 is the overall flowchart of the inventive method;
图2是本发明实施例的A*算法规划路段某三个点示意图;Fig. 2 is the schematic diagram of some three points of the A* algorithm planning road section of the embodiment of the present invention;
图3是本发明实施例的合并关键拐点过程示意图;Fig. 3 is a schematic diagram of the process of merging key inflection points according to an embodiment of the present invention;
图4是本发明实施例的横向遍历示意图;Fig. 4 is a schematic diagram of horizontal traversal according to an embodiment of the present invention;
图5是本发明实施例的纵向遍历示意图;Fig. 5 is a schematic diagram of longitudinal traversal according to an embodiment of the present invention;
图6是传统A*算法规划路径仿真图;Fig. 6 is a traditional A* algorithm planning path simulation diagram;
图7是本发明实施例的改进A*算法规划路径仿真图。Fig. 7 is a simulation diagram of path planning by the improved A* algorithm according to the embodiment of the present invention.
具体实施方式Detailed ways
下面结合附图和实施例对本发明的技术方案作进一步的说明。The technical solutions of the present invention will be further described below in conjunction with the accompanying drawings and embodiments.
本发明所述的一种基于改进A*算法的路径规划方法,整体流程如图1所示,包括以下步骤:A kind of path planning method based on improved A* algorithm described in the present invention, overall process as shown in Figure 1, comprises the following steps:
步骤1:将机器人所处的环境表示成栅格地图,并利用A*算法在栅格地图中搜索出一条从起始点到目标点的初始路径。Step 1: Express the robot's environment as a grid map, and use the A* algorithm to search for an initial path from the starting point to the target point in the grid map.
步骤2:提取初始路径中所有节点,从起点开始,利用面积法依次判断相邻三个节点是否共线,从而找到路径上的所有转折点,即拐点;具体如下:Step 2: Extract all the nodes in the initial path, start from the starting point, use the area method to judge whether the three adjacent nodes are collinear in turn, so as to find all the turning points on the path, that is, the inflection points; the details are as follows:
如图2所示,A,B,C代表A*算法规划出的路径中某三个相邻节点,计算三角形ABC面积SABC,当SABC不为0时,A,B,C三点不共线,B点为路径中的拐点;As shown in Figure 2, A, B, and C represent three adjacent nodes in the path planned by the A* algorithm, and the area S ABC of the triangle ABC is calculated. When S ABC is not 0, the three points A, B, and C are not Collinear, point B is the inflection point in the path;
三角形ABC面积SABC的计算公式如下:The formula for calculating the area S ABC of triangle ABC is as follows:
式中,A点坐标为(xA,yA),B点坐标为(xB,yB),C点坐标为(xC,yC)。In the formula, the coordinates of point A are (x A , y A ), the coordinates of point B are (x B , y B ), and the coordinates of point C are (x C , y C ).
步骤3:从起点开始,利用直线依次连接拐点直到目标点,得到更新后的路径;记每段直线为L(i,j),i,j分别表示直线段的起点和终点,i=0,1,2,...,n-1,j=1,2,...,n,其中n为拐点个数;Step 3: Starting from the starting point, use a straight line to connect the inflection point to the target point in turn to obtain the updated path; record each straight line as L(i, j), i, j represent the starting point and end point of the straight line segment, i=0, 1, 2, ..., n-1, j=1, 2, ..., n, where n is the number of inflection points;
步骤4:通过判断步骤3更新后路径中的直线段是否穿越障碍物,剔除冗余拐点,更新路径;Step 4: By judging whether the straight line segment in the path updated in step 3 passes through obstacles, redundant inflection points are eliminated, and the path is updated;
本发明通过动态选择搜索方向的方法判断直线段是否穿越障碍物,当直线段L(i,j)不穿越障碍物时,去除i和j之间的冗余拐点。具体过程如下:The present invention judges whether the straight line segment passes through the obstacle by dynamically selecting the search direction, and removes the redundant inflection point between i and j when the straight line segment L(i, j) does not pass through the obstacle. The specific process is as follows:
4-1,选取步骤3更新后路径中任意两个节点为搜索起点A和目标点B,AB两点的坐标均为所在栅格地图网格的中心,分别记为(x1,y1)和(x2,y2)。4-1. Select any two nodes in the updated path in step 3 as the search starting point A and the target point B. The coordinates of the two points A and B are the center of the grid map where they are located, and they are respectively recorded as (x 1 , y 1 ) and (x 2 , y 2 ).
4-2,计算AB的直线方程y=kx+b,k为直线斜率,b为直线与纵轴交点的纵坐标。4-2. Calculate the straight line equation of AB y=kx+b, k is the slope of the straight line, and b is the ordinate of the intersection point of the straight line and the vertical axis.
4-3,判断AB两点的abs(y2-y1)和abs(x2-x1)大小,若abs(y2-y1)>abs(x2-x1),采用横向搜索,执行步骤4-4;否则,采用纵向搜索,执行步骤4-5。4-3. Determine the size of abs(y 2 -y 1 ) and abs(x 2 -x 1 ) of two points AB, if abs(y 2 -y 1 )>abs(x 2 -x 1 ), use horizontal search , go to step 4-4; otherwise, use vertical search and go to step 4-5.
4-4,在横向方向上以固定步长搜索AB两个节点之间是否有障碍物;如图4所示,黑色网格表示障碍物,白色网格表示可通过区域,直线表示任意连接两个拐点的线段,黑点表示直线与网格的交点;4-4. Search whether there is an obstacle between the two nodes of AB with a fixed step in the horizontal direction; as shown in Figure 4, the black grid indicates the obstacle, the white grid indicates the passable area, and the straight line indicates any Inflection point of the line segment, the black point represents the intersection of the line and the grid;
如果有障碍物,AB两个节点之间的拐点不能剔除,相应路径不能更新;如果没有障碍物,剔除AB两个节点之间的拐点,更新相应路径;If there is an obstacle, the inflection point between the two nodes of AB cannot be removed, and the corresponding path cannot be updated; if there is no obstacle, the inflection point between the two nodes of AB is removed, and the corresponding path is updated;
所述在横向方向上以固定步长搜索AB两个节点之间是否有障碍物,方法如下:The method of searching whether there is an obstacle between the two nodes of AB with a fixed step in the horizontal direction is as follows:
4-4-a,将栅格地图上的纵向网格线和线段AB的所有交点记为a(1),a(2),...,a(m),m为交点的个数;利用AB的直线方程计算出所有的交点纵坐标,通过纵坐标可以分析得到交点周围是否存在障碍物;4-4-a, record all intersections of the longitudinal grid lines and line segment AB on the grid map as a(1), a(2),..., a(m), m is the number of intersections; Use the straight line equation of AB to calculate the ordinate of all the intersection points, and through the ordinate, you can analyze whether there are obstacles around the intersection point;
4-4-b,确定将交点a(i),i=1,2,…,m作为公共交点的网格数量;如果交点a(i)为四个网格的公共交点,进入步骤4-4-c;如果交点a(i)为两个网格的公共交点,进入步骤4-4-d;4-4-b, determine the intersection point a (i), i=1, 2, ..., m as the number of grids of common intersection points; if intersection point a (i) is the common intersection point of four grids, enter step 4- 4-c; if the intersection point a(i) is the common intersection point of two grids, enter step 4-4-d;
4-4-c,判断线段AB的斜率k的正负,若斜率为正,检查线段AB上方毗邻三个网格是否有障碍物;若斜率为负,检查线段AB下方毗邻三个网格是否有障碍物;4-4-c, judge whether the slope k of the line segment AB is positive or negative. If the slope is positive, check whether there are obstacles in the three adjacent grids above the line segment AB; if the slope is negative, check whether the three adjacent grids below the line segment AB are There are obstacles;
如果有障碍物,AB两个节点之间的拐点不能剔除,相应路径不能更新,AB两个节点间障碍物搜索结束;如果没有障碍物,i=i+1,转到步骤4-4-b,继续判断下一个交点;If there is an obstacle, the inflection point between the two nodes of AB cannot be removed, the corresponding path cannot be updated, and the obstacle search between the two nodes of AB ends; if there is no obstacle, i=i+1, go to step 4-4-b , continue to judge the next intersection point;
4-4-d,判断交点相邻的左右网格是否为障碍物,如果是障碍物,AB两个节点间障碍物搜索结束;如果不是障碍物,i=i+1,转到步骤4-4-b,继续判断下一个交点;4-4-d, judge whether the left and right grid adjacent to the intersection point is an obstacle, if it is an obstacle, the obstacle search between the two nodes AB ends; if it is not an obstacle, i=i+1, go to step 4- 4-b, continue to judge the next intersection point;
4-4-e,所有交点遍历完成后,AB两个节点间障碍物搜索结束。4-4-e, after all intersection traversals are completed, the obstacle search between the two nodes AB ends.
4-5,在纵向方向上以固定步长搜索AB两个节点之间是否有障碍物,如图5所示;如果有障碍物,AB两个节点之间的拐点不能剔除,相应路径不能更新;如果没有障碍物,剔除AB两个节点之间的拐点,更新相应路径;4-5. Search whether there is an obstacle between the two nodes of AB with a fixed step length in the longitudinal direction, as shown in Figure 5; if there is an obstacle, the inflection point between the two nodes of AB cannot be removed, and the corresponding path cannot be updated ; If there is no obstacle, remove the inflection point between the two nodes of AB, and update the corresponding path;
所述在纵向方向上以固定步长搜索AB两个节点之间是否有障碍物,方法如下:The method of searching whether there is an obstacle between the two nodes of AB with a fixed step length in the longitudinal direction is as follows:
4-5-a,将栅格地图上的横向网格线和线段AB的所有交点记为b(1),b(2),...,b(m),m为交点的个数;利用AB的直线方程计算出所有的交点横坐标,通过横坐标可以分析得到交点周围是否存在障碍物;4-5-a, record all intersections of the horizontal grid lines and line segment AB on the grid map as b(1), b(2),..., b(m), m is the number of intersections; Use the straight line equation of AB to calculate the abscissa of all intersections, and analyze whether there are obstacles around the intersection through the abscissa;
4-5-b,确定将交点b(j),j=1,2,…,m作为公共交点的网格数量;如果交点b(j)为四个网格的公共交点,进入步骤4-5-c;如果交点b(j)为两个网格的公共交点,进入步骤4-5-d;4-5-b, determine the intersection point b(j), j=1, 2,..., m as the number of grids of common intersection points; if intersection point b(j) is the common intersection point of four grids, enter step 4- 5-c; if the intersection point b(j) is the common intersection point of two grids, go to step 4-5-d;
4-5-c,判断线段AB的斜率k的正负,若斜率为正,检查线段AB上方毗邻三个网格是否有障碍物;若斜率为负,检查线段AB下方毗邻三个网格是否有障碍物;4-5-c, judge whether the slope k of the line segment AB is positive or negative. If the slope is positive, check whether there are obstacles in the three adjacent grids above the line segment AB; if the slope is negative, check whether the three adjacent grids below the line segment AB are There are obstacles;
如果有障碍物,AB两个节点之间的拐点不能剔除,相应路径不能更新,AB两个节点间障碍物搜索结束;如果没有障碍物,i=i+1,转到步骤4-5-b,继续判断下一个交点;If there is an obstacle, the inflection point between the two nodes AB cannot be removed, the corresponding path cannot be updated, and the obstacle search between the two nodes AB ends; if there is no obstacle, i=i+1, go to step 4-5-b , continue to judge the next intersection point;
4-5-d,判断交点相邻的左右网格是否为障碍物,如果是障碍物,AB两个节点间障碍物搜索结束;如果不是障碍物,i=i+1,转到步骤4-5-b,继续判断下一个交点;4-5-d, judge whether the left and right grid adjacent to the intersection point is an obstacle, if it is an obstacle, the obstacle search between the two nodes AB ends; if it is not an obstacle, i=i+1, go to step 4- 5-b, continue to judge the next intersection point;
4-5-e,所有交点遍历完成后,AB两个节点间障碍物搜索结束。4-5-e, after all intersections are traversed, the obstacle search between nodes A and B ends.
4-6,根据所述步骤4-1~4-5遍历路径中所有节点,剔除冗余拐点,更新路径。4-6. Traverse all nodes in the path according to the steps 4-1 to 4-5, remove redundant inflection points, and update the path.
如图3所示,其中A,B,C,D,E代表提取的相邻路径拐点。从A点开始,连接AC,AD时未出现障碍物,则B,C两个多余拐点可以剔除,更新路径为A-D-E。连接AE时中间出现障碍物,故D点不能剔除,路径不能更新。然后再以D点为起点,依次连接其与后面的拐点判断路径是否可以更新,直至终点结束。As shown in Figure 3, where A, B, C, D, E represent the extracted adjacent path inflection points. Starting from point A, there is no obstacle when connecting AC and AD, then the two redundant inflection points of B and C can be eliminated, and the update path is A-D-E. There are obstacles in the middle of connecting AE, so point D cannot be removed, and the path cannot be updated. Then take point D as the starting point, connect it with the following inflection points in turn to judge whether the path can be updated until the end point ends.
步骤5:对步骤4剔除冗余拐点之后的路径,采用三次样条插值进行平滑处理,得到最终规划完成的路径。具体过程如下:Step 5: For the path after removing redundant inflection points in step 4, smoothing is performed by cubic spline interpolation to obtain the final planned path. The specific process is as follows:
5-1,设路径有n+1个数据节点,节点坐标分别为(x0,y0),(x1,y1),(x2,y2),...,(xn,yn);在每个子区间xi≤x≤xi+1中,创建样条差值方程:5-1. Let the path have n+1 data nodes, and the node coordinates are (x 0 , y 0 ), (x 1 , y 1 ), (x 2 , y 2 ),..., (x n , y n ); in each subinterval x i ≤ x ≤ x i+1 , create a spline difference equation:
gi(x)=ai+bi(x-xi)+ci(x-xi)2+di(x-xi)3 g i (x)=a i +b i (xx i )+c i (xx i ) 2 +d i (xx i ) 3
其中,ai,bi,ci,di表示样条曲线的系数;Among them, a i , b i , c i , d i represent the coefficients of the spline curve;
5-2,计算步长hi=xi+1-xi,i=0,1,...,n-1;5-2, calculation step size h i = xi+1 -xi , i =0, 1,..., n-1;
5-3,将数据节点和端点条件M0=0,Mn=0带入如下矩阵方程,得到:5-3. Put the data node and endpoint conditions M 0 =0, M n =0 into the following matrix equation to get:
其中,Mi,i=0,1,...,n表示样条差值方程二次微分值;Wherein, M i , i=0, 1, ..., n represents the quadratic differential value of the spline difference equation;
5-4,求解矩阵方程,得到样条差值方程二次微分值Mi,i=0,1,...,n;5-4. Solve the matrix equation to obtain the second differential value M i of the spline difference equation, i=0, 1, ..., n;
5-5,计算样条曲线的系数ai,bi,ci,di,公式如下:5-5. Calculate the coefficients a i , b i , c i , d i of the spline curve, the formula is as follows:
ai=yi a i =y i
其中,i=0,1,...,n-1;Wherein, i=0, 1, ..., n-1;
5-6,求解出每段样条差值方程中的系数,即可得到每段曲线的具体表达式。5-6. Solve the coefficients in the difference equation of each segment of spline to get the specific expression of each segment of the curve.
图6是传统A*算法的规划路径图,图7是本发明实施例A*算法改进后且经过平滑处理后的规划路径图,S表示起点,E表示目标点。由图7可知,合并关键拐点后,路径中的转折点数目明显减少,除了传统A*算法的冗余拐点,同时还减小了路径总长度,路径渐为平滑。但是在路径转弯处却存在不少的尖峰,再引入三次样条插值来使路径足够平滑,从而让机器人在转弯处速度和加速度保持连续。Fig. 6 is a planned path diagram of the traditional A* algorithm, and Fig. 7 is a planned path diagram after the A* algorithm is improved and smoothed according to the embodiment of the present invention, S represents the starting point, and E represents the target point. It can be seen from Figure 7 that after merging key inflection points, the number of inflection points in the path is significantly reduced. In addition to the redundant inflection points of the traditional A* algorithm, the total length of the path is also reduced, and the path gradually becomes smoother. However, there are many peaks at the turn of the path, and then the cubic spline interpolation is introduced to make the path smooth enough, so that the speed and acceleration of the robot at the turn remain continuous.
Claims (6)
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201910794684.XA CN110487279B (en) | 2019-08-27 | 2019-08-27 | A Path Planning Method Based on Improved A* Algorithm |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201910794684.XA CN110487279B (en) | 2019-08-27 | 2019-08-27 | A Path Planning Method Based on Improved A* Algorithm |
Publications (2)
Publication Number | Publication Date |
---|---|
CN110487279A true CN110487279A (en) | 2019-11-22 |
CN110487279B CN110487279B (en) | 2022-12-13 |
Family
ID=68554357
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN201910794684.XA Active CN110487279B (en) | 2019-08-27 | 2019-08-27 | A Path Planning Method Based on Improved A* Algorithm |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN110487279B (en) |
Cited By (18)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN111060109A (en) * | 2020-01-03 | 2020-04-24 | 东南大学 | A Global Path Planning Method for Unmanned Vehicle Based on Improved A-Star Algorithm |
CN111552288A (en) * | 2020-04-28 | 2020-08-18 | 西南交通大学 | Mobile robot path smoothing method |
CN111652436A (en) * | 2020-06-03 | 2020-09-11 | 中铁二院工程集团有限责任公司 | Contour line-based automatic construction pavement line selection method |
CN111880534A (en) * | 2020-07-17 | 2020-11-03 | 桂林电子科技大学 | Secondary path planning method based on grid map |
CN112099498A (en) * | 2020-09-08 | 2020-12-18 | 合肥学院 | Path planning method and system based on parameterized Thiele continuous fractional interpolation |
CN112327856A (en) * | 2020-11-13 | 2021-02-05 | 云南电网有限责任公司保山供电局 | Robot path planning method based on improved A-star algorithm |
CN113066148A (en) * | 2020-01-02 | 2021-07-02 | 沈阳美行科技有限公司 | Map data processing method, device, equipment and storage medium |
CN113359721A (en) * | 2021-05-31 | 2021-09-07 | 西安交通大学 | Improved A method for planning AGV path by combining motion control |
CN113539050A (en) * | 2020-04-20 | 2021-10-22 | 华为技术有限公司 | Data processing method, device and equipment |
CN113570682A (en) * | 2021-08-02 | 2021-10-29 | 北京经纬恒润科技股份有限公司 | Right-angle routing method and device |
CN113577772A (en) * | 2021-09-27 | 2021-11-02 | 深圳易帆互动科技有限公司 | Tile map-based unit moving method and device and readable storage medium |
CN113627648A (en) * | 2021-07-08 | 2021-11-09 | 中汽创智科技有限公司 | Task allocation method, device, equipment and storage medium |
CN114489040A (en) * | 2021-12-13 | 2022-05-13 | 中煤科工集团信息技术有限公司 | Hybrid path planning method based on improved A-star algorithm and artificial potential field algorithm |
CN114593726A (en) * | 2022-02-22 | 2022-06-07 | 深圳鹏行智能研究有限公司 | Path smoothing method and device |
CN115164914A (en) * | 2022-07-11 | 2022-10-11 | 北京中航世科电子技术有限公司 | Navigation method, system, electronic equipment and medium for individual combat |
EP4068037A4 (en) * | 2020-06-30 | 2023-06-14 | Amicro Semiconductor Co., Ltd. | OBSTACLE CLEARANCE TERMINATION DETERMINATION METHOD, OBSTACLE CLEARANCE CONTROL METHOD, CHIP AND ROBOT |
CN117664135A (en) * | 2023-12-05 | 2024-03-08 | 烟台大学 | Robot path planning method and system based on fusion algorithm |
CN119197547A (en) * | 2024-11-28 | 2024-12-27 | 绍兴文理学院 | A path planning method for unmanned ship based on improved A-star algorithm |
Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20180172451A1 (en) * | 2015-08-14 | 2018-06-21 | Beijing Evolver Robotics Co., Ltd | Method and system for mobile robot to self-establish map indoors |
CN108549388A (en) * | 2018-05-24 | 2018-09-18 | 苏州智伟达机器人科技有限公司 | A kind of method for planning path for mobile robot based on improvement A star strategies |
WO2019042295A1 (en) * | 2017-08-31 | 2019-03-07 | 广州小鹏汽车科技有限公司 | Path planning method, system, and device for autonomous driving |
CN109798909A (en) * | 2019-02-01 | 2019-05-24 | 安徽达特智能科技有限公司 | A kind of method of global path planning |
CN109945873A (en) * | 2019-04-04 | 2019-06-28 | 东南大学 | A hybrid path planning method for motion control of indoor mobile robots |
-
2019
- 2019-08-27 CN CN201910794684.XA patent/CN110487279B/en active Active
Patent Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20180172451A1 (en) * | 2015-08-14 | 2018-06-21 | Beijing Evolver Robotics Co., Ltd | Method and system for mobile robot to self-establish map indoors |
WO2019042295A1 (en) * | 2017-08-31 | 2019-03-07 | 广州小鹏汽车科技有限公司 | Path planning method, system, and device for autonomous driving |
CN108549388A (en) * | 2018-05-24 | 2018-09-18 | 苏州智伟达机器人科技有限公司 | A kind of method for planning path for mobile robot based on improvement A star strategies |
CN109798909A (en) * | 2019-02-01 | 2019-05-24 | 安徽达特智能科技有限公司 | A kind of method of global path planning |
CN109945873A (en) * | 2019-04-04 | 2019-06-28 | 东南大学 | A hybrid path planning method for motion control of indoor mobile robots |
Cited By (27)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN113066148A (en) * | 2020-01-02 | 2021-07-02 | 沈阳美行科技有限公司 | Map data processing method, device, equipment and storage medium |
CN113066148B (en) * | 2020-01-02 | 2023-07-18 | 沈阳美行科技股份有限公司 | Map data processing method, device, equipment and storage medium |
CN111060109A (en) * | 2020-01-03 | 2020-04-24 | 东南大学 | A Global Path Planning Method for Unmanned Vehicle Based on Improved A-Star Algorithm |
CN111060109B (en) * | 2020-01-03 | 2021-08-27 | 东南大学 | Unmanned ship global path planning method based on improved A-star algorithm |
CN113539050A (en) * | 2020-04-20 | 2021-10-22 | 华为技术有限公司 | Data processing method, device and equipment |
WO2021213141A1 (en) * | 2020-04-20 | 2021-10-28 | 华为技术有限公司 | Data processing method and device, and apparatus |
CN111552288A (en) * | 2020-04-28 | 2020-08-18 | 西南交通大学 | Mobile robot path smoothing method |
CN111652436A (en) * | 2020-06-03 | 2020-09-11 | 中铁二院工程集团有限责任公司 | Contour line-based automatic construction pavement line selection method |
US12130627B2 (en) | 2020-06-30 | 2024-10-29 | Amicro Semiconductor Co., Ltd. | Method for determining termination of obstacle-crossing, and method for controlling obstacle-crossing, chip, and robot |
EP4068037A4 (en) * | 2020-06-30 | 2023-06-14 | Amicro Semiconductor Co., Ltd. | OBSTACLE CLEARANCE TERMINATION DETERMINATION METHOD, OBSTACLE CLEARANCE CONTROL METHOD, CHIP AND ROBOT |
CN111880534A (en) * | 2020-07-17 | 2020-11-03 | 桂林电子科技大学 | Secondary path planning method based on grid map |
CN112099498A (en) * | 2020-09-08 | 2020-12-18 | 合肥学院 | Path planning method and system based on parameterized Thiele continuous fractional interpolation |
CN112327856B (en) * | 2020-11-13 | 2022-12-06 | 云南电网有限责任公司保山供电局 | Robot path planning method based on improved A-star algorithm |
CN112327856A (en) * | 2020-11-13 | 2021-02-05 | 云南电网有限责任公司保山供电局 | Robot path planning method based on improved A-star algorithm |
CN113359721B (en) * | 2021-05-31 | 2022-10-25 | 西安交通大学 | An Improved A* AGV Path Planning Method Combined with Motion Control |
CN113359721A (en) * | 2021-05-31 | 2021-09-07 | 西安交通大学 | Improved A method for planning AGV path by combining motion control |
CN113627648A (en) * | 2021-07-08 | 2021-11-09 | 中汽创智科技有限公司 | Task allocation method, device, equipment and storage medium |
CN113570682B (en) * | 2021-08-02 | 2024-05-07 | 北京经纬恒润科技股份有限公司 | Right-angle routing method and device |
CN113570682A (en) * | 2021-08-02 | 2021-10-29 | 北京经纬恒润科技股份有限公司 | Right-angle routing method and device |
CN113577772A (en) * | 2021-09-27 | 2021-11-02 | 深圳易帆互动科技有限公司 | Tile map-based unit moving method and device and readable storage medium |
CN114489040A (en) * | 2021-12-13 | 2022-05-13 | 中煤科工集团信息技术有限公司 | Hybrid path planning method based on improved A-star algorithm and artificial potential field algorithm |
CN114593726A (en) * | 2022-02-22 | 2022-06-07 | 深圳鹏行智能研究有限公司 | Path smoothing method and device |
CN114593726B (en) * | 2022-02-22 | 2024-08-06 | 深圳鹏行智能研究有限公司 | Path smoothing method and device |
CN115164914A (en) * | 2022-07-11 | 2022-10-11 | 北京中航世科电子技术有限公司 | Navigation method, system, electronic equipment and medium for individual combat |
CN115164914B (en) * | 2022-07-11 | 2023-10-03 | 北京中航世科电子技术有限公司 | Navigation method, system, electronic equipment and medium for individual combat |
CN117664135A (en) * | 2023-12-05 | 2024-03-08 | 烟台大学 | Robot path planning method and system based on fusion algorithm |
CN119197547A (en) * | 2024-11-28 | 2024-12-27 | 绍兴文理学院 | A path planning method for unmanned ship based on improved A-star algorithm |
Also Published As
Publication number | Publication date |
---|---|
CN110487279B (en) | 2022-12-13 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN110487279B (en) | A Path Planning Method Based on Improved A* Algorithm | |
CN109116841B (en) | Path planning smooth optimization method based on ant colony algorithm | |
CN110231824B (en) | Intelligent agent path planning method based on straight line deviation method | |
CN111785045A (en) | A joint control method for distributed traffic lights based on actor-critic algorithm | |
CN111696370A (en) | Traffic light control method based on heuristic deep Q network | |
CN105527964B (en) | A kind of robot path planning method | |
CN112526988B (en) | An autonomous mobile robot and its path navigation and path planning method and system | |
CN108268042A (en) | A kind of path planning algorithm based on improvement Visual Graph construction | |
CN112650256A (en) | Improved bidirectional RRT robot path planning method | |
CN109959388A (en) | A refined route planning method for intelligent traffic based on grid extension model | |
CN110488839A (en) | A kind of legged type robot paths planning method and device based on tangent line interior extrapolation method | |
CN103198751A (en) | Line feature map creation method of mobile robot based on laser range finder | |
CN109974739B (en) | Global Navigation System and Navigation Information Generation Method Based on High Precision Map | |
CN110285802A (en) | A Fast Expanding Random Tree Path Smoothing Method | |
CN112965485A (en) | Robot full-coverage path planning method based on secondary region division | |
CN114676939B (en) | Multi-vehicle-type parameter self-adaptive reference line smoothing method and system | |
CN112435498A (en) | Urban road network shortest path acquisition method based on directivity induction | |
CN114428499A (en) | Astar and DWA algorithm fused mobile trolley path planning method | |
CN115373384A (en) | A method and system for vehicle dynamic path planning based on improved RRT | |
CN113804209B (en) | High-precision long-distance off-road path planning method for quadrangle grid | |
CN116817913B (en) | New path planning method utilizing turning penalty factors and twin road network improvement | |
CN113160585A (en) | Traffic light timing optimization method, system and storage medium | |
CN115328208A (en) | Unmanned aerial vehicle path planning method for realizing global dynamic path planning | |
CN113124875A (en) | Path navigation method | |
Wang et al. | Application of A* algorithm in intelligent vehicle path planning |
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 | ||
GR01 | Patent grant | ||
GR01 | Patent grant |