CN110319837A - A path planning method for indoor complex conditions of a service robot - Google Patents

A path planning method for indoor complex conditions of a service robot Download PDF

Info

Publication number
CN110319837A
CN110319837A CN201910612272.XA CN201910612272A CN110319837A CN 110319837 A CN110319837 A CN 110319837A CN 201910612272 A CN201910612272 A CN 201910612272A CN 110319837 A CN110319837 A CN 110319837A
Authority
CN
China
Prior art keywords
path
point
points
vector
list
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.)
Withdrawn
Application number
CN201910612272.XA
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.)
North China University of Technology
Original Assignee
North China 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 North China University of Technology filed Critical North China University of Technology
Priority to CN201910612272.XA priority Critical patent/CN110319837A/en
Publication of CN110319837A publication Critical patent/CN110319837A/en
Withdrawn legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G01MEASURING; TESTING
    • G01CMEASURING DISTANCES, LEVELS OR BEARINGS; SURVEYING; NAVIGATION; GYROSCOPIC INSTRUMENTS; PHOTOGRAMMETRY OR VIDEOGRAMMETRY
    • G01C21/00Navigation; Navigational instruments not provided for in groups G01C1/00 - G01C19/00
    • G01C21/20Instruments for performing navigational calculations
    • G01C21/206Instruments for performing navigational calculations specially adapted for indoor navigation

Landscapes

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

Abstract

The invention provides a method for planning complex situation paths in a service robot room, which comprises the following steps: determining coordinate values of a starting point and a target point based on a grid map represented by a two-dimensional array, creating and initializing an OPEN list and a CLOSE list, and placing the starting point in the OPEN list; detecting an OPEN list, judging whether the path is searched successfully or not, and if not, carrying out the next step; alternative paths are searched by adopting a jumping point expansion rule, so that the expansion of invalid alternative points is reduced, and the path searching speed is accelerated; detecting connectivity among the path points, and removing useless path points; and adding information of steering judgment and required rotation angle for each path point based on the vector cross product and the vector dot product. The invention simultaneously detects the connectivity among the interval path points to remove redundant points in the path points, and reduces the stay of the robot at unnecessary path points to shorten the total path length. And the vector dot product and the vector cross product are used for carrying out steering judgment and corner calculation at the path point, so that the pose of the robot can be automatically adjusted at the path point.

Description

一种服务机器人室内复杂状况路径规划方法A path planning method for indoor complex conditions of a service robot

技术领域technical field

本发明属于服务机器人路径规划技术领域,具体涉及一种服务机器人室内复杂状况路径规划方法。The invention belongs to the technical field of path planning for service robots, and in particular relates to a path planning method for indoor complex conditions of a service robot.

背景技术Background technique

近年来,随着机器人技术的飞速发展和社会需求的进一步变革,在机器人领域,相关技术的研究逐渐由大型的工业机器人向室内服务机器人延伸。机器人在室内环境中的自主导航移动的前提是根据目标点和算法完成了路径规划,然后根据规划好的路径点进行运动行走。高效可靠的路径规划算法是室内机器人自主移动的关键技术,同时也是机器人完成服务任务的重要基础。目前在全局路径规划算法中,多数算法都是采用A*算法或者基于A*的改进算法,在大场景规模地图中,算法受限于固定的近邻拓展策略,使得寻路算法内存空间消耗大、运算时间较长以及对运算性能要求高。这就导致了它们在应用到服务机器人室内路径规划时不能满足实用性、实时性等要求。例如Pochter提出的Swamps算法,采用预处理方式将栅格地图分解为一系列相邻的区域,然后通过识别标识地图中无需探索的区域达到减少拓展无用备选路径点的目的以加快搜索速度,这种后继路径点拓展策略虽然在路劲规划速度有所上升,但是算法运算速度提升性能有限。Sturtevant提出的TDHs算法采用改进引导搜索的启发式函数精确度的方式来提升算法的速度,算法通常会预先计算并保存区域中的一些关键节点之间的距离。虽然它们的速度很快而且得到的解是最优的,但常常会消耗过多的内存。In recent years, with the rapid development of robotics technology and further changes in social needs, in the field of robotics, research on related technologies has gradually extended from large-scale industrial robots to indoor service robots. The premise of the robot's autonomous navigation and movement in the indoor environment is to complete the path planning according to the target points and algorithms, and then perform motion walking according to the planned path points. Efficient and reliable path planning algorithm is the key technology for autonomous movement of indoor robots, and it is also an important basis for robots to complete service tasks. At present, in the global path planning algorithm, most algorithms use the A* algorithm or an improved algorithm based on A*. In a large-scale scene map, the algorithm is limited by a fixed neighbor expansion strategy, which makes the pathfinding algorithm consume a large amount of memory space. The calculation time is long and the calculation performance is high. As a result, they cannot meet the requirements of practicality and real-time performance when applied to indoor path planning of service robots. For example, the Swamps algorithm proposed by Pochter uses a preprocessing method to decompose the grid map into a series of adjacent areas, and then identifies the areas that do not need to be explored in the map to reduce the expansion of useless alternative path points and speed up the search. Although the successor path point expansion strategy has increased the road strength planning speed, the performance of the algorithm operation speed is limited. The TDHs algorithm proposed by Sturtevant improves the speed of the algorithm by improving the accuracy of the heuristic function of the guided search. The algorithm usually pre-calculates and saves the distance between some key nodes in the area. While they are fast and yield optimal solutions, they often consume too much memory.

综述所述,现有全局路径规划算法具有如下缺点:In summary, the existing global path planning algorithms have the following disadvantages:

1.受限于固有的近邻拓展策略,拓展了大量的无效备选路径点,降低了算法运算性能;1. Limited by the inherent neighbor expansion strategy, a large number of invalid alternative path points have been expanded, which reduces the performance of the algorithm;

2.在较大规模的地图环境中,筛选后继路径点时需要存储大量的备选路径点的信息,需要一定的存储性能;2. In a large-scale map environment, it is necessary to store a large amount of information on alternative waypoints when screening subsequent waypoints, which requires a certain storage performance;

3.规划完成的路径中存在较多的冗余路径点;3. There are many redundant path points in the planned path;

