CN105716613A - Method for planning shortest path in robot obstacle avoidance - Google Patents

Method for planning shortest path in robot obstacle avoidance Download PDF

Info

Publication number
CN105716613A
CN105716613A CN201610213569.5A CN201610213569A CN105716613A CN 105716613 A CN105716613 A CN 105716613A CN 201610213569 A CN201610213569 A CN 201610213569A CN 105716613 A CN105716613 A CN 105716613A
Authority
CN
China
Prior art keywords
grid
map
algorithm
shortest path
cost
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
Application number
CN201610213569.5A
Other languages
Chinese (zh)
Other versions
CN105716613B (en
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.)
Qingdao Evolver Xiaopang Robot Technology Co ltd
Original Assignee
Beijing Science And Technology Ltd Of Evolution Person Robot
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 Beijing Science And Technology Ltd Of Evolution Person Robot filed Critical Beijing Science And Technology Ltd Of Evolution Person Robot
Priority to CN201610213569.5A priority Critical patent/CN105716613B/en
Publication of CN105716613A publication Critical patent/CN105716613A/en
Priority to PCT/CN2017/079488 priority patent/WO2017173990A1/en
Application granted granted Critical
Publication of CN105716613B publication Critical patent/CN105716613B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

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/26Navigation; Navigational instruments not provided for in groups G01C1/00 - G01C19/00 specially adapted for navigation in a road network
    • G01C21/34Route searching; Route guidance
    • 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

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)
  • Feedback Control In General (AREA)
  • Manipulator (AREA)

Abstract

The invention relates to a method for planning the shortest path in robot obstacle avoidance. The method comprises steps as follows: a probability grid map is acquired through convolution operation; an original A*algorithm is improved, and a cost function of the improved A*algorithm is obtained; on the basis of the probability grid map, the improved A*algorithm is adopted for shortest path searching from the starting point to the end point. The probability grid map is obtained through improvement of the original grid map, and the shortest path searching is performed in the improved A*algorithm on the basis of the probability grid map. According to a path planned with the method, a robot can avoid an obstacle for a certain distance and can more safely and reliably move.

Description

