US10821605B2 - Robot motion path planning method, apparatus and terminal device - Google Patents
Robot motion path planning method, apparatus and terminal device Download PDFInfo
- Publication number
- US10821605B2 US10821605B2 US16/026,032 US201816026032A US10821605B2 US 10821605 B2 US10821605 B2 US 10821605B2 US 201816026032 A US201816026032 A US 201816026032A US 10821605 B2 US10821605 B2 US 10821605B2
- Authority
- US
- United States
- Prior art keywords
- path
- point
- optimized
- shortest
- ideal
- 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.)
- Active, expires
Links
Images
Classifications
-
- G—PHYSICS
- G05—CONTROLLING; REGULATING
- G05B—CONTROL OR REGULATING SYSTEMS IN GENERAL; FUNCTIONAL ELEMENTS OF SUCH SYSTEMS; MONITORING OR TESTING ARRANGEMENTS FOR SUCH SYSTEMS OR ELEMENTS
- G05B13/00—Adaptive control systems, i.e. systems automatically adjusting themselves to have a performance which is optimum according to some preassigned criterion
- G05B13/02—Adaptive control systems, i.e. systems automatically adjusting themselves to have a performance which is optimum according to some preassigned criterion electric
- G05B13/04—Adaptive control systems, i.e. systems automatically adjusting themselves to have a performance which is optimum according to some preassigned criterion electric involving the use of models or simulators
- G05B13/042—Adaptive control systems, i.e. systems automatically adjusting themselves to have a performance which is optimum according to some preassigned criterion electric involving the use of models or simulators in which a parameter or coefficient is automatically adjusted to optimise the performance
-
- G—PHYSICS
- G05—CONTROLLING; REGULATING
- G05D—SYSTEMS FOR CONTROLLING OR REGULATING NON-ELECTRIC VARIABLES
- G05D1/00—Control of position, course, altitude or attitude of land, water, air or space vehicles, e.g. using automatic pilots
- G05D1/40—Control within particular dimensions
- G05D1/43—Control of position or course in two dimensions
-
- B—PERFORMING OPERATIONS; TRANSPORTING
- B25—HAND TOOLS; PORTABLE POWER-DRIVEN TOOLS; MANIPULATORS
- B25J—MANIPULATORS; CHAMBERS PROVIDED WITH MANIPULATION DEVICES
- B25J9/00—Programme-controlled manipulators
- B25J9/16—Programme controls
- B25J9/1656—Programme controls characterised by programming, planning systems for manipulators
- B25J9/1664—Programme controls characterised by programming, planning systems for manipulators characterised by motion, path, trajectory planning
- B25J9/1666—Avoiding collision or forbidden zones
-
- B—PERFORMING OPERATIONS; TRANSPORTING
- B25—HAND TOOLS; PORTABLE POWER-DRIVEN TOOLS; MANIPULATORS
- B25J—MANIPULATORS; CHAMBERS PROVIDED WITH MANIPULATION DEVICES
- B25J9/00—Programme-controlled manipulators
- B25J9/16—Programme controls
- B25J9/1674—Programme controls characterised by safety, monitoring, diagnostic
- B25J9/1676—Avoiding collision or forbidden zones
-
- G—PHYSICS
- G05—CONTROLLING; REGULATING
- G05D—SYSTEMS FOR CONTROLLING OR REGULATING NON-ELECTRIC VARIABLES
- G05D1/00—Control of position, course, altitude or attitude of land, water, air or space vehicles, e.g. using automatic pilots
- G05D1/02—Control of position or course in two dimensions
- G05D1/021—Control of position or course in two dimensions specially adapted to land vehicles
- G05D1/0212—Control of position or course in two dimensions specially adapted to land vehicles with means for defining a desired trajectory
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06Q—INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
- G06Q10/00—Administration; Management
- G06Q10/04—Forecasting or optimisation specially adapted for administrative or management purposes, e.g. linear programming or "cutting stock problem"
- G06Q10/047—Optimisation of routes or paths, e.g. travelling salesman problem
-
- G—PHYSICS
- G05—CONTROLLING; REGULATING
- G05B—CONTROL OR REGULATING SYSTEMS IN GENERAL; FUNCTIONAL ELEMENTS OF SUCH SYSTEMS; MONITORING OR TESTING ARRANGEMENTS FOR SUCH SYSTEMS OR ELEMENTS
- G05B2219/00—Program-control systems
- G05B2219/30—Nc systems
- G05B2219/40—Robotics, robotics mapping to robotics vision
- G05B2219/40443—Conditional and iterative planning
-
- G—PHYSICS
- G05—CONTROLLING; REGULATING
- G05B—CONTROL OR REGULATING SYSTEMS IN GENERAL; FUNCTIONAL ELEMENTS OF SUCH SYSTEMS; MONITORING OR TESTING ARRANGEMENTS FOR SUCH SYSTEMS OR ELEMENTS
- G05B2219/00—Program-control systems
- G05B2219/30—Nc systems
- G05B2219/40—Robotics, robotics mapping to robotics vision
- G05B2219/40476—Collision, planning for collision free path
-
- G—PHYSICS
- G05—CONTROLLING; REGULATING
- G05B—CONTROL OR REGULATING SYSTEMS IN GENERAL; FUNCTIONAL ELEMENTS OF SUCH SYSTEMS; MONITORING OR TESTING ARRANGEMENTS FOR SUCH SYSTEMS OR ELEMENTS
- G05B2219/00—Program-control systems
- G05B2219/30—Nc systems
- G05B2219/40—Robotics, robotics mapping to robotics vision
- G05B2219/40477—Plan path independent from obstacles, then correction for obstacles
-
- G—PHYSICS
- G05—CONTROLLING; REGULATING
- G05B—CONTROL OR REGULATING SYSTEMS IN GENERAL; FUNCTIONAL ELEMENTS OF SUCH SYSTEMS; MONITORING OR TESTING ARRANGEMENTS FOR SUCH SYSTEMS OR ELEMENTS
- G05B2219/00—Program-control systems
- G05B2219/30—Nc systems
- G05B2219/40—Robotics, robotics mapping to robotics vision
- G05B2219/40519—Motion, trajectory planning
Definitions
- the present disclosure relates to robot technology, and particularly to a robot motion path planning method, apparatus and terminal device.
- the software MoveIt is currently the most advanced and widely used open-source robot motion planning software, which mainly calls a flexible collision library (FCL) to implement an obstacle collision detection, and calls an open motion planning library (OMPL) database to solve motion planning problems.
- FCL flexible collision library
- OMPL open motion planning library
- the motion planning solvers provided by the OMPL database all adopt random sampling methods. Although these methods are complete in probability, when the environment is complex, the calculation results obtained within a limited time have great uncertainty and are easy to cause low motion efficiency of robots.
- FIG. 1 is a flow chart of a robot motion path planning method according to an embodiment of the present disclosure.
- FIG. 2 is a schematic diagram of optimizing using a dichotomy method in an application scenario of the robot motion path planning method according to an embodiment of the present disclosure.
- FIG. 3 is a schematic diagram of using a single-point iterative optimization in an application scenario of the robot motion path planning method according to an embodiment of the present disclosure.
- FIG. 4 is a now chart of performing a single-point iterative optimization in an application scenario of the robot motion path planning method according to an embodiment of the present disclosure.
- FIG. 5 is a schematic diagram of an optimization effect of the single-point iterative optimization according to an embodiment of the present disclosure.
- FIG. 6 is a schematic diagram of a robot motion path planning apparatus according to an embodiment of the present disclosure.
- FIG. 7 is a schematic diagram of a terminal device according to an embodiment of the present disclosure.
- the embodiments of the present disclosure provide a robot motion path planning method, apparatus, and terminal device, which are used to solve the problem that the paths planned through an open motion planning library (OMPL) database have great uncertainty and may easily cause low motion efficiency of a robot.
- OMPL open motion planning library
- the term “obstacle avoidance requirement” indicates a condition for a robot to avoid obstacles.
- the condition for the robot to avoid obstacles may be obtained through, for example, a sensor such as an infrared sensor, a laser sensor, an ultrasound sensor, a camera such as a binocular camera, an RGBD camera, or a visual module.
- structural constraint indicates a limitation of a robot's structure which limits the movement of the robot. For example, for each joint of the arm of the robot, there is as structural constraint such as allowable rotation angle which limits the movement of joint.
- FIG. 1 is a flow chart of a robot motion path planning method according to an embodiment of the present disclosure.
- the method is a computer-implemented method executable for a processor.
- the method can be applied to a robot, where the robot can be equipped with sensors, such as infrared sensors, ultrasound sensors, or laser sensors.
- the method includes the following steps.
- step 101 planning a planned path for a target robot in a current scene using an open motion planning library (OMPL) database, where the planned path includes a plurality of points, and the plurality of points include a start point and an end point.
- OMPL open motion planning library
- the robot motion path planning method in this embodiment may be specifically applied to the path planning of the overall motion of the robot, and may also be applied to the path planning of the motion of the components of the robot such as the path planning of the arm of the robot.
- step 102 setting a shortest ideal path as an initial ideal path, where the shortest ideal path is a shortest path between the start point and the end point.
- step 103 calculating a new path between the planned path and the initial ideal path using a dichotomy method.
- the “planned path” should be as close as possible to the “shortest ideal path” on the premise of guaranteeing that the path avoids obstacles and meets joint limit requirements.
- the dichotomy method is used to optimize the planned path. Specifically, the new path
- Q new Q plan + Q ideal 2 , that is, a compromise path between the planned path and the ideal path is computed and used as the current new path.
- step 104 determining whether the new path meets an obstacle avoidance requirement and a structural constraint of the robot in the current scene; if yes, step 105 is executed; otherwise, step 106 is executed;
- step 105 making the new path as the new planned path.
- step 106 making the new path as a new ideal path.
- steps 104 - 106 it can be seen from the content that after the new path is calculated, it is further required to distinguish whether the calculated new path meets the obstacle avoidance requirement and the structural constraint of the robot so as to meet the motion (movement) requirement of the robot so that the robot can move successfully.
- the above-mentioned structural constraint is determined by the actual condition of the robot, which is not specifically limited in this embodiment.
- each execution of the above-mentioned steps 103 - 106 lets the planned path further approximating the shortest ideal path, that is, achieving a further optimizing.
- step 107 determine whether an error between the planned path and the ideal path is within a preset range; if yes, step 108 is executed; otherwise, return to step 103 .
- the optimization idea in this embodiment is that the above-mentioned steps 103 - 106 are executed in multiple iterations, so that the planned path infinitely approaches the shortest ideal path on the premise of meeting the obstacle avoidance requirement and the structural constraint, thereby finding a high efficiency motion path for the target robot in an overall manner.
- jump-out condition(s) of the above-mentioned iterative optimization process need to be set, so that the error between the planned path and the current ideal path meets a certain condition, and then the planned path can be considered to be sufficiently efficient.
- step 107 determines whether the error between the planned path and the current ideal path is within a preset range. If not, it still needs to continue iterative optimization and returns to step 103 to perform the next dichotomy optimization; if yes, it is considered that the planned path is already an overall optimization trajectory after scale and denoted as. Compared with the initial planned path, it is clear that the scaled path is shorter, as the “overall optimization path” shown in FIG. 2 .
- the above-mentioned step 107 specifically includes: calculating a shortest distance between each point of the planned path and the current ideal path first; determining the error between the planned path and the ideal path being within the preset range, in response to a maximum value of the calculated shortest distance corresponding to each point being smaller than a preset distance threshold.
- step 108 determining the planned path as a motion path of the target robot.
- the motion path may be output to the target robot for moving the target robot based on the motion path. It can be understood that the planned path optimized by the dichotomy method has been greatly improved in the motion efficiency, in comparison with the original planned path. Therefore, at this time, the planned path can be determined as the motion path of the target robot.
- FIG. 3 is a schematic diagram of using a single-point iterative optimization in an application scenario of the robot motion path planning method according to an embodiment of the present disclosure.
- the obstacle is close to the start point or the end point of the path, although the path optimized by the dichotomy optimization improves the motion efficiency of the robot, it may not achieve the ideal effect, as the “overall optimization path” shown in FIG. 3 . Therefore, for the case similar to the obstacle in FIG. 3 , further optimization referred to as single-point iterative optimization in this embodiment may further performed.
- the specific optimization process is described as follows.
- FIG. 4 is a flow chart of performing a single-point iterative optimization in an application scenario of the robot motion path planning method according to an embodiment of the present disclosure. Furthermore, as shown in FIG. 4 , before step 108 , the method further includes:
- step 401 making a point in a to-be-optimized point set having a greatest distance with respect to a corresponding point of the shortest ideal path as a to-be-optimized point, where the to-be-optimized point set includes other points except the start point and the end point of the planned path;
- step 402 calculating an optimized joint angle vector basing on a preset scale factor, a shortest distance between the to-be-optimized point and the shortest ideal path, and a joint angle vector of a point of the shortest ideal path corresponding to the to-be-optimized point;
- step 403 determine whether the optimized joint angle vector meets the obstacle avoidance requirement and the structural constraint of the robot in the current scene; if yes, step 404 is executed; otherwise, step 405 is executed.
- step 404 replacing the joint angle vector of the to-be-optimized point with the optimized joint angle vector
- step 405 removing the to-be-optimized point from the to-be-optimized point set.
- step 406 determining whether a preset iteration condition is met; if yes, step 108 is executed; otherwise, return to step 401 .
- i max is the subscript of the to-be-optimized point
- d i max is the shortest distance between the to-be-optimized point and the shortest ideal path
- q ideal,i max is the joint angle vector of the point on the shortest ideal path which corresponding to the to-be-optimized point w is the scale factor, w>1, and q opt2,i max is the optimized joint angle vector.
- FIG. 5 is a schematic diagram of an optimization effect of the single-point iterative optimization according to an embodiment of the present disclosure. As shown in FIG. 5 , point a to point a′ is the effect of the first single point optimization, point b to point b′ is the effect of the second single point optimization, and point c to point c′ is the effect of the third single point optimization
- the iteration condition can be preset in two ways. First, a maximum iteration number can be set, and the iterative optimization is stopped when the number of iterations reaches the number. Specifically, “determining the preset iteration condition being met, in response to a iteration number of returning to the making the point in the to-be-optimized point set having the greatest distance with respect to the corresponding point of the shortest ideal path as the to-be-optimized point being larger than a preset iteration number threshold”. Second, a determination can be made according to the iterative effect, and the single point iterative optimization is continued until the joint angles of all the points can no longer be shrunk. The specific execution step can be “determining the preset iteration condition being met, in response to all of the points in the to-be-optimized point set having been removed”.
- the specific iteration condition can be set according to actual conditions, which is not specifically limited herein.
- the preset iteration condition is not met, it is necessary to continue the single-point iterative optimization and return to step 401 to execute the next iterative process; when the preset iteration condition is met, it can be considered that the single-point iterative optimization to the planned path has been completed, and step 108 is executed to output the planned path as the motion path of the target robot.
- the optimized planned path may obtain a relatively ideal result, as the “iterative optimization path” shown in FIG. 3 which is a planned path after the single-point iterative optimization.
- the robot motion path planning method provided in this embodiment is based on the currently open-source OMPL database algorithm and adopts the dichotomy method and the single-point iteration method, which can plan a reasonable and efficient obstacle avoidance path for any position where the obstacle is located, hence the disadvantages of the original OMPL database algorithm that the planned path is not ideal and inefficient can be overcome.
- the method can be effectively applied to tasks such as the object grabbing and cargo sorting of a mechanical arm, which improves the operation efficiency of the grabbing and sorting, and also guarantees the safety (obstacle avoidance) of the operation, and has a wide range of use in logistics and household service industries.
- the magnitude of the sequence number of each step does not mean the execution order, and the execution order of each process should be determined by its function and internal logic, and should not constitute any limitation on the implementation process of this embodiment.
- FIG. 6 is a schematic diagram of a robot motion path planning apparatus according to an embodiment of the present disclosure.
- a robot motion path planning apparatus includes:
- a path planning module 601 configured to plan a planned path for a target robot in a current scene using an open motion planning library (OMPL) database, where the planned path includes a plurality of points, and the plurality of points include a start point and an end point;
- OMPL open motion planning library
- an ideal path setting module 602 configured to set a shortest ideal path as an initial ideal path, where the shortest ideal path is a shortest path between the start point and the end point;
- a new path calculating module 603 configured to calculate a new path between the planned path and the initial ideal path using a dichotomy method
- a new path determining module 604 configured to determine whether the new path meets an obstacle avoidance requirement and a structural constraint of the robot in the current scene
- a first determining module 605 configured to determine the new path as the new planned path, in response to a determination result of the new path determining module is yes;
- a second determining module 606 configured to determine the new path as a new ideal path, in response to the determination result of the new path determining module is no;
- an iterative triggering module 607 configured to trigger the new path calculating module, until an error between the planned path and the ideal path is within a preset range
- a motion path determining module 608 determining the planned path as a motion path of the target robot.
- the robot motion path planning apparatus may further include:
- a to-be-optimized point determining module configured to make a point in a to-be-optimized point set having a greatest distance with respect to a corresponding point of the shortest ideal path as a to-be-optimized point, where the to-be-optimized point set includes other points except the start point and the end point of the planned path;
- an optimization vector calculating module configured to calculate an optimized joint angle vector basing on a preset scale factor, a shortest distance between the to-be-optimized point and the shortest ideal path, and a joint angle vector of a point of the shortest ideal path corresponding to the to-be-optimized point;
- a vector determining module configured to determine whether the optimized joint angle vector meets the obstacle avoidance requirement and the structural constraint of the robot in the current scene
- a sector replacing module configured to replace the joint angle vector of the to-be-optimized point with the optimized joint angle vector, in response to a determination result of the vector determining an module is yes;
- a point removing module configured to remove the to-be-optimized point from the to-be-optimized point set, in response to the determination result of the vector determining module is no;
- an iterative optimization module configured to trigger the to-be-optimized point determining module, until a preset iteration condition is met.
- the iterative optimization module may include:
- a first meeting determining unit configured to determine the preset iteration condition being met, in response to a iteration number of returning to the making the point in the to-be-optimized point set having the greatest distance with respect to the corresponding point of the shortest ideal path as the to-be-optimized point being larger than a preset iteration number threshold;
- a second meeting determining unit configured to determine the preset iteration condition being met, in response to all of the points in the to-be-optimized point set having been removed.
- optimization vector calculating module may include:
- i max is the subscript of the to-be-optimized point
- d i max is the shortest distance between the to-be-optimized point and the shortest ideal path
- q ideal,i max is the joint angle vector of the point on the shortest ideal path which corresponding to the to-be-optimized point
- w is the scale factor
- q opt2,i max is the optimized joint angle vector.
- the robot motion path planning apparatus may further include:
- a shortest path calculating module configured to calculate a shortest distance between each point of the planned path and the current ideal path
- a third determining module is configured to determine the error between the planned path and the ideal path being within the preset range, in response to a maximum value of the calculated shortest distance corresponding to each point being smaller than a preset distance threshold.
- FIG. 7 is a schematic diagram of a terminal device according to an embodiment of the present disclosure.
- a terminal device 7 includes a processor 70 , a storage 71 , and a computer program 72 stored in the storage 71 (e.g., a memory), and executable on the processor 70 , for example, a program executing the above-mentioned robot motion path planning method.
- the steps in the above-mentioned embodiments of the robot motion path planning method are implemented when the processor 70 executes the computer program 72 , for example, steps 101 - 108 shown in FIG. 1 .
- the functions of each module unit in the above-mentioned device embodiments are realized when the processor 70 executes the computer program 72 , for example, the functions of the modules 601 - 608 shown in FIG. 6 .
- the computer program 72 may be divided into one or more modules/units, and the one or more modules/units are stored in the storage 71 and executed by the processor 70 to realize the present disclosure.
- the one or more modules/units may be a series of computer program instruction segments capable of performing specific function(s), where the instruction segments are used to describe the execution process of the computer program 72 in the terminal device 7 .
- the terminal device 7 may be a computing device such as a desktop computer, a notebook computer, a tablet computer, and a cloud server.
- the terminal device 7 may include, but is not limited to, the processor 70 and the storage 71 . It can be understood by those skilled in the art that FIG. 7 is merely an example of the terminal device 7 and does not constitute a limitation on the terminal device 7 , and may include more or fewer components than those shown in the figure, or a combination of some components or different components.
- the terminal device 7 may further include an input/output device, a network access device, a bus, and the like.
- the processor 70 may be a central processing unit (CPU), or be other general purpose processor, a digital signal processor (DSP), an application specific integrated circuit (ASIC), a field-programmable gate array (FPGA), or be other programmable logic device, a discrete gate, a transistor logic device, and a discrete hardware component.
- the general purpose processor may be a microprocessor, or the processor may also be any conventional processor.
- the storage 71 may be an internal storage unit of the terminal device 7 , for example, a hard disk or a memory of the terminal device 7 .
- the storage 71 may also be an external storage device of the terminal device 7 , for example, a plug-in hard disk, a smart media card (SMC), a secure digital (SD) card, flash card, and the like, which is equipped on terminal 7 .
- the storage 71 may further include both an internal storage unit and an external storage device, of the terminal device 7 .
- the storage 71 is configured to store the computer program and other programs and data required by the terminal device 7 .
- the storage 71 may also be used to temporarily store data that has been or will be output.
- the disclosed apparatus/device and method may be implemented in other manners.
- the above-mentioned apparatus embodiment is merely exemplary.
- the division of units is merely a logical functional division, and other division manner may be used in actual implementations, that is, multiple units or components may be combined or be integrated into another system, or some of the features may be ignored or not performed.
- the shown or discussed mutual coupling may be direct coupling or communication connection, and may also be indirect coupling or communication connection through some interfaces, apparatuses/devices or units, and may also be electrical, mechanical or other forms.
- the units described as separate components may or may not be physically separated.
- the components represented as units may or may not be physical units, that is, may be located in one place or be distributed to multiple network units. Some or all of the units may be selected according to actual needs to achieve the objectives of this embodiment.
- each functional unit in each of the embodiments of the present disclosure may be integrated into one processing unit, or each unit may exist alone physically, or two or more units may be integrated in one unit.
- the above-mentioned integrated unit may be implemented in the form of hardware or in the form of software functional unit.
- the integrated module unit When the integrated unit is implemented in the form of a software functional unit and is sold or used as an independent product, the integrated module unit may be stored in a non-transitory computer-readable storage medium. Based on this understanding, all or part of the processes in the method for implementing the above-mentioned embodiments of the present disclosure may also be implemented by instructing relevant hardware through a computer program.
- the computer program may be stored in a non-transitory computer-readable storage medium, which may implement the steps of each of the above-mentioned method embodiments when executed by a processor.
- the computer program includes computer program codes which may be the form of source codes, object codes, executable files, certain intermediate, and the like.
- the computer-readable medium may include any primitive or device capable of carrying the computer program codes, a recording medium, a USB flash drive, a portable hard disk, a magnetic disk, an optical disk, a computer memory, a read-only memory (ROM), a random access memory (RAM), electric carrier signals, telecommunication signals and software distribution media.
- a computer readable medium may be appropriately increased or decreased according to the requirements of legislation and patent practice in the jurisdiction. For example, in some jurisdictions, according to the legislation and patent practice, a computer readable medium does not include electric carrier signals and telecommunication signals.
Landscapes
- Engineering & Computer Science (AREA)
- Business, Economics & Management (AREA)
- Human Resources & Organizations (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Mechanical Engineering (AREA)
- Robotics (AREA)
- Economics (AREA)
- Strategic Management (AREA)
- Automation & Control Theory (AREA)
- Remote Sensing (AREA)
- Development Economics (AREA)
- Operations Research (AREA)
- General Business, Economics & Management (AREA)
- Marketing (AREA)
- Theoretical Computer Science (AREA)
- Entrepreneurship & Innovation (AREA)
- Game Theory and Decision Science (AREA)
- Aviation & Aerospace Engineering (AREA)
- Radar, Positioning & Navigation (AREA)
- Tourism & Hospitality (AREA)
- Quality & Reliability (AREA)
- Health & Medical Sciences (AREA)
- Artificial Intelligence (AREA)
- Computer Vision & Pattern Recognition (AREA)
- Evolutionary Computation (AREA)
- Medical Informatics (AREA)
- Software Systems (AREA)
- Manipulator (AREA)
- Numerical Control (AREA)
- Control Of Position, Course, Altitude, Or Attitude Of Moving Bodies (AREA)
Abstract
Description
that is, a compromise path between the planned path and the ideal path is computed and used as the current new path.
q opt2,i
q opt2,i
Claims (11)
q opt2,i
q opt2,i
Applications Claiming Priority (3)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CN201711462962.9A CN109976148B (en) | 2017-12-28 | 2017-12-28 | Robot motion path planning method, device, storage medium and terminal device |
| CN201711462962 | 2017-12-28 | ||
| CN201711462962.9 | 2017-12-28 |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| US20190202056A1 US20190202056A1 (en) | 2019-07-04 |
| US10821605B2 true US10821605B2 (en) | 2020-11-03 |
Family
ID=64899441
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| US16/026,032 Active 2039-04-22 US10821605B2 (en) | 2017-12-28 | 2018-07-02 | Robot motion path planning method, apparatus and terminal device |
Country Status (4)
| Country | Link |
|---|---|
| US (1) | US10821605B2 (en) |
| JP (1) | JP6443905B1 (en) |
| KR (1) | KR102113695B1 (en) |
| CN (1) | CN109976148B (en) |
Families Citing this family (40)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| JP6838028B2 (en) * | 2018-10-31 | 2021-03-03 | ファナック株式会社 | Automatic program correction device and automatic program correction method |
| CN109773798A (en) * | 2019-03-28 | 2019-05-21 | 大连理工大学 | Binocular vision-based double-mechanical-arm cooperative control method |
| US11179850B2 (en) * | 2019-04-24 | 2021-11-23 | Intrinsic Innovation Llc | Robot motion planning |
| CN110347162A (en) * | 2019-07-29 | 2019-10-18 | 南京市晨枭软件技术有限公司 | A kind of industrial robot path modified method and system automatically |
| WO2021026748A1 (en) * | 2019-08-13 | 2021-02-18 | 深圳市大疆创新科技有限公司 | Photography detection method and apparaus, and gimbal, system and storage medium |
| CN110763247A (en) * | 2019-10-21 | 2020-02-07 | 上海海事大学 | Robot path planning method based on combination of visual algorithm and greedy algorithm |
| CN111158365B (en) * | 2019-12-31 | 2023-05-16 | 深圳优地科技有限公司 | Path planning method, device, robot and storage medium |
| CN111752302B (en) * | 2020-02-26 | 2021-09-10 | 广州极飞科技股份有限公司 | Path planning method and device, electronic equipment and computer readable storage medium |
| CN111428919B (en) * | 2020-03-17 | 2022-07-19 | 深圳先进技术研究院 | Path planning method and device, electronic equipment and storage medium |
| CN111428928B (en) * | 2020-03-23 | 2022-08-09 | 江苏苏宁物流有限公司 | Path planning method, device, medium and computer equipment |
| CN111230888A (en) * | 2020-03-23 | 2020-06-05 | 江苏科技大学 | RGBD camera-based upper limb exoskeleton robot obstacle avoidance method |
| US11707843B2 (en) * | 2020-04-03 | 2023-07-25 | Fanuc Corporation | Initial reference generation for robot optimization motion planning |
| CN111582566B (en) * | 2020-04-26 | 2024-01-26 | 上海高仙自动化科技发展有限公司 | Path planning method and planning device, intelligent robot and storage medium |
| CN113713986A (en) * | 2020-05-25 | 2021-11-30 | 广东博智林机器人有限公司 | Spraying control method, device and equipment, storage medium and spraying device |
| CN111750862A (en) * | 2020-06-11 | 2020-10-09 | 深圳优地科技有限公司 | Multi-region-based robot path planning method, robot and terminal equipment |
| CN111649748A (en) * | 2020-06-16 | 2020-09-11 | 湖北友系互联科技有限公司 | Indoor navigation method and system |
| CN111665853B (en) * | 2020-07-07 | 2023-03-31 | 中国人民解放军国防科技大学 | Unmanned vehicle motion planning method for planning control joint optimization |
| CN111983970B (en) * | 2020-08-10 | 2022-02-18 | 上海数设科技有限公司 | Automatic obstacle avoidance planning method for fast water jet cutting line feeding |
| CN112035921B (en) * | 2020-08-25 | 2021-06-29 | 中船文化科技(北京)有限公司 | Shelter moving line planning method and device, electronic equipment and storage medium |
| CN112238456B (en) * | 2020-10-10 | 2023-03-07 | 江西洪都航空工业集团有限责任公司 | Material sheet sorting path planning method based on ant colony algorithm |
| CN112631306B (en) * | 2020-12-28 | 2021-12-14 | 深圳市普渡科技有限公司 | Robot moving path planning method and device and robot |
| CN112914601B (en) * | 2021-01-19 | 2024-04-02 | 深圳市德力凯医疗设备股份有限公司 | Obstacle avoidance method and device for mechanical arm, storage medium and ultrasonic equipment |
| CN112987724B (en) * | 2021-02-04 | 2023-05-02 | 京东科技信息技术有限公司 | Path optimization method, path optimization device, robot and storage medium |
| CN113379342B (en) * | 2021-04-28 | 2023-07-25 | 杭州中港科技有限公司 | Service management system for optimizing Internet of things based on shortest path algorithm |
| CN113263500B (en) * | 2021-05-25 | 2022-10-21 | 深圳市优必选科技股份有限公司 | Robot autonomous operation method and device, robot and storage medium |
| CN113222282B (en) * | 2021-05-31 | 2024-06-18 | 北京京东乾石科技有限公司 | Method and device for determining transport path, readable storage medium, and electronic device |
| CN113485332A (en) * | 2021-07-01 | 2021-10-08 | 深圳优地科技有限公司 | Method and device for meeting interaction of robot, robot and storage medium |
| US12007785B2 (en) * | 2021-08-31 | 2024-06-11 | Samsung Electronics Co., Ltd. | Cleaning robot capable of obtaining map of indoor space and operating method thereof |
| CN113877836B (en) * | 2021-11-05 | 2023-05-09 | 江苏昱博自动化设备有限公司 | An intelligent identification and sorting system based on visual inspection system |
| CN114815596B (en) * | 2022-03-02 | 2024-11-15 | 深圳市优必选科技股份有限公司 | A gait planning method, device, computer-readable storage medium and robot |
| CN114742270B (en) * | 2022-03-09 | 2024-12-24 | 五邑大学 | Multi-robot path planning method and electronic device based on deep reinforcement learning |
| CN114594778B (en) * | 2022-03-17 | 2024-08-02 | 华侨大学 | A global obstacle avoidance path planning method based on dichotomy and path fusion |
| CN115922688A (en) * | 2022-06-21 | 2023-04-07 | 北京小米移动软件有限公司 | Manipulator operation method and device and storage medium |
| CN115060272B (en) * | 2022-08-08 | 2022-11-29 | 农业农村部南京农业机械化研究所 | A method and system for path planning of an unmanned combine harvester |
| US12496714B2 (en) * | 2022-09-29 | 2025-12-16 | Nvidia Corporation | Collision-free motion generation |
| CN115933688B (en) * | 2022-12-28 | 2024-03-29 | 南京衍构科技有限公司 | Multi-robot cooperative work obstacle avoidance method, system, equipment and storage medium |
| CN116151036B (en) * | 2023-04-17 | 2023-07-07 | 中铁九局集团有限公司 | A path planning method and device for automatic binding of steel bars |
| CN116382099A (en) * | 2023-06-02 | 2023-07-04 | 上海数字大脑科技研究院有限公司 | A robot path scheduling planning method and system |
| WO2025156247A1 (en) * | 2024-01-26 | 2025-07-31 | 兖矿能源集团股份有限公司 | Obstacle identification and autonomous ideal-path planning method and apparatus for robot |
| CN120215513B (en) * | 2025-05-27 | 2025-07-29 | 上海楷久智能科技有限公司 | Working dog and robot collaborative operation system |
Citations (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20100121517A1 (en) * | 2008-11-10 | 2010-05-13 | Electronics And Telecommunications Research Institute | Method and apparatus for generating safe path of mobile robot |
Family Cites Families (12)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| JPH0511843A (en) * | 1991-07-05 | 1993-01-22 | Fujitsu Ltd | Robot trajectory creation method |
| JPH07141016A (en) * | 1993-11-18 | 1995-06-02 | Nissan Motor Co Ltd | Robot movement path simulation device |
| JPH08141977A (en) * | 1994-11-18 | 1996-06-04 | Nippondenso Co Ltd | Robot path point generation device and robot for drive control using the path point |
| JP5361004B2 (en) * | 2010-09-13 | 2013-12-04 | 独立行政法人国立高等専門学校機構 | Smooth path generation device and smooth path generation method |
| CN102500498B (en) * | 2011-11-11 | 2014-06-04 | 江苏科技大学 | Optimization method for spray gun track of spraying robot on irregular polyhedron |
| US8700307B1 (en) * | 2013-03-04 | 2014-04-15 | Mitsubishi Electric Research Laboratories, Inc. | Method for determining trajectories manipulators to avoid obstacles |
| CN104571113B (en) | 2015-01-20 | 2017-07-11 | 新智认知数据服务有限公司 | The paths planning method of mobile robot |
| US9607347B1 (en) * | 2015-09-04 | 2017-03-28 | Qiang Li | Systems and methods of 3D scanning and robotic application of cosmetics to human |
| US9968025B2 (en) * | 2016-01-14 | 2018-05-15 | CNH Industrial American LLC | System and method for generating and implementing an end-of-row turn path |
| CN105867381B (en) * | 2016-04-25 | 2019-03-29 | 广西大学 | A kind of industrial robot route searching optimization algorithm based on probability map |
| CN105955254B (en) * | 2016-04-25 | 2019-03-29 | 广西大学 | A kind of improved A* algorithm suitable for robot path search |
| CN106354161A (en) * | 2016-09-26 | 2017-01-25 | 湖南晖龙股份有限公司 | Robot motion path planning method |
-
2017
- 2017-12-28 CN CN201711462962.9A patent/CN109976148B/en active Active
-
2018
- 2018-07-02 US US16/026,032 patent/US10821605B2/en active Active
- 2018-07-20 JP JP2018136703A patent/JP6443905B1/en active Active
- 2018-12-27 KR KR1020180170055A patent/KR102113695B1/en active Active
Patent Citations (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20100121517A1 (en) * | 2008-11-10 | 2010-05-13 | Electronics And Telecommunications Research Institute | Method and apparatus for generating safe path of mobile robot |
Also Published As
| Publication number | Publication date |
|---|---|
| KR102113695B1 (en) | 2020-05-21 |
| JP2019119041A (en) | 2019-07-22 |
| KR20190080782A (en) | 2019-07-08 |
| CN109976148B (en) | 2022-02-22 |
| JP6443905B1 (en) | 2018-12-26 |
| CN109976148A (en) | 2019-07-05 |
| US20190202056A1 (en) | 2019-07-04 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US10821605B2 (en) | Robot motion path planning method, apparatus and terminal device | |
| US20210063577A1 (en) | Robot relocalization method and apparatus and robot using the same | |
| JP7178386B2 (en) | Target tracking method, apparatus, electronic device, storage medium, and program | |
| US11654899B2 (en) | Method and apparatus for avoidance control of vehicle, electronic device and storage medium | |
| JP2022160538A (en) | Collision detection method, device, electronic apparatus, storage medium, automatic driving vehicle, and computer program | |
| CN113119116A (en) | Mechanical arm motion planning method and device, readable storage medium and mechanical arm | |
| EP3798903A1 (en) | Method and apparatus for autonomous driving control, electronic device, and storage medium | |
| US10627805B2 (en) | Method, device, and terminal device for servo movement smoothing | |
| US20190324470A1 (en) | Charging station identifying method, device, and robot | |
| CN113110484A (en) | Gait trajectory planning method and device, readable storage medium and robot | |
| CN113139696B (en) | Trajectory prediction model construction method and trajectory prediction method and device | |
| CN111114542B (en) | Curve driving control method, device, device and medium for autonomous vehicle | |
| CN116476042B (en) | Mechanical arm kinematics inverse solution optimization method and device based on deep reinforcement learning | |
| CN114757972A (en) | Target tracking method and device, electronic equipment and computer readable storage medium | |
| CN118034284A (en) | Collision avoidance control method, device, terminal equipment and storage medium for multiple robots | |
| CN117908536A (en) | Robot obstacle avoidance method, terminal device and computer readable storage medium | |
| CN116994119A (en) | Evaluation method and device for lane line recognition, electronic equipment and storage medium | |
| US20220351495A1 (en) | Method for matching image feature point, electronic device and storage medium | |
| CN115630663A (en) | Two-dimensional code identification method and device and electronic equipment | |
| CN110861087A (en) | Robot initialization positioning method, device, mobile robot and storage medium | |
| WO2022198992A1 (en) | Method and apparatus for planning robot arm motion, and readable storage medium and robot arm | |
| CN113753076A (en) | Method and device for determining effective obstacle, electronic device and autonomous vehicle | |
| US10821604B2 (en) | Computer-implemented method for robot posture detection and robot | |
| CN118565503A (en) | Path optimization method, device and readable storage medium | |
| CN113253687A (en) | Method and device for optimizing scheduling based on arc connectivity and electronic equipment |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| AS | Assignment |
Owner name: UBTECH ROBOTICS CORP, CHINA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:XIONG, YOUJUN;TANG, JINGHUA;REEL/FRAME:046256/0384 Effective date: 20180428 |
|
| FEPP | Fee payment procedure |
Free format text: ENTITY STATUS SET TO UNDISCOUNTED (ORIGINAL EVENT CODE: BIG.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: NON FINAL ACTION MAILED |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: NOTICE OF ALLOWANCE MAILED -- APPLICATION RECEIVED IN OFFICE OF PUBLICATIONS |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT VERIFIED |
|
| STCF | Information on status: patent grant |
Free format text: PATENTED CASE |
|
| MAFP | Maintenance fee payment |
Free format text: PAYMENT OF MAINTENANCE FEE, 4TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1551); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY Year of fee payment: 4 |
|
| AS | Assignment |
Owner name: FUTRONICS (NA) CORPORATION, CALIFORNIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:UBTECH ROBOTICS CORP;REEL/FRAME:068402/0791 Effective date: 20240821 |