4.在机器人真实应用场景中,路径规划算法只给出了关键路径点,使得机器人在路径点处无法自主调整位姿。4. In the real application scenario of the robot, the path planning algorithm only gives the key path points, so that the robot cannot autonomously adjust the pose at the path points.

发明内容Contents of the invention

本发明的目的是提供一种服务机器人室内复杂状况路径规划方法,同时检测间隔路径点间的连通性对路径点中冗余点做去除处理,减少机器人在不必要路径点处的停留以缩短总的路径长度。并运用向量点积和向量叉积在路径点处进行转向判断和转角计算,使机器人在路径点处可以自主调整位姿。The purpose of the present invention is to provide a path planning method for indoor complex conditions of a service robot. At the same time, it detects the connectivity between path points at intervals, removes redundant points in path points, and reduces the robot's stay at unnecessary path points to shorten the total time. the path length. And use the vector dot product and vector cross product to judge the steering and calculate the corner at the way point, so that the robot can adjust the pose autonomously at the way point.

本发明提供了一种服务机器人室内复杂状况路径规划方法,包括如下步骤:The present invention provides a path planning method for indoor complex conditions of a service robot, comprising the following steps:

步骤1,基于用二维数组表示的格栅地图确定起始点和目标点的坐标值,创建并初始化OPEN列表和CLOSE列表,将起始点放置于OPEN列表中;其中,OPEN列表用于存放已经拓展而未考察的路径点,CLOSE列表用于记录已经访问过的路径点;Step 1. Determine the coordinate values of the starting point and the target point based on the grid map represented by a two-dimensional array, create and initialize the OPEN list and the CLOSE list, and place the starting point in the OPEN list; among them, the OPEN list is used to store the expanded For the unexamined waypoints, the CLOSE list is used to record the waypoints that have been visited;

步骤2,检测OPEN列表,判断路径是否搜索成功,若否,进行步骤3;Step 2, detect the OPEN list, and judge whether the path search is successful, if not, go to step 3;

步骤3,采用跳点拓展规则寻找备选路径,以减少无效备选点的拓展,加快路径搜索速度;Step 3, use jump point expansion rules to find alternative paths to reduce the expansion of invalid alternative points and speed up path search;

步骤4,检测路径点间的连通性,对无用路径点进行去除;Step 4, detecting the connectivity between waypoints and removing useless waypoints;

步骤5,基于向量叉积和向量点积为每一个路径点添加转向判断和所需旋转角度的信息。Step 5, based on the vector cross product and the vector dot product, add steering judgment and required rotation angle information to each way point.

进一步地,所述步骤2包括:Further, said step 2 includes:

检测OPEN列表是否为空,若OPEN列表为空,则表示路径搜索失败没有找到可行路径;若OPEN列表不为空,从该列表中选取估价函数值最小的路径点,然后将该路径点从OPEN列表中取出来,放置到CLOSE列表中;Check whether the OPEN list is empty, if the OPEN list is empty, it means that the path search failed and no feasible path was found; if the OPEN list is not empty, select the path point with the smallest evaluation function value from the list, and then select the path point from the OPEN Take it out of the list and put it in the CLOSE list;

查看该路径点是否与目标点的坐标值对应,如果是则表示路径搜索成功,退出,若坐标值不对应,进行步骤3。Check whether the path point corresponds to the coordinate value of the target point, if yes, it means that the path search is successful, exit, if the coordinate value does not correspond, go to step 3.

进一步地,所述估价函数表示为:Further, the evaluation function is expressed as:

f(n)=g(n)+h(n);f(n)=g(n)+h(n);

其中,f(n)是指从初始路径点经过中间路径点n到到达目标点的代价估计,g(n)是在状态空间中从初始点到中间路径点n的实际代价值,h(n)是从中间路径点到达目标点的最佳路径的估计代价值。Among them, f(n) refers to the cost estimate from the initial path point through the intermediate path point n to the target point, g(n) is the actual cost value from the initial point to the intermediate path point n in the state space, h(n ) is the estimated cost of the best path from the intermediate waypoint to the goal point.

进一步地,所述步骤3包括:Further, said step 3 includes:

设定跳点的拓展规则;所述拓展规则为:若y以最小的值k,使得并且满足下列条件之一,则路径点y为来自路径点x在d方向上的跳点:条件①,路径点y是目标点;条件②,当沿直线方向拓展跳点时,y路径点含有被迫邻居;条件③,当沿对角线方向拓展跳点时,存在一个经由y路径点沿直线或者对角线方向拓展得到的跳点z,即跳点z经过y路径点且满足条件②;Set the expansion rule of the jump point; the expansion rule is: if y has the minimum value k, so that And one of the following conditions is met, then the path point y is a jump point from the path point x in the d direction: condition ①, the path point y is the target point; condition ②, when expanding the jump point along the straight line, the path point y contains Forced neighbors; condition ③, when expanding the jump point along the diagonal direction, there is a jump point z obtained by expanding along the straight line or diagonal direction through the y path point, that is, the jump point z passes through the y path point and satisfies the condition ② ;

在拓展的过程,依据跳点的拓展规则将路径点的八个方向对应的备选路径点全部拓展出来,假设备选点用m表示,则计算每一个备选点m的估价函数值,选取备选点中估价函数值最小的路径点为下一子目标点,然后重复步骤二和步骤三,直到找到的路径点时目标点,得到初始路径Pn,否则算法搜索失败。In the process of expansion, according to the expansion rules of jump points, all the alternative path points corresponding to the eight directions of the path point are expanded. Assuming that the equipment selection point is represented by m, the evaluation function value of each alternative point m is calculated, and the selection The path point with the smallest evaluation function value among the candidate points is the next sub-target point, and then repeat steps 2 and 3 until the found path point is the target point, and the initial path P n is obtained, otherwise the algorithm search fails.

进一步地,所述步骤4包括:Further, said step 4 includes:

从起始点开始,对所得的初始路径点集合Pn进行平滑处理,逐一判断当前路径点Pi的前路径点Pi-1和后路径点Pi+1两路径点之间直连情况下是否存在障碍物,若无障碍物存在则将该冗余路径点Pi删除,若存在障碍物则继续对下一路径点判断处理,直至遍历完所有的路径点为止。Starting from the starting point, smooth the obtained initial path point set P n , and judge the direct connection between the previous path point P i-1 and the rear path point P i+1 of the current path point P i one by one Whether there is an obstacle, if there is no obstacle, delete the redundant waypoint P i , if there is an obstacle, continue to judge the next waypoint until all the waypoints are traversed.