A kind of shortest path planning method in robot obstacle-avoiding
Technical field
The invention belongs to robot obstacle-avoiding technical field, be specifically related to the shortest path planning method in a kind of robot obstacle-avoiding.
Background technology
Robot obstacle-avoiding route planning refers to when given Environment Obstacles, selects a path from starting point to impact point, makes robot can pass through all of obstacle safely, without collision.The method of this independently avoiding barrier the task that fulfils assignment, is an important content in robot research and application.At present, in order to be quickly found an optimum from starting point to impact point or shortest path, researcheres have been developed over much different algorithms, for instance A* algorithm, dijkstra's algorithm, genetic algorithm, particle cluster algorithm and Artificial Potential Field Method etc..
Compared with A* algorithm, all there is the shortcomings such as data are complicated, computationally intensive in dijkstra's algorithm, genetic algorithm and particle cluster algorithm.A* algorithm is the best-first search algorithm having added constraints on dijkstra's algorithm basis, add the enlightening information relevant with problem in the search, guidance search carries out towards most promising direction, for the shortest path in search condition space, this is rapider in theory than direction-free dijkstra's algorithm.But, adopt the optimal path that A* algorithmic rule goes out often adjacent with barrier, and between robot, lack buffer zone.People are more desirable to slightly increase path and make robot avoid peripheral obstacle, make robot move more safely and reliably.
Artificial Potential Field Method is few in number robot obstacle-avoiding route planning method considering safety problem.Adopt the path that Artificial Potential Field Method is planned out to be usually smoother and safe, but this method exists local optimum, problem local convergence namely easily occur;And when two Obstacle Positions relatively time, according to Artificial Potential Field Method rule, passage between them is intransitable, thus now utilize Artificial Potential Field Method carry out path planning or excessively closely cause planning failure due to barrier, will go the long way round along barrier periphery, cause that the path planning out is long.Additionally, adopt the path that Artificial Potential Field Method is planned out mostly to be irregular curve, do not meet the motor habit of robot.
Summary of the invention
In order to solve the problems referred to above that prior art exists, the invention provides the shortest path planning method in a kind of robot obstacle-avoiding.
For achieving the above object, the present invention takes techniques below scheme: the shortest path planning method in a kind of robot obstacle-avoiding, and it comprises the following steps:
Convolution algorithm is adopted to obtain Probabilistic Cell map;
Original A* algorithm is improved, and the cost function of the A* algorithm after being improved is:
F (n)=k1*g(n)+k2*h(n)+k3* k (n),
In formula, g (n) represents from the actual cost starting point S to node n, represents the preferential trend of search range;H (n) represents the estimate cost from the optimal path node n to impact point D, contains the heuristic information in search;K (n) represents the probit that in Probabilistic Cell map, grid is corresponding;K1For the weight that cost g (n) is corresponding, k2For the weight that cost h (n) is corresponding, k3For the weight that probit k (n) is corresponding, wherein 0 < ki< 1 (i=1,2,3);
On the basis of Probabilistic Cell map, the A* algorithm after improving is adopted to carry out the Shortest Path Searching from origin-to-destination.
Further, the process of described employing convolution algorithm acquisition Probabilistic Cell map is:
(1) two-dimensional array definition grating map is utilized, comprising:
Lattice types in self-defined grating map is: FREE, OBSTACLE, START, END and PROBABILITY;FREE represents and represents entirely without barrier, and OBSTACLE represents and determines there is barrier, and START represents starting point, and END represents terminal;PROBABILITY represents that barrier there is a possibility that size from high to low, and the more big expression barrier of the value of PROBABILITY there is a possibility that more big;
The data type of self-defined two-dimensional array is as follows:
Wherein, s_x and s_y represents certain grid coordinate in map, and s_g and s_h represents two cost distances in A* algorithmic rule, and s_style represents lattice types;StructAStarNode*s_parent defines a same kind of pointer;Ints_is_in_closetable and ints_is_in_opentable represents whether some grid had stepped through in search procedure, if had stepped through, then and s_is_in_closetable=1, s_is_in_opentable=0;Otherwise, s_is_in_closetable=0, s_is_in_opentable=1;
Data type according to self-defining two-dimensional array, is expressed as two-dimensional array:
AStarNodemap_maze [ROW] [COLUMN];
(2) grating map being done convolution algorithm, obtain Probabilistic Cell map, its detailed process is:
Carrying out grid randomization for non-edge part in grating map, its detailed process is:
Select a line number and columns to be weight matrix that m and m is odd number is as convolution kernel, and convolution kernel is expressed as:
R = R 11 R 12 ... R 1 m R 21 R 22 ... R 2 m . . . R m 1 R m 2 ... R m m ,
In original grating map, one line number of corresponding selection and columns are the matrix G that m and m is odd number:
G = G 11 G 12 ... G 1 m G 21 G 22 ... G 2 m . . . G m 1 G m 2 ... G m m ,
Then the probit of the center grates of Probabilistic Cell map is:
R m + 1 2 m + 1 2 * = R 11 G 11 + R 12 G 12 + ... + R m + 1 2 m + 1 2 G m + 1 2 m + 1 2 + ... + R m m G m m ;
Carrying out grid randomization for marginal portion in grating map, its detailed process is:
First, original grating map is done expansion process, namely outwards expand in the surrounding of original grating mapCircle;
Secondly, the method identical with non-edge part grid randomization in grating map is adopted to obtain the probit of each grid in the boundary member of original grating map.
Further, the process that the described A* algorithm adopted after improving carries out the Shortest Path Searching from origin-to-destination is:
Probabilistic Cell map specifies the searching position in upper and lower, left and right, upper left, lower-left, eight directions of upper right and bottom right, the searching position in each direction is all used to the cost function calculation cost value of the A* algorithm after improvement, the position corresponding to minimum cost value is decided to be the position of subsequent time;
For the Probabilistic Cell map of a m*m, around its center grates z, there are 8 adjacent grids;These 8 adjacent grids are divided into two classes, and a class is horizontally or vertically grid, and a class is diagonal angle grid;8 adjacent grids around center grates z are found the grid b that between and center grates, distance value is minimum, center grates z is labeled as the grid passed by, draw from the path center grates z to next grid b, then using grid b as father node, repeat said process;
Carry out next time raster search time, first determine whether the father node of current grid to current grid distance with last time grid father node to last time grid distance sum whether less than last time grid father node to the distance of current grid, if, then using last time grid father node to last time grid to current grid as shortest path, otherwise need again to plan shortest path;The father node of current grid is grid last time.
Owing to adopting above technical scheme, the invention have the benefit that original grating map is improved by the present invention and obtain Probabilistic Cell map, and on the basis of Probabilistic Cell map, the A* algorithm improved is adopted to carry out Shortest Path Searching, adopt the path that present invention planning obtains can make robot avoiding obstacles certain distance, make robot move more safely and reliably.
Accompanying drawing explanation
Fig. 1 is the flow chart of the shortest path planning method in the robot obstacle-avoiding provided in one embodiment of the invention;
Fig. 2 is the schematic diagram of convolution kernel in grating map;
Fig. 3 is starting point S, node n, relative position relation schematic diagram between impact point D and barrier;
Fig. 4 is center grates z and relative position relation schematic diagram between grid about;
Fig. 5 is the relative position relation schematic diagram between center grates z and barrier;
Fig. 6 is the robot path schematic diagram that the A* algorithmic rule after adopting original A* algorithm and improving obtains;In, figure (a) is the robot path schematic diagram adopting original A* algorithmic rule to obtain;Figure (b) is the robot path schematic diagram adopting the A* algorithmic rule after improving to obtain.
Detailed description of the invention
Below in conjunction with drawings and Examples, technical scheme is described in detail.
As it is shown in figure 1, the shortest path planning method that the invention provides in a kind of robot obstacle-avoiding, it comprises the following steps:
1) adopting convolution algorithm to obtain Probabilistic Cell map, its detailed process is:
(1) two-dimensional array definition grating map is utilized, comprising:
Lattice types in self-defined grating map is: FREE, OBSTACLE, START, END and PROBABILITY.Wherein, FREE represents and represents entirely without barrier, and OBSTACLE represents and determines there is barrier, and START represents starting point, and END represents terminal;PROBABILITY represents that barrier there is a possibility that size from high to low, and the more big expression barrier of the value of PROBABILITY there is a possibility that more big.
The data type of self-defined two-dimensional array is as follows:
Wherein, s_x and s_y represents certain grid coordinate in map, and s_g and s_h represents two cost distances in A* algorithmic rule, and s_style represents lattice types.StructAStarNode*s_parent defines a same kind of pointer, such that it is able to one chained list of definition represents the node to store, facilitates calculator memory to manage.Ints_is_in_closetable and ints_is_in_opentable represents whether some grid had stepped through in search procedure, if had stepped through, then and s_is_in_closetable=1, s_is_in_opentable=0;Otherwise, s_is_in_closetable=0, s_is_in_opentable=1.
Data type according to self-defining two-dimensional array, is expressed as two-dimensional array:
AStarNodemap_maze[ROW][COLUMN]。
(2) grating map being done convolution algorithm, obtain Probabilistic Cell map, its detailed process is:
Carrying out grid randomization for non-edge part in grating map, its detailed process is:
Select a line number and columns to be weight matrix that m and m is odd number is as convolution kernel, and convolution kernel is expressed as:
R = R 11 R 12 ... R 1 m R 21 R 22 ... R 2 m . . . R m 1 R m 2 ... R m m ,
In original grating map, one line number of corresponding selection and columns are the matrix G that m and m is odd number:
G = G 11 G 12 ... G 1 m G 21 G 22 ... G 2 m . . . G m 1 G m 2 ... G m m ,
Then the probit of the center grates of Probabilistic Cell map is:
R m + 1 2 m + 1 2 * = R 11 G 11 + R 12 G 12 + ... + R m + 1 2 m + 1 2 G m + 1 2 m + 1 2 + ... + R m m G m m .
Such as, as in figure 2 it is shown, select a line number and columns to be the weight matrix of m=3 as convolution kernel, convolution kernel is expressed as:
R = R 1 R 2 R 3 R 4 R 5 R 6 R 7 R 8 R 9 ,
In original grating map, one line number of corresponding selection and columns are the matrix G of m=3:
G = G 1 G 2 G 3 G 4 G 5 G 6 G 7 G 8 G 9 ,
Then the probit of the center grates of Probabilistic Cell map is:
R 5 * = R 1 G 1 + R 2 G 2 + R 3 G 3 + R 4 G 4 + R 5 G 5 + R 6 G 6 + R 7 G 7 + R 8 G 8 + R 9 G 9 .
Carrying out grid randomization for marginal portion in grating map, its detailed process is:
First, original grating map is done expansion process, namely in each outside expansion of the surrounding of original grating mapCircle.Such as, the line number of original grating map is 90, and columns is 100, i.e. 90X100, then the line number of the grating map after expanding is 92, and columns is 102, i.e. 92X102.
Secondly, the method identical with non-edge part grid randomization in grating map is adopted to obtain the probit of each grid in the boundary member of original grating map.
By the above-mentioned convolution algorithm to initial map, in grating map, the value of each grid is become PROBABILITY (including FREE and OBSTACLE) from original two values of FREE or OBSTACLE, in Probabilistic Cell map, the value of each grid can not only represent that certain grid is either with or without barrier, can also represent that this grid exists the probability of barrier, the value of grid is more big, represents that this grid exists the probability of barrier more big.
2) original A* algorithm being improved, the cost function of the A* algorithm after being improved is:
F (n)=k1*g(n)+k2*h(n)+k3* k (n),
In formula, as it is shown on figure 3, g (n) represents from the actual cost starting point S to node n, represent the preferential trend of search range.H (n) represents the estimate cost from the optimal path node n to impact point D, contains the heuristic information in search.K (n) represents the probit that in Probabilistic Cell map, grid is corresponding.K1For the weight that cost g (n) is corresponding, k2For the weight that cost h (n) is corresponding, k3For the weight that probit k (n) is corresponding, wherein 0 < ki< 1 (i=1,2,3).
Regulate k simultaneously1、k2And k3Three weights can the robot path cooked up of significantly more efficient adjustment.For example, it is possible to whether the path controlling as required to cook up is that distance is the shortest, if keep certain distance with barrier, make robot safer.Whether the path that wherein g (n) and two cost value major decisions of h (n) are planned is the shortest, and whether the robot path that k (n) major decision is planned keeps certain distance with barrier.Therefore, if expecting shortest path, regulate k1And k2Value, make k1And k2All slightly larger than k3;If expecting from barrier path farther out, regulate k1And k2Value, make k1And k2All it is slightly less than k3
3) on the basis of Probabilistic Cell map, the A* algorithm after improving is adopted to carry out the Shortest Path Searching from origin-to-destination.
A* algorithm after improvement is based on the searching algorithm of grating map, after grating map is transformed into Probabilistic Cell map, the kind of each grid just comprise starting point, terminal, entirely without barrier zone, determine barrier region and doubtful barrier region.
Probabilistic Cell map specifies the searching position in upper and lower, left and right, upper left, lower-left, eight directions of upper right and bottom right, the searching position in each direction is all used to the cost function calculation cost value of the A* algorithm after improvement, the position corresponding to minimum cost value is decided to be the position of subsequent time.
In search procedure, for the Probabilistic Cell map of a m*m, around its center grates z, there are 8 adjacent grids.These 8 adjacent grids are divided into two classes, and a class is horizontally or vertically grid, and a class is diagonal angle grid.8 adjacent grids around center grates z are found the grid b that between and center grates, distance value is minimum, center grates z is labeled as the grid passed by, draw from the path center grates z to next grid b, then using grid b as father node, repeat said process.
Carry out next time raster search time, first determine whether the father node (i.e. grid last time) of current grid to current grid distance with last time grid father node to last time grid distance sum whether less than last time grid father node to the distance of current grid, if, then using last time grid father node to last time grid to current grid as shortest path, otherwise need again to plan shortest path.
Below above description is illustrated.
As shown in Figure 4, in search procedure, having 8 adjacent grids around grid z, 8 adjacent grids are divided into two big classes, and one type is horizontally or vertically grid, and current grid is 10 to the distance of grid horizontal or vertical with it;Another kind of for diagonal angle grid, current grid is 14 to the distance of its diagonal angle grid.8 adjacent grids around grid z are found a grid that distance value is the shortest with it, for instance grid 1.Then, grid z is labeled as the grid passed by, draws the path from grid z to next grid 1, then with grid 1 for father node, repeat this process.
As shown in Figure 5, search is started from grid z, black part is divided into barrier, in first time search procedure, the cost value of grid 1 is minimum, but during second time search, the right side of grid 1 is barrier, it is impossible to passes through, upwardly or downwardly can only move from grid 1, such as select be moved downwardly to grid 8, now from the grid z cost value arriving grid 8 through grid 1 be 10+10=20.And directly from grid z to grid, the cost value of 8 is 14.Obviously, 14 < 20, therefore, from grid z to grid, 1 is not shortest path to the path of grid 8 again, it is necessary to again plan shortest path.
Although original A* algorithm ensure that and searches global optimum path, this also finds the result that shortest path is desired just in robot field during path planning, it is contemplated that robot wants avoidance in motor process, and the car body of robot own has one fixed width, often it is faced with situation about colliding with barrier when robot walks along shortest path.Additionally, when robot is by slype, people are often desirable to robot and can walk along the road in the middle of passage, but the path of physical planning is likely to move closely along the wall of certain side, and this often brings unpredictable danger.
As shown in Figure 6, wherein, figure a is the robot path schematic diagram adopting original A* algorithmic rule to obtain, it can be seen that the path cooked up is all along barrier from figure a.Figure b is the robot path schematic diagram adopting the A* algorithmic rule after improving to obtain, can be seen that from figure b adopts the robot path that the A* algorithmic rule after improving obtains to avoid path all along this problem of barrier, to robot kinematics leaves certain safe distance, make robot motion safer.
The present invention is not limited to above-mentioned preferred forms; those skilled in the art can draw other various forms of products under the enlightenment of the present invention; no matter but in its shape or structure, do any change; every have same or like with the application like technical scheme, all fall within protection scope of the present invention.