进一步地,步骤4中所述判断两路径点之间直连情况下是否存在障碍物的方法包括:Further, the method for judging whether there is an obstacle in the case of direct connection between two path points described in step 4 includes:

输入两个路径点的坐标值及两点之间连线的斜率值k,分三种情况进行处理:Input the coordinate values of two path points and the slope value k of the line between the two points, and process in three cases:

一种是两点之间连线斜率不存在的情况,即该直线垂直于X轴,两路径点的相对位置在同一垂直线上;One is the case where the slope of the line between two points does not exist, that is, the line is perpendicular to the X axis, and the relative positions of the two path points are on the same vertical line;

第二种情况是直线的斜率为零的情况,即直线垂直于Y轴,两路径点的相对位置在同一水平线上;The second case is when the slope of the straight line is zero, that is, the straight line is perpendicular to the Y axis, and the relative positions of the two path points are on the same horizontal line;

第三种情况是当斜率存在且不为零的情况,两路径点相对位置在对角线方向上,首先判断斜率是否大于1,确定检查起始依据方向,其次是根据直线的函数f或逆函数f-1计算对应的另一个坐标值,然后逐步检查各个点,完成是否含有障碍物的判断操作。The third case is when the slope exists and is not zero, and the relative position of the two path points is in the direction of the diagonal line, first judge whether the slope is greater than 1, determine the starting direction of the check, and then use the function f or inverse of the straight line The function f -1 calculates another corresponding coordinate value, and then checks each point step by step to complete the judgment operation of whether there is an obstacle.

进一步地,步骤5中所述转向判断的方法包括:Further, the method for steering judgment described in step 5 includes:

设a=(ax,ay,az),b=(bx,by,bz)则向量积的行列式表达式如下:Suppose a=(a x , a y , a z ), b=(b x , b y , b z ), then the determinant expression of the vector product is as follows:

坐标表达式为:The coordinate expression is:

a×b=(aybz-azbz)i+(azbx-axbz)j+(axby-aybx)k;a×b=(a y b z -a z b z )i+(a z b x -a x b z )j+(a x b y -a y b x )k;

判定规则:Judgment rules:

当a×b>0时,为逆时针方向,即向量b在向量a的左侧;When a×b>0, it is counterclockwise, that is, the vector b is on the left side of the vector a;

当a×b<0时,为顺时针方向,即向量b在向量a的右侧;When a×b<0, it is clockwise, that is, the vector b is on the right side of the vector a;

当a×b=0时,方向不变,即向量b与向量a在同一方向。When a×b=0, the direction does not change, that is, the vector b is in the same direction as the vector a.

进一步地,步骤5中所述旋转角度的计算方法包括:Further, the calculation method of the rotation angle described in step 5 includes:

基于向量夹角计算,得到旋转角度,向量夹角的计算公式为:Based on the vector angle calculation, the rotation angle is obtained. The calculation formula of the vector angle is:

其中,a和b为向量积的两个向量。where a and b are two vectors of the vector product.

与现有技术相比本发明的有益效果是:Compared with prior art, the beneficial effects of the present invention are:

1)本发明中备选路径拓展方式采用跳点搜索策略的方式代替传统的近邻拓展方式,有效的减少了无效备选路径点的拓展,降低了算法对储存性能的要求,而且使得算法对OPEN列表和CLOSE列表的操作次数大大降低,最终达到提升算法寻路速度的目的。1) In the present invention, the alternative path expansion method adopts the method of jumping point search strategy to replace the traditional neighbor expansion mode, which effectively reduces the expansion of invalid alternative path points, reduces the algorithm's requirements for storage performance, and makes the algorithm more sensitive to OPEN The number of operations on the list and the CLOSE list is greatly reduced, and finally achieves the purpose of improving the pathfinding speed of the algorithm.

2)本发明对算法所得的初始路径进行优化处理,通过使用检测间隔路径点间联通性的方式,去除了冗余的路径点,有效的缩短了总的路径长度,在一定程度上平滑了路径,同时也使得机器人的累积转折角度大大减小,减少了机器人在路径点处用于旋转的时间。2) The present invention optimizes the initial path obtained by the algorithm, and removes redundant path points by using the method of detecting connectivity between path points at intervals, effectively shortening the total path length, and smoothing the path to a certain extent , which also greatly reduces the cumulative turning angle of the robot, reducing the time for the robot to rotate at the waypoint.

3)本发明为算法采用向量叉积和向量点积为所得路径中的路径点添加了转向判断和旋转角度等信息,有利于机器人在路径点处自主调整位姿和行动,满足机器人运动的实时性。3) The present invention uses the vector cross product and vector dot product to add information such as steering judgment and rotation angle to the path points in the obtained path for the algorithm, which is conducive to the robot's autonomous adjustment of pose and action at the path point, and satisfies the real-time control of robot motion. sex.

附图说明Description of drawings

图1是本发明检测路径点间的连通性的流程图。FIG. 1 is a flow chart of the present invention for detecting connectivity between waypoints.

具体实施方式Detailed ways

下面结合附图所示的各实施方式对本发明进行详细说明,但应当说明的是,这些实施方式并非对本发明的限制,本领域普通技术人员根据这些实施方式所作的功能、方法、或者结构上的等效变换或替代,均属于本发明的保护范围之内。The present invention will be described in detail below in conjunction with the implementations shown in the drawings, but it should be noted that these implementations are not limitations of the present invention, and those of ordinary skill in the art based on the functions, methods, or structural changes made by these implementations Equivalent transformations or substitutions all fall within the protection scope of the present invention.

本实施例提供了一种服务机器人室内复杂状况路径规划方法,主要分为以下几个步骤:This embodiment provides a path planning method for indoor complex conditions of a service robot, which is mainly divided into the following steps:

一、算法初始化;1. Algorithm initialization;

二、检测OPEN列表;2. Detect the OPEN list;

三、采用跳点搜索策略进行备选路径点的拓展;3. Use the jump point search strategy to expand the alternative path points;

四、检测路径点间的连通性;4. Detect connectivity between waypoints;

五、为路径点添加转角判断和旋转角度的信息。5. Add corner judgment and rotation angle information to the path point.

步骤一中的算法初始化过程如下:The algorithm initialization process in step 1 is as follows:

由于本算法所适用的地图为栅格地图,所以算法的初始化首先需要设定一个可以用二维数组表示的栅格地图,在地图中以“1”和“0”分别表示地图中“不可通行”和“可通行”,然后是确定算法的两个输入,即起始点S和目标点E的坐标值,最后是创建并初始化OPEN列表和CLOSE列表(两个列表可以使用队列设计完成),其中OPEN列表用于存放已经拓展而未考察的路径点,CLOSE列表用于记录已经访问过的路径点。最后将起始点S放置于OPEN列表中。Since the map applicable to this algorithm is a grid map, the initialization of the algorithm first needs to set a grid map that can be represented by a two-dimensional array, and "1" and "0" in the map represent "impassable" in the map, respectively. " and "passable", then determine the two inputs of the algorithm, that is, the coordinate values of the starting point S and the target point E, and finally create and initialize the OPEN list and the CLOSE list (the two lists can be completed using queue design), where The OPEN list is used to store the expanded but unexplored waypoints, and the CLOSE list is used to record the visited waypoints. Finally, place the starting point S in the OPEN list.

步骤二中的检测OPEN列表过程如下:The process of detecting the OPEN list in step 2 is as follows:

检测OPEN列表的主要目是检测OPEN列表是否为空,若OPEN列表为空,则表示路径搜索失败没有找到可行路径;若OPEN列表不为空,从该列表中选取估价函数f(n)值最大小的路径点n,然后将路径点n从OPEN列表中取出来,然后放置到CLOSE列表中。然后查看路径点n是否与目标点E的坐标值对应,如果是则表示路径搜索成功,退出算法,若坐标值不对应,继续进行下一步骤。其中估价函数f(n)表示为:The main purpose of detecting the OPEN list is to detect whether the OPEN list is empty. If the OPEN list is empty, it means that the path search failed and no feasible path was found; if the OPEN list is not empty, select the evaluation function f(n) with the largest value from the list. Small path point n, then take path point n out of the OPEN list, and then place it in the CLOSE list. Then check whether the path point n corresponds to the coordinate value of the target point E. If so, it means that the path search is successful, and exit the algorithm. If the coordinate value does not correspond, proceed to the next step. Where the valuation function f(n) is expressed as:

f(n)=g(n)+h(n);f(n)=g(n)+h(n);

这里的f(n)是指从初始路径点经过中间路径点n到到达目标点的代价估计,g(n)是在状态空间中从初始点到中间路径点n的实际代价值,h(n)是从中间路径点到达目标点的最佳路径的估计代价值。h(n)估价函数值的选取一般有曼哈顿距离、欧式距离和切比雪夫距离等,本发明主要使用的是欧式距离D。Here f(n) refers to the cost estimate from the initial path point through the intermediate path point n to the target point, g(n) is the actual cost value from the initial point to the intermediate path point n in the state space, h(n ) is the estimated cost of the best path from the intermediate waypoint to the goal point. The selection of h(n) evaluation function value generally includes Manhattan distance, Euclidean distance and Chebyshev distance, etc., and the present invention mainly uses Euclidean distance D.

步骤三中的采用跳点搜索策略拓展备选点的过程如下:In Step 3, the process of expanding candidate points by adopting jump-point search strategy is as follows:

以跳点搜索策略主要是使用跳点拓展规则寻找备选路径,这样做的目的是减少无效备选点的拓展以加快路径搜索速度。跳点的拓展规则如下:若y以最小的值k,使得并且满足下列条件之一,则路径点y为来自路径点x在d方向上的跳点:①路径点y是目标点;②当沿直线方向拓展跳点时,y路径点含有被迫邻居;③当沿对角线方向拓展跳点时,会存在一个经由y路径点沿直线或者对角线方向拓展得到的跳点z,即跳点z经过y路径点且满足条件②。在拓展的过程,算法依据跳点的拓展规则将路径点n的八个方向对应的备选路径点全部拓展出来,假设备选点用m表示,则计算每一个备选点m的估价函数值,选取备选点中估价函数值最小的路径点为下一子目标点,然后重复步骤二和步骤三,直到找到的路径点时目标点E,则算法得到初始路径Pn。否则算法搜索失败。The jump point search strategy is mainly to use jump point expansion rules to find alternative paths, the purpose of which is to reduce the expansion of invalid alternative points and speed up the path search. The expansion rule of the jump point is as follows: if y has the smallest value k, so that And if one of the following conditions is met, the path point y is a jump point from the path point x in the d direction: ① path point y is the target point; ② when the jump point is expanded along the straight line, the y path point contains forced neighbors; ③When the jump point is expanded along the diagonal direction, there will be a jump point z expanded along the straight line or diagonal direction through the y path point, that is, the jump point z passes through the y path point and satisfies the condition ②. In the process of expansion, the algorithm expands all the candidate route points corresponding to the eight directions of the route point n according to the expansion rules of the jump point. Assuming that the device selection point is represented by m, the evaluation function value of each candidate point m is calculated. , select the path point with the smallest value of the evaluation function among the candidate points as the next sub-target point, and then repeat steps 2 and 3 until the found path point is the target point E, then the algorithm obtains the initial path P n . Otherwise the algorithm search fails.

步骤四中的检测路径点间的连通性的方法如下:The method for detecting the connectivity between path points in step 4 is as follows:

针对路径中存在冗余路径点,算法采用了检测路径点间联通性的方式对无用路径点进行去除。从起始点S开始,对根据算法所得的初始路径点集合Pn进行平滑处理操作,逐一判断当前路径点Pi的前路径点Pi-1和后路径点Pi+1两路径点之间直连情况下是否存在障碍物,若无障碍物存在则将该冗余路径点Pi删除,若存在障碍物则继续对下一路径点判断处理,直至遍历完所有的路径点为止。具体流程如图1所示。Aiming at the existence of redundant waypoints in the path, the algorithm adopts the method of detecting the connectivity between waypoints to remove useless waypoints. Starting from the starting point S, smooth the initial path point set Pn obtained according to the algorithm, and judge the distance between the two path points of the current path point P i , the former path point P i-1 and the latter path point P i+1 one by one Whether there is an obstacle in the case of direct connection, if there is no obstacle, delete the redundant waypoint P i , if there is an obstacle, continue to judge the next waypoint until all the waypoints are traversed. The specific process is shown in Figure 1.