Claims (3)

1. the shortest path planning method in robot obstacle-avoiding, it comprises the following steps:
Convolution algorithm is adopted to obtain Probabilistic Cell map;
Original A* algorithm is improved, and the cost function of the A* algorithm after being improved is:
F (n)=k1*g(n)+k2*h(n)+k3* k (n),
In formula, g (n) represents from the actual cost starting point S to node n, represents the preferential trend of search range;H (n) represents the estimate cost from the optimal path node n to impact point D, contains the heuristic information in search;K (n) represents the probit that in Probabilistic Cell map, grid is corresponding;K1For the weight that cost g (n) is corresponding, k2For the weight that cost h (n) is corresponding, k3For the weight that probit k (n) is corresponding, wherein 0 < ki< 1 (i=1,2,3);
On the basis of Probabilistic Cell map, the A* algorithm after improving is adopted to carry out the Shortest Path Searching from origin-to-destination.
2. the shortest path planning method in a kind of robot obstacle-avoiding as claimed in claim 1, it is characterised in that: described employing convolution algorithm obtains the process of Probabilistic Cell map and is:
(1) two-dimensional array definition grating map is utilized, comprising:
Lattice types in self-defined grating map is: FREE, OBSTACLE, START, END and PROBABILITY;FREE represents and represents entirely without barrier, and OBSTACLE represents and determines there is barrier, and START represents starting point, and END represents terminal;PROBABILITY represents that barrier there is a possibility that size from high to low, and the more big expression barrier of the value of PROBABILITY there is a possibility that more big;
The data type of self-defined two-dimensional array is as follows:
Wherein, s_x and s_y represents certain grid coordinate in map, and s_g and s_h represents two cost distances in A* algorithmic rule, and s_style represents lattice types;StructAStarNode*s_parent defines a same kind of pointer;Ints_is_in_closetable and ints_is_in_opentable represents whether some grid had stepped through in search procedure, if had stepped through, then and s_is_in_closetable=1, s_is_in_opentable=0;Otherwise, s_is_in_closetable=0, s_is_in_opentable=1;
Data type according to self-defining two-dimensional array, is expressed as two-dimensional array:
AStarNodemap_maze [ROW] [COLUMN];
(2) grating map being done convolution algorithm, obtain Probabilistic Cell map, its detailed process is:
Carrying out grid randomization for non-edge part in grating map, its detailed process is:
Select a line number and columns to be weight matrix that m and m is odd number is as convolution kernel, and convolution kernel is expressed as:
R = R 11 R 12 ... R 1 m R 21 R 22 ... R 2 m . . . R m 1 R m 2 ... R m m ,
In original grating map, one line number of corresponding selection and columns are the matrix G that m and m is odd number:
G = G 11 G 12 ... G 1 m G 21 G 22 ... G 2 m . . . G m 1 G m 2 ... G m m ,
Then the probit of the center grates of Probabilistic Cell map is:
R m + 1 2 m + 1 2 * = R 11 G 11 + R 12 G 12 + ... + R m + 1 2 m + 1 2 G m + 1 2 m + 1 2 + ... + R m m G m m ;
Carrying out grid randomization for marginal portion in grating map, its detailed process is:
First, original grating map is done expansion process, namely outwards expand in the surrounding of original grating mapCircle;
Secondly, the method identical with non-edge part grid randomization in grating map is adopted to obtain the probit of each grid in the boundary member of original grating map.
3. the shortest path planning method in a kind of robot obstacle-avoiding as claimed in claim 1 or 2, it is characterised in that: the process that the described A* algorithm adopted after improving carries out the Shortest Path Searching from origin-to-destination is:
Probabilistic Cell map specifies the searching position in upper and lower, left and right, upper left, lower-left, eight directions of upper right and bottom right, the searching position in each direction is all used to the cost function calculation cost value of the A* algorithm after improvement, the position corresponding to minimum cost value is decided to be the position of subsequent time;
For the Probabilistic Cell map of a m*m, around its center grates z, there are 8 adjacent grids;These 8 adjacent grids are divided into two classes, and a class is horizontally or vertically grid, and a class is diagonal angle grid;8 adjacent grids around center grates z are found the grid b that between and center grates, distance value is minimum, center grates z is labeled as the grid passed by, draw from the path center grates z to next grid b, then using grid b as father node, repeat said process;
Carry out next time raster search time, first determine whether the father node of current grid to current grid distance with last time grid father node to last time grid distance sum whether less than last time grid father node to the distance of current grid, if, then using last time grid father node to last time grid to current grid as shortest path, otherwise need again to plan shortest path;The father node of current grid is grid last time.
CN201610213569.5A 2016-04-07 2016-04-07 A kind of shortest path planning method in robot obstacle-avoiding Active CN105716613B (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
CN201610213569.5A CN105716613B (en) 2016-04-07 2016-04-07 A kind of shortest path planning method in robot obstacle-avoiding
PCT/CN2017/079488 WO2017173990A1 (en) 2016-04-07 2017-04-05 Method for planning shortest path in robot obstacle avoidance

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201610213569.5A CN105716613B (en) 2016-04-07 2016-04-07 A kind of shortest path planning method in robot obstacle-avoiding

Publications (2)

Publication Number Publication Date
CN105716613A true CN105716613A (en) 2016-06-29
CN105716613B CN105716613B (en) 2018-10-02

Family

ID=56160769

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201610213569.5A Active CN105716613B (en) 2016-04-07 2016-04-07 A kind of shortest path planning method in robot obstacle-avoiding

Country Status (2)

Country Link
CN (1) CN105716613B (en)
WO (1) WO2017173990A1 (en)

Cited By (46)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105955280A (en) * 2016-07-19 2016-09-21 Tcl集团股份有限公司 Mobile robot path planning and obstacle avoidance method and system
CN106017497A (en) * 2016-07-06 2016-10-12 上海交通大学 Route planning method based on map orientation capacity
CN106595663A (en) * 2016-11-28 2017-04-26 四川航天系统工程研究所 Aircraft auto-route planning method with combination of searching and optimization
CN106647769A (en) * 2017-01-19 2017-05-10 厦门大学 AGV path tracking and obstacle avoiding coordination method based on A* extraction guide point
CN107065865A (en) * 2017-03-21 2017-08-18 北京航空航天大学 A kind of paths planning method based on the quick random search tree algorithm of beta pruning
WO2017173990A1 (en) * 2016-04-07 2017-10-12 北京进化者机器人科技有限公司 Method for planning shortest path in robot obstacle avoidance
CN107345815A (en) * 2017-07-24 2017-11-14 东北大学 A kind of home-services robot paths planning method based on improvement A* algorithms
CN107357295A (en) * 2017-08-16 2017-11-17 珠海市微半导体有限公司 A kind of method for searching path and chip and robot based on grating map
CN107449426A (en) * 2017-07-14 2017-12-08 厦门市礼小签电子科技有限公司 Path search algorithm and navigational logic method and its indoor AR navigation system
CN107560620A (en) * 2017-08-31 2018-01-09 珠海市微半导体有限公司 A kind of method for path navigation and chip and robot
CN107808061A (en) * 2017-11-20 2018-03-16 北京华大九天软件有限公司 A kind of two-way across obstacle wiring method for supporting just to give oblique cabling
CN107990903A (en) * 2017-12-29 2018-05-04 东南大学 A kind of indoor AGV paths planning methods based on improvement A* algorithms
CN108072369A (en) * 2016-11-16 2018-05-25 阳光暖果(北京)科技发展有限公司 A kind of Mobile Robotics Navigation method of configurable strategy
CN108241369A (en) * 2017-12-20 2018-07-03 北京理工华汇智能科技有限公司 The method and device of static-obstacle is hidden by robot
CN108241370A (en) * 2017-12-20 2018-07-03 北京理工华汇智能科技有限公司 The method and device in avoidance path is obtained by grating map
CN108356819A (en) * 2018-01-17 2018-08-03 西安交通大学 Based on the industrial machinery arm Collision Free Path Planning for improving A* algorithms
CN108549378A (en) * 2018-05-02 2018-09-18 长沙学院 A kind of mixed path method and system for planning based on grating map
CN108614554A (en) * 2018-05-03 2018-10-02 南京理工大学 A kind of robot multi-source shortest path planning method based on region limitation
CN108665117A (en) * 2018-05-22 2018-10-16 厦门理工学院 A kind of computational methods, device, terminal device and the storage medium of interior space shortest path
CN108827336A (en) * 2018-09-26 2018-11-16 广东工业大学 One kind being based on unpiloted paths planning method, device and equipment
CN109059924A (en) * 2018-07-25 2018-12-21 齐鲁工业大学 Adjoint robot Incremental Route method and system for planning based on A* algorithm
CN110031007A (en) * 2019-03-22 2019-07-19 深圳先进技术研究院 A kind of path planning method, device and computer readable storage medium
CN110282553A (en) * 2019-06-26 2019-09-27 上海应用技术大学 Bridge crane paths planning method and system
CN110361017A (en) * 2019-07-19 2019-10-22 西南科技大学 A kind of full traverse path planing method of sweeping robot based on Grid Method
CN110456789A (en) * 2019-07-23 2019-11-15 中国矿业大学 A kind of complete coverage path planning method of clean robot
CN110702133A (en) * 2019-09-29 2020-01-17 安克创新科技股份有限公司 Path planning method, robot and device with storage function
CN110823241A (en) * 2019-11-19 2020-02-21 齐鲁工业大学 Robot path planning method and system based on passable area skeleton extraction
CN111426328A (en) * 2020-03-03 2020-07-17 青岛联合创智科技有限公司 Robot path planning method for static scene
CN111539574A (en) * 2020-04-28 2020-08-14 北京洛必德科技有限公司 Order dispatching method and system for multiple robots
CN111832844A (en) * 2020-07-31 2020-10-27 上海同普电力技术有限公司 AGV shortest path planning method and device and computer readable storage medium
CN111912407A (en) * 2019-05-08 2020-11-10 胡贤良 Path planning method of multi-robot system
CN112327887A (en) * 2021-01-05 2021-02-05 成都信息工程大学 Unmanned vehicle collision avoidance path planning method and system based on iteration improved APF
CN112327862A (en) * 2020-11-16 2021-02-05 北京理工大学 Path planning method for multi-robot collaborative search in uncertain environment
CN112561168A (en) * 2020-12-17 2021-03-26 珠海格力电器股份有限公司 Scheduling method and device for unmanned transport vehicle
CN112902963A (en) * 2021-01-21 2021-06-04 西安交通大学 Path planning obstacle avoidance method of intelligent wheelchair
CN113156956A (en) * 2021-04-26 2021-07-23 珠海市一微半导体有限公司 Robot navigation method, chip and robot
CN113268061A (en) * 2021-05-14 2021-08-17 深圳中智永浩机器人有限公司 Robot chassis multipoint navigation method and device, computer equipment and storage medium
CN113341957A (en) * 2021-05-21 2021-09-03 浙江工业大学 Multi-robot path planning method based on trace map A _ star algorithm
CN113405557A (en) * 2021-08-18 2021-09-17 科大讯飞(苏州)科技有限公司 Path planning method and related device, electronic equipment and storage medium
CN113485337A (en) * 2021-07-08 2021-10-08 深圳拓邦股份有限公司 Obstacle avoidance path searching method and device and mobile robot
CN114061610A (en) * 2021-11-16 2022-02-18 中国联合网络通信集团有限公司 Path planning method and device for assisting exploration city and storage medium
CN114446121A (en) * 2022-02-24 2022-05-06 汕头市快畅机器人科技有限公司 Control method of life search cluster education robot
CN114815899A (en) * 2022-06-09 2022-07-29 中国科学院合肥物质科学研究院 Unmanned aerial vehicle three-dimensional space path planning method based on 3D laser radar sensor
CN115509216A (en) * 2021-06-21 2022-12-23 广州视源电子科技股份有限公司 Path planning method and device, computer equipment and storage medium
CN116698066A (en) * 2023-06-02 2023-09-05 哈尔滨工业大学(威海) Robot path planning method and system based on neighborhood expansion and boundary point improvement A-star algorithm
CN118229166A (en) * 2024-03-12 2024-06-21 南京我乐家居股份有限公司 Furniture digital logistics management method

Families Citing this family (78)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109240303B (en) * 2018-09-30 2024-09-20 北京奇虎科技有限公司 Robot path planning method and device and electronic equipment
CN109521447B (en) * 2018-11-16 2022-10-14 福州大学 Missing target searching method based on greedy strategy
CN111380532B (en) * 2018-12-29 2022-06-28 深圳市优必选科技有限公司 Path planning method, device, terminal and computer storage medium
CN109945873B (en) * 2019-04-04 2022-07-15 东南大学 Hybrid path planning method for indoor mobile robot motion control
CN110245202B (en) * 2019-06-03 2023-07-21 哈尔滨工程大学 Polar coordinate system target grid set solving method based on iterative proximity search
CN110243373B (en) * 2019-06-25 2022-09-20 武汉工程大学 Path planning method, device and system for dynamic storage automatic guided vehicle
CN110490978B (en) * 2019-07-01 2023-07-21 浙江工业大学 Live-action riding training method based on mixed reality technology
CN111708357B (en) * 2019-09-17 2023-07-18 深圳银星智能集团股份有限公司 Cleaning end condition identification method and device and sweeping robot
CN110986951B (en) * 2019-12-11 2023-03-24 广州市技田信息技术有限公司 Path planning method based on penalty weight, navigation grid and grid map
CN111307156B (en) * 2020-03-09 2023-05-16 中振同辂(江苏)机器人有限公司 Coverage path planning method suitable for vehicle type robot
CN111582556B (en) * 2020-04-20 2023-09-22 西安工程大学 Intelligent parcel sorting system path planning method based on RRT algorithm
CN111599009B (en) * 2020-04-26 2023-04-18 广东工业大学 Large-scale known environment map creating method based on double-layer map
CN111462323B (en) * 2020-05-06 2023-04-18 中国人民解放军国防科技大学 Three-dimensional space-oriented dynamic deception path planning method and system
CN111561933B (en) * 2020-06-17 2023-03-31 西安爱生技术集团有限公司 Double-improved A-star shortest route planning method
CN111857150A (en) * 2020-07-31 2020-10-30 深圳拓邦股份有限公司 Mobile robot path planning method and device, mobile robot and storage medium
CN112013866A (en) * 2020-08-31 2020-12-01 电子科技大学 Path planning method based on intelligent navigation system
CN111982125A (en) * 2020-08-31 2020-11-24 长春工业大学 Path planning method based on improved ant colony algorithm
CN112148030B (en) * 2020-09-23 2023-11-24 天津大学 Underwater glider path planning method based on heuristic algorithm
CN112327856B (en) * 2020-11-13 2022-12-06 云南电网有限责任公司保山供电局 Robot path planning method based on improved A-star algorithm
CN112556711B (en) * 2020-11-17 2023-02-17 浙江大学 Planning method suitable for fastest walking path of emergency refuge in complex terrain in mountainous area
CN112747760B (en) * 2020-12-16 2022-10-28 中国船舶重工集团有限公司第七一0研究所 Autonomous navigation route planning method and device for unmanned platform on water surface of narrow water channel
CN112667924B (en) * 2020-12-18 2023-10-27 珠海格力智能装备有限公司 Robot map acquisition method and device, processor and electronic device
CN112683278B (en) * 2021-01-08 2024-01-30 东南大学 Global path planning method based on improved A-algorithm and Bezier curve
CN112833905B (en) * 2021-01-08 2022-09-27 北京大学 Distributed multi-AGV collision-free path planning method based on improved A-x algorithm
CN113414761B (en) * 2021-02-03 2022-10-11 中国人民解放军63920部队 Method for optimizing motion trail of redundant mechanical arm
CN113008237A (en) * 2021-02-25 2021-06-22 苏州臻迪智能科技有限公司 Path planning method and device and aircraft
CN113093787B (en) * 2021-03-15 2022-09-13 西北工业大学 Unmanned aerial vehicle trajectory planning method based on velocity field
CN113048981B (en) * 2021-03-22 2022-11-18 中国人民解放军国防科技大学 DEM-oriented method for road-free area path planning algorithm
CN113094456B (en) * 2021-04-09 2022-09-13 郑州大学 Robot walking path generation method
CN113091751B (en) * 2021-04-13 2023-10-24 西安美拓信息技术有限公司 Path planning method under partial grid orientation condition in grid space
CN113155132B (en) * 2021-04-18 2024-04-12 吴亮亮 Unmanned aerial vehicle path planning method and system for greenhouse
CN113110457B (en) * 2021-04-19 2022-11-15 杭州视熵科技有限公司 Autonomous coverage inspection method for intelligent robot in indoor complex dynamic environment
CN113156970B (en) * 2021-05-08 2023-06-09 珠海一微半导体股份有限公司 Path fusion planning method for traffic area, robot and chip
CN113190010B (en) * 2021-05-08 2024-04-05 珠海一微半导体股份有限公司 Edge obstacle detouring path planning method, chip and robot
CN113324558A (en) * 2021-05-17 2021-08-31 亿嘉和科技股份有限公司 Grid map traversal algorithm based on RRT
CN113177664B (en) * 2021-05-20 2024-03-19 的卢技术有限公司 Self-learning path planning method taking safety and distance cost as constraint
CN113341978B (en) * 2021-06-10 2023-03-07 西北工业大学 Intelligent trolley path planning method based on ladder-shaped barrier
CN113532458B (en) * 2021-06-23 2024-09-13 厦门大学 Path searching method based on AStar algorithm
CN113551682B (en) * 2021-07-19 2022-07-08 大连理工大学 Path planning method of amphibious unmanned war chariot considering influence of terrain and topography
CN113741416B (en) * 2021-07-21 2023-12-26 浙江工业大学 Multi-robot full-coverage path planning method based on improved predator prey model and DMPC
CN113467469B (en) * 2021-07-23 2024-01-23 中国核动力研究设计院 Object lifting space track planning method and system based on BIM technology
CN113485360B (en) * 2021-07-29 2023-05-19 福州大学 AGV robot path planning method and system based on improved search algorithm
CN113485373B (en) * 2021-08-12 2022-12-06 苏州大学 Robot real-time motion planning method based on Gaussian mixture model
CN113671958B (en) * 2021-08-19 2024-03-15 上海合时智能科技有限公司 Determination method and system of obstacle avoidance path of robot, electronic equipment and medium
CN113759915B (en) * 2021-09-08 2023-09-15 广州杰赛科技股份有限公司 AGV trolley path planning method, device, equipment and storage medium
CN113867336B (en) * 2021-09-09 2024-04-19 山东山速机器人科技有限公司 Mobile robot path navigation and planning method suitable for complex scene
CN113867341B (en) * 2021-09-18 2023-12-22 盐城中科高通量计算研究院有限公司 Patrol car path planning and tracking method with high-precision tracking and control
CN113752265B (en) * 2021-10-13 2024-01-05 国网山西省电力公司超高压变电分公司 Method, system and device for planning obstacle avoidance path of mechanical arm
CN114089747B (en) * 2021-11-05 2023-07-04 季华实验室 Multi-AGV path planning method based on time slices
CN114152263B (en) * 2021-11-11 2024-04-16 上海应用技术大学 Path planning method, system, electronic equipment and storage medium
CN113985892B (en) * 2021-11-17 2023-09-22 江苏科技大学 Intelligent ship path planning method based on improved A-gram algorithm
CN114115354B (en) * 2021-12-13 2023-07-28 北京航空航天大学 Heterogeneous platform cooperative path planning method
CN114115291B (en) * 2021-12-15 2023-06-27 合肥工业大学 Vehicle path planning method under complex non-convex environment
CN114489118B (en) * 2021-12-27 2023-09-05 西北工业大学 Helicopter track planning map processing method based on terrain gradient binarization
CN114355923B (en) * 2021-12-28 2024-04-02 杭州电子科技大学 MPC-based track planning and tracking method under A-guidance
CN114385362B (en) * 2022-01-12 2024-08-06 东南大学 Multi-transfer robot scheduling method based on cloud-edge calculation
CN114485707B (en) * 2022-01-17 2024-04-30 武汉科技大学 Voronoi path planning method based on skeleton key point re-planning
CN114415686B (en) * 2022-01-21 2024-04-19 中国农业银行股份有限公司 Path determination method and device
CN114536328B (en) * 2022-01-26 2024-02-06 中国科学院合肥物质科学研究院 Mechanical arm motion planning method based on improved RRT algorithm
CN114562998A (en) * 2022-01-27 2022-05-31 北京四象爱数科技有限公司 Multi-target-point path planning method based on DEM (digital elevation model) under non-road condition in mountainous area
CN114577214B (en) * 2022-03-02 2022-09-20 哈尔滨工业大学 Wheeled robot path planning method applied to cross-heterogeneous multi-layer space
CN114721370B (en) * 2022-03-02 2024-10-15 广东工业大学 Robot rapid optimal path planning method based on double heuristic functions
CN114839968B (en) * 2022-04-01 2024-08-16 哈尔滨工程大学 Path planning method for unmanned surface vehicle
CN114970978B (en) * 2022-05-07 2023-04-28 河海大学 Dynamic planning method for single vibrating trolley construction track in complex area
CN114859929B (en) * 2022-05-19 2024-09-10 哈尔滨工业大学(威海) AGV path planning method based on improved DWA algorithm in dynamic environment
CN114705196B (en) * 2022-06-07 2022-08-30 湖南大学 Self-adaptive heuristic global path planning method and system for robot
CN115143964B (en) * 2022-07-05 2024-05-10 中国科学技术大学 Four-foot robot autonomous navigation method based on 2.5D cost map
CN115091460B (en) * 2022-07-13 2024-07-12 江苏科技大学 Intelligent steel grabbing machine mechanical arm path planning method and planning system
CN115456249B (en) * 2022-08-16 2024-03-22 上海聚水潭网络科技有限公司 Sorting walking path optimization method and system
CN115326057A (en) * 2022-08-31 2022-11-11 深圳鹏行智能研究有限公司 Path planning method and device, robot and readable storage medium
CN115760249B (en) * 2022-11-07 2024-10-08 国网宁夏电力有限公司经济技术研究院 Transmission and transformation project cost assessment method, medium and equipment considering line loss
CN115686020B (en) * 2022-11-10 2024-04-26 安徽工程大学 IAPF-A fusion algorithm-based robot path planning
CN116069040B (en) * 2023-03-06 2023-07-14 之江实验室 Path planning method and device for wall climbing robot constrained by curved surface of pipeline
CN116147653B (en) * 2023-04-14 2023-08-22 北京理工大学 Three-dimensional reference path planning method for unmanned vehicle
CN116954212B (en) * 2023-04-25 2024-07-05 广东工业大学 Improved D X Lite unmanned ship path planning method facing complex environment
CN117270534B (en) * 2023-09-22 2024-08-20 苏州科技大学 Multi-robot path planning method based on improved conflict search method
CN117387649B (en) * 2023-10-26 2024-06-14 苏州大学 Self-adaptive navigation method and system for uncertain environment robot with probability self-updating
CN117451057B (en) * 2023-12-25 2024-03-12 长春理工大学 Unmanned aerial vehicle three-dimensional path planning method, equipment and medium based on improved A-algorithm

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20100211244A1 (en) * 2009-02-18 2010-08-19 Jeong Woo-Yeon Apparatus and method for generating and using a grid map path
CN103472828A (en) * 2013-09-13 2013-12-25 桂林电子科技大学 Mobile robot path planning method based on improvement of ant colony algorithm and particle swarm optimization
CN103529843A (en) * 2013-10-17 2014-01-22 电子科技大学中山学院 Lambda path planning algorithm
CN105116902A (en) * 2015-09-09 2015-12-02 北京进化者机器人科技有限公司 Mobile robot obstacle avoidance navigation method and system

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100915527B1 (en) * 2007-07-03 2009-09-04 한국전자통신연구원 Method for searching a path
KR101901958B1 (en) * 2012-03-26 2018-11-08 한국전자통신연구원 Apparatus for fast path search by learning heuristic function and method thereof
CN103389699B (en) * 2013-05-09 2015-08-12 浙江大学 Based on the supervisory control of robot of distributed intelligence Monitoring and Controlling node and the operation method of autonomous system
CN104950883A (en) * 2015-05-14 2015-09-30 西安电子科技大学 Mobile robot route planning method based on distance grid map
CN105716613B (en) * 2016-04-07 2018-10-02 北京进化者机器人科技有限公司 A kind of shortest path planning method in robot obstacle-avoiding

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20100211244A1 (en) * 2009-02-18 2010-08-19 Jeong Woo-Yeon Apparatus and method for generating and using a grid map path
CN103472828A (en) * 2013-09-13 2013-12-25 桂林电子科技大学 Mobile robot path planning method based on improvement of ant colony algorithm and particle swarm optimization
CN103529843A (en) * 2013-10-17 2014-01-22 电子科技大学中山学院 Lambda path planning algorithm
CN105116902A (en) * 2015-09-09 2015-12-02 北京进化者机器人科技有限公司 Mobile robot obstacle avoidance navigation method and system

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
方昕等: "一种改进A*算法的智能机器人路径规划", 《信息技术》 *

Cited By (68)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2017173990A1 (en) * 2016-04-07 2017-10-12 北京进化者机器人科技有限公司 Method for planning shortest path in robot obstacle avoidance
CN106017497A (en) * 2016-07-06 2016-10-12 上海交通大学 Route planning method based on map orientation capacity
CN105955280A (en) * 2016-07-19 2016-09-21 Tcl集团股份有限公司 Mobile robot path planning and obstacle avoidance method and system
CN108072369A (en) * 2016-11-16 2018-05-25 阳光暖果(北京)科技发展有限公司 A kind of Mobile Robotics Navigation method of configurable strategy
CN106595663A (en) * 2016-11-28 2017-04-26 四川航天系统工程研究所 Aircraft auto-route planning method with combination of searching and optimization
CN106647769A (en) * 2017-01-19 2017-05-10 厦门大学 AGV path tracking and obstacle avoiding coordination method based on A* extraction guide point
CN106647769B (en) * 2017-01-19 2019-05-24 厦门大学 Based on A*Extract AGV path trace and the avoidance coordination approach of pilot point
CN107065865A (en) * 2017-03-21 2017-08-18 北京航空航天大学 A kind of paths planning method based on the quick random search tree algorithm of beta pruning
CN107449426A (en) * 2017-07-14 2017-12-08 厦门市礼小签电子科技有限公司 Path search algorithm and navigational logic method and its indoor AR navigation system
CN107449426B (en) * 2017-07-14 2020-05-05 厦门市礼小签电子科技有限公司 Navigation logic method and indoor AR navigation system thereof
CN107345815A (en) * 2017-07-24 2017-11-14 东北大学 A kind of home-services robot paths planning method based on improvement A* algorithms
CN107357295A (en) * 2017-08-16 2017-11-17 珠海市微半导体有限公司 A kind of method for searching path and chip and robot based on grating map
CN107357295B (en) * 2017-08-16 2021-02-23 珠海市一微半导体有限公司 Path searching method and chip based on grid map and robot
CN107560620A (en) * 2017-08-31 2018-01-09 珠海市微半导体有限公司 A kind of method for path navigation and chip and robot
CN107560620B (en) * 2017-08-31 2019-12-20 珠海市一微半导体有限公司 Path navigation method, chip and robot
CN107808061A (en) * 2017-11-20 2018-03-16 北京华大九天软件有限公司 A kind of two-way across obstacle wiring method for supporting just to give oblique cabling
CN107808061B (en) * 2017-11-20 2021-01-19 北京华大九天软件有限公司 Bidirectional obstacle-crossing wiring method supporting orthogonal and oblique wiring
CN108241370B (en) * 2017-12-20 2021-06-22 北京理工华汇智能科技有限公司 Method and device for acquiring obstacle avoidance path through grid map
CN108241369A (en) * 2017-12-20 2018-07-03 北京理工华汇智能科技有限公司 The method and device of static-obstacle is hidden by robot
CN108241370A (en) * 2017-12-20 2018-07-03 北京理工华汇智能科技有限公司 The method and device in avoidance path is obtained by grating map
CN108241369B (en) * 2017-12-20 2021-11-30 北京理工华汇智能科技有限公司 Method and device for avoiding static obstacle for robot
CN107990903A (en) * 2017-12-29 2018-05-04 东南大学 A kind of indoor AGV paths planning methods based on improvement A* algorithms
CN108356819A (en) * 2018-01-17 2018-08-03 西安交通大学 Based on the industrial machinery arm Collision Free Path Planning for improving A* algorithms
CN108356819B (en) * 2018-01-17 2020-08-14 西安交通大学 Industrial mechanical arm collision-free path planning method based on improved A-x algorithm
CN108549378A (en) * 2018-05-02 2018-09-18 长沙学院 A kind of mixed path method and system for planning based on grating map
CN108549378B (en) * 2018-05-02 2021-04-20 长沙学院 Mixed path planning method and system based on grid map
CN108614554A (en) * 2018-05-03 2018-10-02 南京理工大学 A kind of robot multi-source shortest path planning method based on region limitation
CN108665117B (en) * 2018-05-22 2021-03-12 厦门理工学院 Calculation method and device for shortest indoor space path, terminal equipment and storage medium
CN108665117A (en) * 2018-05-22 2018-10-16 厦门理工学院 A kind of computational methods, device, terminal device and the storage medium of interior space shortest path
CN109059924B (en) * 2018-07-25 2020-07-03 齐鲁工业大学 Accompanying robot incremental path planning method and system based on A-x algorithm
CN109059924A (en) * 2018-07-25 2018-12-21 齐鲁工业大学 Adjoint robot Incremental Route method and system for planning based on A* algorithm
CN108827336A (en) * 2018-09-26 2018-11-16 广东工业大学 One kind being based on unpiloted paths planning method, device and equipment
CN110031007A (en) * 2019-03-22 2019-07-19 深圳先进技术研究院 A kind of path planning method, device and computer readable storage medium
CN111912407A (en) * 2019-05-08 2020-11-10 胡贤良 Path planning method of multi-robot system
CN111912407B (en) * 2019-05-08 2022-05-17 胡贤良 Path planning method of multi-robot system
CN110282553A (en) * 2019-06-26 2019-09-27 上海应用技术大学 Bridge crane paths planning method and system
CN110361017B (en) * 2019-07-19 2022-02-11 西南科技大学 Grid method based full-traversal path planning method for sweeping robot
CN110361017A (en) * 2019-07-19 2019-10-22 西南科技大学 A kind of full traverse path planing method of sweeping robot based on Grid Method
CN110456789A (en) * 2019-07-23 2019-11-15 中国矿业大学 A kind of complete coverage path planning method of clean robot
CN110702133A (en) * 2019-09-29 2020-01-17 安克创新科技股份有限公司 Path planning method, robot and device with storage function
CN110702133B (en) * 2019-09-29 2021-11-12 安克创新科技股份有限公司 Path planning method, robot and device with storage function
CN110823241B (en) * 2019-11-19 2021-05-28 齐鲁工业大学 Robot path planning method and system based on passable area skeleton extraction
CN110823241A (en) * 2019-11-19 2020-02-21 齐鲁工业大学 Robot path planning method and system based on passable area skeleton extraction
CN111426328B (en) * 2020-03-03 2023-03-28 青岛联合创智科技有限公司 Robot path planning method for static scene
CN111426328A (en) * 2020-03-03 2020-07-17 青岛联合创智科技有限公司 Robot path planning method for static scene
CN111539574B (en) * 2020-04-28 2021-04-09 北京洛必德科技有限公司 Order dispatching method and system for multiple robots
CN111539574A (en) * 2020-04-28 2020-08-14 北京洛必德科技有限公司 Order dispatching method and system for multiple robots
CN111832844A (en) * 2020-07-31 2020-10-27 上海同普电力技术有限公司 AGV shortest path planning method and device and computer readable storage medium
CN112327862A (en) * 2020-11-16 2021-02-05 北京理工大学 Path planning method for multi-robot collaborative search in uncertain environment
WO2022127150A1 (en) * 2020-12-17 2022-06-23 珠海格力电器股份有限公司 Dispatching method and apparatus for automated guided vehicle
CN112561168A (en) * 2020-12-17 2021-03-26 珠海格力电器股份有限公司 Scheduling method and device for unmanned transport vehicle
CN112327887B (en) * 2021-01-05 2021-04-30 成都信息工程大学 Unmanned vehicle collision avoidance path planning method and system based on iteration improved APF
CN112327887A (en) * 2021-01-05 2021-02-05 成都信息工程大学 Unmanned vehicle collision avoidance path planning method and system based on iteration improved APF
CN112902963A (en) * 2021-01-21 2021-06-04 西安交通大学 Path planning obstacle avoidance method of intelligent wheelchair
CN113156956B (en) * 2021-04-26 2023-08-11 珠海一微半导体股份有限公司 Navigation method and chip of robot and robot
CN113156956A (en) * 2021-04-26 2021-07-23 珠海市一微半导体有限公司 Robot navigation method, chip and robot
CN113268061A (en) * 2021-05-14 2021-08-17 深圳中智永浩机器人有限公司 Robot chassis multipoint navigation method and device, computer equipment and storage medium
CN113341957A (en) * 2021-05-21 2021-09-03 浙江工业大学 Multi-robot path planning method based on trace map A _ star algorithm
CN115509216A (en) * 2021-06-21 2022-12-23 广州视源电子科技股份有限公司 Path planning method and device, computer equipment and storage medium
CN113485337B (en) * 2021-07-08 2024-04-02 深圳拓邦股份有限公司 Obstacle avoidance path searching method and device and mobile robot
CN113485337A (en) * 2021-07-08 2021-10-08 深圳拓邦股份有限公司 Obstacle avoidance path searching method and device and mobile robot
CN113405557A (en) * 2021-08-18 2021-09-17 科大讯飞(苏州)科技有限公司 Path planning method and related device, electronic equipment and storage medium
CN114061610A (en) * 2021-11-16 2022-02-18 中国联合网络通信集团有限公司 Path planning method and device for assisting exploration city and storage medium
CN114446121A (en) * 2022-02-24 2022-05-06 汕头市快畅机器人科技有限公司 Control method of life search cluster education robot
CN114446121B (en) * 2022-02-24 2024-03-05 汕头市快畅机器人科技有限公司 Control method of life search cluster education robot
CN114815899A (en) * 2022-06-09 2022-07-29 中国科学院合肥物质科学研究院 Unmanned aerial vehicle three-dimensional space path planning method based on 3D laser radar sensor
CN116698066A (en) * 2023-06-02 2023-09-05 哈尔滨工业大学(威海) Robot path planning method and system based on neighborhood expansion and boundary point improvement A-star algorithm
CN118229166A (en) * 2024-03-12 2024-06-21 南京我乐家居股份有限公司 Furniture digital logistics management method

Also Published As

Publication number Publication date
CN105716613B (en) 2018-10-02
WO2017173990A1 (en) 2017-10-12

Similar Documents

Publication Publication Date Title
CN105716613A (en) Method for planning shortest path in robot obstacle avoidance
CN112904842B (en) Mobile robot path planning and optimizing method based on cost potential field
CN108549385B (en) Robot dynamic path planning method combining A-x algorithm and VFH obstacle avoidance algorithm
CN106647769B (en) Based on A*Extract AGV path trace and the avoidance coordination approach of pilot point
CN111811514B (en) Path planning method based on regular hexagon grid jump point search algorithm
CN112284393B (en) Global path planning method and system for intelligent mobile robot
US10365110B2 (en) Method and system for determining a path of an object for moving from a starting state to an end state set avoiding one or more obstacles
CN113515129B (en) Bidirectional skip point search unmanned vehicle path planning method based on boundary search
CN106774347A (en) Robot path planning method, device and robot under indoor dynamic environment
KR20230041752A (en) Method and apparatus for planning an obstacle avoidance path of a mobile device
CN113984080B (en) Layered local path planning method suitable for large complex scene
CN111543908A (en) Method and device for planning travelling path and intelligent equipment travelling path
CN114281084B (en) Intelligent vehicle global path planning method based on improved A-algorithm
CN106482739B (en) Navigation method of automatic guided transport vehicle
LU102942B1 (en) Path planning method based on improved a* algorithm in off-road environment
CN112783169A (en) Path planning method and device and computer readable storage medium
KR20150104484A (en) Method and apparatus for generating pathe of autonomous vehicle
Kala et al. Planning of multiple autonomous vehicles using rrt
CN112033413A (en) Improved A-algorithm combined with environmental information
CN110908386A (en) Layered path planning method for unmanned vehicle
CN112526988A (en) Autonomous mobile robot and path navigation and path planning method and system thereof
Do et al. Narrow passage path planning using fast marching method and support vector machine
CN117870708A (en) Path planning method, terminal equipment and storage medium
CN111426328A (en) Robot path planning method for static scene
CN112612267A (en) Automatic driving path planning method and device

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant
CP03 Change of name, title or address
CP03 Change of name, title or address

Address after: Building 65, No. 17, Jiujiang Road, Tongji New Economic Zone, Jimo District, Qingdao City, Shandong Province, 266200

Patentee after: Qingdao Evolver xiaopang Robot Technology Co.,Ltd.

Address before: Room 1531, 15 / F, block a, building 1, yard 1, Zhongguancun East Road, Haidian District, Beijing

Patentee before: BEIJING EVOLVER ROBOTICS Co.,Ltd.

PE01 Entry into force of the registration of the contract for pledge of patent right
PE01 Entry into force of the registration of the contract for pledge of patent right

Denomination of invention: A shortest path planning method for robot obstacle avoidance

Effective date of registration: 20221201

Granted publication date: 20181002

Pledgee: Societe Generale Limited by Share Ltd. Qingdao branch

Pledgor: Qingdao Evolver xiaopang Robot Technology Co.,Ltd.

Registration number: Y2022980024401