为了判断路径点之间是否有障碍物存在,应用算法1,要求输入两个路径点的坐标值及两点之间连线的斜率值k,分三种情况处理,一种是两点之间连线斜率不存在的情况,即该直线垂直于X轴,两路径点的相对位置在同一垂直线上;第二种情况是直线的斜率为零的情况,即直线垂直于Y轴,两路径点的相对位置在同一水平线上;第三种情况是当斜率存在且不为零的情况,两路径点相对位置在对角线方向上,需要首先判断斜率是否大于1,因为斜率是否大于1决定着检查起始依据方向,其次是根据直线的函数f或逆函数f-1计算对应的另一个坐标值,然后逐步检查各个点,完成是否含有障碍物的判断操作。In order to judge whether there is an obstacle between the waypoints, apply Algorithm 1, it is required to input the coordinate values of the two waypoints and the slope value k of the line between the two points, and it is divided into three cases, one is between two points The case where the slope of the line does not exist, that is, the line is perpendicular to the X axis, and the relative positions of the two path points are on the same vertical line; the second case is the case where the slope of the line is zero, that is, the line is perpendicular to the Y axis, and the two paths The relative positions of the points are on the same horizontal line; the third case is when the slope exists and is not zero, and the relative position of the two path points is in the diagonal direction, it is necessary to first determine whether the slope is greater than 1, because whether the slope is greater than 1 determines Then check the starting basis direction, and then calculate another corresponding coordinate value according to the function f or the inverse function f -1 of the straight line, and then check each point step by step to complete the judgment operation whether there is an obstacle.

步骤五中的转向判断和转角计算的方法如下:The method of steering judgment and corner calculation in step 5 is as follows:

路径点方向的判定结果为左转、右转或保持原方向中的一个,假设机器人一直保持左转动作则可视为机器人在做逆时旋转,若机器人一直保持右转动作则可视为机器人在做顺时针旋转,即左转右转两个方向的判定可以转化为拐点处顺时针旋转逆时针旋转方向判定的问题。这里本文采用向量的向量积判断两个向量的之间是顺时针关系还是逆时针关系。The judgment result of the direction of the waypoint is one of turning left, turning right, or maintaining the original direction. If the robot keeps turning left, it can be regarded as the robot rotating in reverse time. If the robot keeps turning right, it can be regarded as the robot When doing clockwise rotation, that is, the judgment of turning left and right can be transformed into the problem of judging the direction of clockwise rotation and counterclockwise rotation at the inflection point. Here, this paper uses the vector product of vectors to judge whether the relationship between two vectors is clockwise or counterclockwise.

设a=(ax,ay,az),b=(bx,by,bz)则向量积的行列式表达式如下:Suppose a=(a x , a y , a z ), b=(b x , b y , b z ), then the determinant expression of the vector product is as follows:

坐标表达式为:The coordinate expression is:

a×b=(aybz-azbz)i+(azbx-axbz)j+(axby-aybx)k;a×b=(a y b z -a z b z )i+(a z b x -a x b z )j+(a x b y -a y b x )k;

判定规则:Judgment rules:

当a×b>0时,为逆时针方向,即向量b在向量a的左侧;When a×b>0, it is counterclockwise, that is, the vector b is on the left side of the vector a;

当a×b<0时,为顺时针方向,即向量b在向量a的右侧;When a×b<0, it is clockwise, that is, the vector b is on the right side of the vector a;

当a×b=0时,方向不变,即向量b与向量a在同一方向。When a×b=0, the direction does not change, that is, the vector b is in the same direction as the vector a.

在得到某一路径点处的旋转方向之后就需要计算机器人的旋转角度(0°至180°),旋转角的计算问题也可以转化为向量夹角计算的问题。以计算向量积的a和b两个向量为例,向量夹角的计算公式为:After obtaining the rotation direction at a certain path point, it is necessary to calculate the rotation angle of the robot (0° to 180°), and the calculation problem of the rotation angle can also be transformed into the problem of vector angle calculation. Taking the two vectors a and b for calculating the vector product as an example, the formula for calculating the angle between the vectors is:

本发明具有如下技术效果。The present invention has the following technical effects.

1)本发明中备选路径拓展方式采用跳点搜索策略的方式代替传统的近邻拓展方式,有效的减少了无效备选路径点的拓展,降低了算法对储存性能的要求,而且使得算法对OPEN列表和CLOSE列表的操作次数大大降低,最终达到提升算法寻路速度的目的。1) In the present invention, the alternative path expansion method adopts the method of jumping point search strategy to replace the traditional neighbor expansion mode, which effectively reduces the expansion of invalid alternative path points, reduces the algorithm's requirements for storage performance, and makes the algorithm more sensitive to OPEN The number of operations on the list and the CLOSE list is greatly reduced, and finally achieves the purpose of improving the pathfinding speed of the algorithm.

2)本发明对算法所得的初始路径进行优化处理,通过使用检测间隔路径点间联通性的方式,去除了冗余的路径点,有效的缩短了总的路径长度,在一定程度上平滑了路径,同时也使得机器人的累积转折角度大大减小,减少了机器人在路径点处用于旋转的时间。2) The present invention optimizes the initial path obtained by the algorithm, and removes redundant path points by using the method of detecting connectivity between path points at intervals, effectively shortening the total path length, and smoothing the path to a certain extent , which also greatly reduces the cumulative turning angle of the robot, reducing the time for the robot to rotate at the waypoint.

3)本发明为算法采用向量叉积和向量点积为所得路径中的路径点添加了转向判断和旋转角度等信息,有利于机器人在路径点处自主调整位姿和行动,满足机器人运动的实时性。3) The present invention uses the vector cross product and vector dot product to add information such as steering judgment and rotation angle to the path points in the obtained path for the algorithm, which is conducive to the robot's autonomous adjustment of pose and action at the path point, and satisfies the real-time control of robot motion. sex.

对于本领域技术人员而言,显然本发明不限于上述示范性实施例的细节,而且在不背离本发明的精神或基本特征的情况下,能够以其他的具体形式实现本发明。因此,无论从哪一点来看,均应将实施例看作是示范性的,而且是非限制性的,本发明的范围由所附权利要求而不是上述说明限定,因此旨在将落在权利要求的等同要件的含义和范围内的所有变化囊括在本发明内。It will be apparent to those skilled in the art that the invention is not limited to the details of the above-described exemplary embodiments, but that the invention can be embodied in other specific forms without departing from the spirit or essential characteristics of the invention. Accordingly, the embodiments should be regarded in all points of view as exemplary and not restrictive, the scope of the invention being defined by the appended claims rather than the foregoing description, and it is therefore intended that the scope of the invention be defined by the appended claims rather than by the foregoing description. All changes within the meaning and range of equivalents of the elements are embraced in the present invention.

Claims (8)

1.一种服务机器人室内复杂状况路径规划方法,其特征在于,包括如下步骤:1. A path planning method for indoor complex conditions of a service robot, characterized in that, comprising the steps of: 步骤1,基于用二维数组表示的格栅地图确定起始点和目标点的坐标值,创建并初始化OPEN列表和CLOSE列表,将起始点放置于OPEN列表中;其中,OPEN列表用于存放已经拓展而未考察的路径点,CLOSE列表用于记录已经访问过的路径点;Step 1. Determine the coordinate values of the starting point and the target point based on the grid map represented by a two-dimensional array, create and initialize the OPEN list and the CLOSE list, and place the starting point in the OPEN list; among them, the OPEN list is used to store the expanded For the unexamined waypoints, the CLOSE list is used to record the waypoints that have been visited; 步骤2,检测OPEN列表,判断路径是否搜索成功,若否,进行步骤3;Step 2, detect the OPEN list, and judge whether the path search is successful, if not, go to step 3; 步骤3,采用跳点拓展规则寻找备选路径,以减少无效备选点的拓展,加快路径搜索速度;Step 3, use jump point expansion rules to find alternative paths to reduce the expansion of invalid alternative points and speed up path search; 步骤4,检测路径点间的连通性,对无用路径点进行去除;Step 4, detecting the connectivity between waypoints and removing useless waypoints; 步骤5,基于向量叉积和向量点积为每一个路径点添加转向判断和所需旋转角度的信息。Step 5, based on the vector cross product and the vector dot product, add steering judgment and required rotation angle information to each way point. 2.根据权利要求1所述的服务机器人室内复杂状况路径规划方法,其特征在于,所述步骤2包括:2. The indoor complex path planning method for service robots according to claim 1, wherein the step 2 comprises: 检测OPEN列表是否为空,若OPEN列表为空,则表示路径搜索失败没有找到可行路径;若OPEN列表不为空,从该列表中选取估价函数值最小的路径点,然后将该路径点从OPEN列表中取出来,放置到CLOSE列表中;Check whether the OPEN list is empty, if the OPEN list is empty, it means that the path search failed and no feasible path was found; if the OPEN list is not empty, select the path point with the smallest evaluation function value from the list, and then select the path point from the OPEN Take it out of the list and put it in the CLOSE list; 查看该路径点是否与目标点的坐标值对应,如果是则表示路径搜索成功,退出,若坐标值不对应,进行步骤3。Check whether the path point corresponds to the coordinate value of the target point, if yes, it means that the path search is successful, exit, if the coordinate value does not correspond, go to step 3. 3.根据权利要求2所述的服务机器人室内复杂状况路径规划方法,其特征在于,所述估价函数表示为:3. The indoor complex path planning method for service robots according to claim 2, wherein the evaluation function is expressed as: f(n)=g(n)+h(n);f(n)=g(n)+h(n); 其中,f(n)是指从初始路径点经过中间路径点n到到达目标点的代价估计,g(n)是在状态空间中从初始点到中间路径点n的实际代价值,h(n)是从中间路径点到达目标点的最佳路径的估计代价值。Among them, f(n) refers to the cost estimate from the initial path point through the intermediate path point n to the target point, g(n) is the actual cost value from the initial point to the intermediate path point n in the state space, h(n ) is the estimated cost of the best path from the intermediate waypoint to the goal point. 4.根据权利要求3所述的服务机器人室内复杂状况路径规划方法,其特征在于,所述步骤3包括:4. The indoor complex path planning method for service robots according to claim 3, wherein the step 3 comprises: 设定跳点的拓展规则;所述拓展规则为:若y以最小的值k,使得并且满足下列条件之一,则路径点y为来自路径点x在d方向上的跳点:条件①,路径点y是目标点;条件②,当沿直线方向拓展跳点时,y路径点含有被迫邻居;条件③,当沿对角线方向拓展跳点时,存在一个经由y路径点沿直线或者对角线方向拓展得到的跳点z,即跳点z经过y路径点且满足条件②;Set the expansion rule of the jump point; the expansion rule is: if y has the minimum value k, so that And one of the following conditions is met, then the path point y is a jump point from the path point x in the d direction: condition ①, the path point y is the target point; condition ②, when expanding the jump point along the straight line, the path point y contains Forced neighbors; condition ③, when expanding the jump point along the diagonal direction, there is a jump point z obtained by expanding along the straight line or diagonal direction through the y path point, that is, the jump point z passes through the y path point and satisfies the condition ② ; 在拓展的过程,依据跳点的拓展规则将路径点的八个方向对应的备选路径点全部拓展出来,假设备选点用m表示,则计算每一个备选点m的估价函数值,选取备选点中估价函数值最小的路径点为下一子目标点,然后重复步骤二和步骤三,直到找到的路径点时目标点,得到初始路径Pn,否则算法搜索失败。In the process of expansion, according to the expansion rules of jump points, all the alternative path points corresponding to the eight directions of the path point are expanded. Assuming that the equipment selection point is represented by m, the evaluation function value of each alternative point m is calculated, and the selection The path point with the smallest evaluation function value among the candidate points is the next sub-target point, and then repeat steps 2 and 3 until the found path point is the target point, and the initial path P n is obtained, otherwise the algorithm search fails. 5.根据权利要求4所述的服务机器人室内复杂状况路径规划方法,其特征在于,所述步骤4包括:5. The indoor path planning method for service robots in complex conditions according to claim 4, wherein said step 4 comprises: 从起始点开始,对所得的初始路径点集合Pn进行平滑处理,逐一判断当前路径点Pi的前路径点Pi-1和后路径点Pi+1两路径点之间直连情况下是否存在障碍物,若无障碍物存在则将该冗余路径点Pi删除,若存在障碍物则继续对下一路径点判断处理,直至遍历完所有的路径点为止。Starting from the starting point, smooth the obtained initial path point set P n , and judge the direct connection between the previous path point P i-1 and the rear path point P i+1 of the current path point P i one by one Whether there is an obstacle, if there is no obstacle, delete the redundant waypoint P i , if there is an obstacle, continue to judge the next waypoint until all the waypoints are traversed. 6.根据权利要求5所述的服务机器人室内复杂状况路径规划方法,其特征在于,步骤4中所述判断两路径点之间直连情况下是否存在障碍物的方法包括:6. The indoor complex path planning method for service robots according to claim 5, wherein the method for judging whether there is an obstacle in the case of direct connection between two path points described in step 4 comprises: 输入两个路径点的坐标值及两点之间连线的斜率值k,分三种情况进行处理:Input the coordinate values of two path points and the slope value k of the line between the two points, and process in three cases: 一种是两点之间连线斜率不存在的情况,即该直线垂直于X轴,两路径点的相对位置在同一垂直线上;One is the case where the slope of the line between two points does not exist, that is, the line is perpendicular to the X axis, and the relative positions of the two path points are on the same vertical line; 第二种情况是直线的斜率为零的情况,即直线垂直于Y轴,两路径点的相对位置在同一水平线上;The second case is when the slope of the straight line is zero, that is, the straight line is perpendicular to the Y axis, and the relative positions of the two path points are on the same horizontal line; 第三种情况是当斜率存在且不为零的情况,两路径点相对位置在对角线方向上,首先判断斜率是否大于1,确定检查起始依据方向,其次是根据直线的函数f或逆函数f-1计算对应的另一个坐标值,然后逐步检查各个点,完成是否含有障碍物的判断操作。The third case is when the slope exists and is not zero, and the relative position of the two path points is in the direction of the diagonal line, first judge whether the slope is greater than 1, determine the starting direction of the check, and then use the function f or inverse of the straight line The function f -1 calculates another corresponding coordinate value, and then checks each point step by step to complete the judgment operation of whether there is an obstacle. 7.根据权利要求6所述的服务机器人室内复杂状况路径规划方法,其特征在于,步骤5中所述转向判断的方法包括:7. The indoor complex path planning method for service robots according to claim 6, characterized in that the method of steering judgment in step 5 comprises: 设a=(ax,ay,az),b=(bx,by,bz)则向量积的行列式表达式如下:Suppose a=(a x , a y , a z ), b=(b x , b y , b z ), then the determinant expression of the vector product is as follows: 坐标表达式为:The coordinate expression is: a×b=(aybz-azbz)i+(azbx-axbz)j+(axby-aybx)k;a×b=(a y b z -a z b z )i+(a z b x -a x b z )j+(a x b y -a y b x )k; 判定规则:Judgment rules: 当a×b>0时,为逆时针方向,即向量b在向量a的左侧;When a×b>0, it is counterclockwise, that is, the vector b is on the left side of the vector a; 当a×b<0时,为顺时针方向,即向量b在向量a的右侧;When a×b<0, it is clockwise, that is, the vector b is on the right side of the vector a; 当a×b=0时,方向不变,即向量b与向量a在同一方向。When a×b=0, the direction does not change, that is, the vector b is in the same direction as the vector a. 8.根据权利要求7所述的服务机器人室内复杂状况路径规划方法,其特征在于,步骤5中所述旋转角度的计算方法包括:8. The indoor complex path planning method for service robots according to claim 7, wherein the method for calculating the rotation angle in step 5 comprises: 基于向量夹角计算,得到旋转角度,向量夹角的计算公式为:Based on the vector angle calculation, the rotation angle is obtained. The calculation formula of the vector angle is: 其中,a和b为向量积的两个向量。where a and b are two vectors of the vector product.
CN201910612272.XA 2019-07-09 2019-07-09 A path planning method for indoor complex conditions of a service robot Withdrawn CN110319837A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910612272.XA CN110319837A (en) 2019-07-09 2019-07-09 A path planning method for indoor complex conditions of a service robot

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910612272.XA CN110319837A (en) 2019-07-09 2019-07-09 A path planning method for indoor complex conditions of a service robot

Publications (1)

Publication Number Publication Date
CN110319837A true CN110319837A (en) 2019-10-11

Family

ID=68121636

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910612272.XA Withdrawn CN110319837A (en) 2019-07-09 2019-07-09 A path planning method for indoor complex conditions of a service robot

Country Status (1)

Country Link
CN (1) CN110319837A (en)

Cited By (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110967015A (en) * 2019-11-20 2020-04-07 中国人民解放军国防科技大学 A path planning method and system
CN110975288A (en) * 2019-11-20 2020-04-10 中国人民解放军国防科技大学 Geometric container data compression method and system based on jumping point path search
CN111412920A (en) * 2020-04-08 2020-07-14 广东博智林机器人有限公司 Method and device for processing mobile equipment towards turning path
CN112068551A (en) * 2020-08-17 2020-12-11 盐城工学院 Autonomous Navigation and Path Planning Method of Wire-controlled Chassis Based on RTB
CN112129298A (en) * 2020-09-28 2020-12-25 广州极飞科技有限公司 Method, device and equipment for determining unmanned aerial vehicle air route and storage medium
CN112229419A (en) * 2020-09-30 2021-01-15 隶元科技发展(山东)有限公司 Dynamic path planning navigation method and system
CN112697161A (en) * 2020-12-15 2021-04-23 上海电机学院 AGV path planning method, storage medium and terminal
CN112947475A (en) * 2021-03-22 2021-06-11 山东大学 Laser navigation forklift type AGV vehicle-mounted system and method
CN113124849A (en) * 2019-12-30 2021-07-16 广东博智林机器人有限公司 Indoor path planning method and device, electronic equipment and storage medium
CN113607181A (en) * 2021-08-05 2021-11-05 国网上海市电力公司 Optimization method of jumping point search algorithm
CN114199266A (en) * 2021-11-25 2022-03-18 江苏集萃智能制造技术研究所有限公司 Path planning method for occupied target based on diagnosis guide service robot
CN115145284A (en) * 2022-07-28 2022-10-04 南京信息工程大学 A path planning method for hole inspection robot in blasting environment
CN115597621A (en) * 2022-11-08 2023-01-13 广东嘉腾机器人自动化有限公司(Cn) AGV path optimization and efficiency improvement path generation method

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107990903A (en) * 2017-12-29 2018-05-04 东南大学 A kind of indoor AGV paths planning methods based on improvement A* algorithms

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107990903A (en) * 2017-12-29 2018-05-04 东南大学 A kind of indoor AGV paths planning methods based on improvement A* algorithms

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
LI MA 等: "An Improved Jump Point Search Algorithm for Home Service Robot Path Planning", 《第31届中国控制与决策会议论文集(2)》 *
高翔: "家庭助老服务机器人研究与设计", 《中国优秀硕士学位论文全文数据库 信息科技辑》 *

Cited By (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110975288A (en) * 2019-11-20 2020-04-10 中国人民解放军国防科技大学 Geometric container data compression method and system based on jumping point path search
CN110967015A (en) * 2019-11-20 2020-04-07 中国人民解放军国防科技大学 A path planning method and system
CN110975288B (en) * 2019-11-20 2023-08-29 中国人民解放军国防科技大学 Geometric container data compression method and system based on jump point path search
CN113124849A (en) * 2019-12-30 2021-07-16 广东博智林机器人有限公司 Indoor path planning method and device, electronic equipment and storage medium
CN113124849B (en) * 2019-12-30 2023-11-14 广东博智林机器人有限公司 Indoor path planning method and device, electronic equipment and storage medium
CN111412920A (en) * 2020-04-08 2020-07-14 广东博智林机器人有限公司 Method and device for processing mobile equipment towards turning path
CN112068551A (en) * 2020-08-17 2020-12-11 盐城工学院 Autonomous Navigation and Path Planning Method of Wire-controlled Chassis Based on RTB
CN112068551B (en) * 2020-08-17 2023-01-20 盐城工学院 RTB-based autonomous navigation and path planning method for drive-by-wire chassis
CN112129298A (en) * 2020-09-28 2020-12-25 广州极飞科技有限公司 Method, device and equipment for determining unmanned aerial vehicle air route and storage medium
CN112229419B (en) * 2020-09-30 2023-02-17 隶元科技发展(山东)有限公司 Dynamic path planning navigation method and system
CN112229419A (en) * 2020-09-30 2021-01-15 隶元科技发展(山东)有限公司 Dynamic path planning navigation method and system
CN112697161A (en) * 2020-12-15 2021-04-23 上海电机学院 AGV path planning method, storage medium and terminal
CN112947475A (en) * 2021-03-22 2021-06-11 山东大学 Laser navigation forklift type AGV vehicle-mounted system and method
CN113607181A (en) * 2021-08-05 2021-11-05 国网上海市电力公司 Optimization method of jumping point search algorithm
CN114199266A (en) * 2021-11-25 2022-03-18 江苏集萃智能制造技术研究所有限公司 Path planning method for occupied target based on diagnosis guide service robot
CN115145284A (en) * 2022-07-28 2022-10-04 南京信息工程大学 A path planning method for hole inspection robot in blasting environment
CN115145284B (en) * 2022-07-28 2024-11-26 南京信息工程大学 A path planning method for hole inspection robot in blasting environment
CN115597621A (en) * 2022-11-08 2023-01-13 广东嘉腾机器人自动化有限公司(Cn) AGV path optimization and efficiency improvement path generation method

Similar Documents

Publication Publication Date Title
CN110319837A (en) A path planning method for indoor complex conditions of a service robot
CN111504325B (en) Global path planning method based on weighted A-algorithm of enlarged search neighborhood
CN111780777B (en) A Path Planning Method for Unmanned Vehicles Based on Improved A* Algorithm and Deep Reinforcement Learning
CN110231824B (en) Intelligent agent path planning method based on straight line deviation method
CN113341991B (en) Path optimization method based on dynamic window and redundant node filtering
WO2023155371A1 (en) Stable movement global path planning method for indoor mobile robot
CN111174798A (en) A path planning method for a footed robot
CN107631734A (en) A kind of dynamic smoothing paths planning method based on D*_lite algorithms
CN110887484A (en) Mobile robot path planning method based on improved genetic algorithm and storage medium
CN113485369A (en) Indoor mobile robot path planning and path optimization method for improving A-x algorithm
CN112859866A (en) Robot rolling path planning method, system, storage medium, equipment and application
CN112197778A (en) Wheeled airport border-patrol robot path planning method based on improved A-x algorithm
CN114705196B (en) An adaptive heuristic global path planning method and system for robots
CN113485367B (en) A path planning method for multifunctional stage mobile robots
CN108827311A (en) A kind of manufacturing shop unmanned handling system paths planning method
CN116592897B (en) Improved ORB-SLAM2 positioning method based on pose uncertainty
CN114428499A (en) Astar and DWA algorithm fused mobile trolley path planning method
CN117451068A (en) A hybrid path planning method based on improved A* algorithm and dynamic window method
CN115167398A (en) Unmanned ship path planning method based on improved A star algorithm
CN114596360A (en) Double-stage active instant positioning and graph building algorithm based on graph topology
CN115903816A (en) A path planning method for low-energy mobile robots
CN114326726A (en) A Formation Path Planning Control Method Based on A* and Improved Artificial Potential Field Method
CN115056222A (en) Mechanical arm path planning method based on improved RRT algorithm
Ma et al. An improved jump point search algorithm for home service robot path planning
CN114353814B (en) Improved JPS path optimization method based on Angle-Propagation Theta* algorithm

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
WW01 Invention patent application withdrawn after publication

Application publication date: 20191011

WW01 Invention patent application withdrawn after publication