WO2018090769A1 - Route identification method and system - Google Patents

Route identification method and system Download PDF

Info

Publication number
WO2018090769A1
WO2018090769A1 PCT/CN2017/105844 CN2017105844W WO2018090769A1 WO 2018090769 A1 WO2018090769 A1 WO 2018090769A1 CN 2017105844 W CN2017105844 W CN 2017105844W WO 2018090769 A1 WO2018090769 A1 WO 2018090769A1
Authority
WO
WIPO (PCT)
Prior art keywords
path
search area
node
candidate
target point
Prior art date
Application number
PCT/CN2017/105844
Other languages
French (fr)
Chinese (zh)
Inventor
徐静
Original Assignee
北京京东尚科信息技术有限公司
北京京东世纪贸易有限公司
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 北京京东尚科信息技术有限公司, 北京京东世纪贸易有限公司 filed Critical 北京京东尚科信息技术有限公司
Publication of WO2018090769A1 publication Critical patent/WO2018090769A1/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION 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/00Administration; Management
    • G06Q10/08Logistics, e.g. warehousing, loading or distribution; Inventory or stock management
    • G06Q10/087Inventory or stock management, e.g. order filling, procurement or balancing against orders
    • GPHYSICS
    • G05CONTROLLING; REGULATING
    • G05DSYSTEMS FOR CONTROLLING OR REGULATING NON-ELECTRIC VARIABLES
    • G05D1/00Control of position, course or altitude of land, water, air, or space vehicles, e.g. automatic pilot
    • G05D1/02Control of position or course in two dimensions
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION 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/00Administration; Management
    • G06Q10/04Forecasting or optimisation specially adapted for administrative or management purposes, e.g. linear programming or "cutting stock problem"
    • G06Q10/047Optimisation of routes or paths, e.g. travelling salesman problem
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION 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/00Administration; Management
    • G06Q10/08Logistics, e.g. warehousing, loading or distribution; Inventory or stock management

Definitions

  • the present disclosure relates to the field of automatic control, and in particular to a path identification method and system.
  • One technical problem solved by embodiments of the present disclosure is that the warehousing robot cannot quickly identify the path within the warehousing area, thereby reducing work efficiency.
  • a method for identifying a path in a storage area comprising:
  • Path recognition is performed using nodes within the search area to obtain a path from the source point to the target point.
  • the search area is a rectangle, and the source point and the target point are respectively located on two vertices that are not adjacent to the search area.
  • the foregoing method further includes:
  • the search area is expanded, and then the nodes in the expanded search area are used for path identification.
  • expanding the search area includes:
  • using the nodes in the search area for path identification includes:
  • the source point is taken as the current node, and the current node is placed in the path list;
  • the candidate nodes with the lowest path cost among all the candidate nodes are taken as the current node, and then the step of placing the current node in the path list is performed;
  • the path list is used to obtain the path from the source point to the target point.
  • the path cost of the candidate node is the sum of the cost from the source point to the candidate node and the cost from the candidate node to the target point.
  • selecting all candidate nodes that the current node can reach in the search area includes:
  • a node that the current node next hop can reach and is not included in the path list is selected as a candidate node in the search area.
  • a system for identifying a path in a storage area comprising:
  • a region determining module configured to determine a search region according to the source point and the target point
  • the path identification module is configured to perform path identification by using nodes in the search area to obtain a path from the source point to the target point.
  • the search area is a rectangle, and the source point and the target point are respectively located on two vertices that are not adjacent to the search area.
  • the above system further includes an area adjustment module, wherein:
  • the area adjustment module is configured to expand the search area when the path identification module fails to obtain the path from the source point to the target point in the search area, and then instruct the path identification module to perform path identification by using the nodes in the expanded search area.
  • the area adjustment module determines, for each boundary line of the search area, whether the boundary line has reached the boundary of the storage area; if the boundary line does not reach the boundary of the storage area, the boundary line is moved to the outside of the search area by a specified distance, so that Form an expanded search area.
  • the path identification module includes a current node determining unit, a candidate node selecting unit, and a path acquiring unit, where:
  • a current node determining unit configured to use the source point as a current node and place the current node in the path list
  • a candidate node selecting unit configured to select all candidate nodes that the current node can reach in the search area; if all the candidate nodes do not include the target point, indicating that the current node determining unit will all the candidate nodes in the middle
  • the candidate node with the smallest path cost is taken as the current node, and the current node is placed in the path list;
  • the path obtaining unit is configured to obtain a path from the source point to the target point by using the path list in a case where the target point is included in all the candidate nodes.
  • the path cost of the candidate node is the sum of the cost from the source point to the candidate node and the cost from the candidate node to the target point.
  • the candidate node selection unit selects, within the search area, a node that the current node next hop can reach and is not included in the path list as a candidate node.
  • a system for identifying a path in a storage area including a memory and a processor, wherein:
  • a memory for storing instructions
  • a processor coupled to the memory, the processor being configured to perform the method as described in any of the above embodiments based on the instructions stored in the memory.
  • a computer readable storage medium stores computer instructions that are executed by a processor to implement any of the embodiments described above Methods.
  • FIG. 1 is an exemplary flowchart showing a path identification method in accordance with some embodiments of the present disclosure
  • FIG. 2 is an exemplary flowchart showing a path identification method according to further embodiments of the present disclosure
  • FIG. 3 is an exemplary block diagram showing search area adjustments in accordance with some embodiments of the present disclosure.
  • FIG. 4 is an exemplary block diagram showing search area adjustments in accordance with further embodiments of the present disclosure.
  • FIG. 5 is an exemplary flowchart showing a path identification method according to further embodiments of the present disclosure.
  • 6-10 are exemplary block diagrams illustrating identifying paths within a search area, in accordance with further embodiments of the present disclosure.
  • FIG. 11 is an exemplary block diagram showing a path identification system in accordance with some embodiments of the present disclosure.
  • FIG. 12 is an exemplary block diagram showing a path identification system in accordance with further embodiments of the present disclosure.
  • FIG. 13 is an exemplary block diagram showing a path recognition system according to further embodiments of the present disclosure.
  • FIG. 14 is an exemplary block diagram showing a path recognition system in accordance with further embodiments of the present disclosure.
  • FIG. 1 is an exemplary flowchart showing a path identification method in accordance with some embodiments of the present disclosure, wherein:
  • Step 101 Determine a search area according to the source point and the target point.
  • the search area is a rectangle, and the source point and the target point are respectively located on two vertices that are not adjacent to the search area.
  • the source point is not the same as the target point, and there are several cases.
  • the range of the search area is within a rectangle determined by [min_x, max_x] and [min_x, max_y].
  • Step 102 Perform path identification by using nodes in the search area to obtain a path from the source point to the target point.
  • the node that needs to be searched can be effectively reduced, and the time required for the path planning of the storage robot to be reduced is reduced, thereby significantly improving the production efficiency.
  • FIG. 2 is an exemplary flow chart showing a path identification method in accordance with further embodiments of the present disclosure, wherein:
  • Step 201 Determine a search area according to the source point and the target point.
  • Step 202 Perform path identification by using nodes in the search area.
  • step 203 it is determined whether a path from the source point to the target point can be obtained. If the path from the source point to the target point can be obtained, the process ends; if the path from the source point to the target point is not obtained in the search area, step 204 is performed.
  • step 204 the search area is expanded, and then returns to step 202 to perform path identification using the nodes in the expanded search area.
  • expanding the search area may include:
  • boundary line of the search area For each boundary line of the search area, it is judged whether the boundary line has reached the boundary of the storage area. If the boundary line does not reach the boundary of the storage area, the boundary line is moved outside the search area by a specified distance to form an expanded search area. If the boundary line has reached the boundary of the storage area, it will not be adjusted.
  • FIG. 3 is an exemplary block diagram showing search area adjustments in accordance with some embodiments of the present disclosure. As shown in FIG. 3, if the path from the source point to the target point is not obtained in the search area 31, the search area 31 is enlarged to continue the path identification in the expanded search area 32.
  • FIG. 4 is an exemplary block diagram showing search area adjustments in accordance with further embodiments of the present disclosure. As shown in FIG. 4, the path from the source point to the target point is not obtained in the search area 41. When the search area 41 is enlarged, since one boundary line 411 of the search area 41 is already located at the boundary of the storage area, it is no longer The boundary line is adjusted so that the expanded search area 42 overlaps with the boundary of the original search area 41.
  • path identification can be performed using various path identification schemes within the selected search area, and an achievable example is given below. Those skilled in the art will appreciate that the present disclosure is not limited thereto.
  • FIG. 5 is an exemplary flowchart showing a path identification method according to further embodiments of the present disclosure, in which:
  • step 501 the source point is taken as the current node.
  • step 502 the current node is placed in the path list.
  • Step 503 Select all candidate nodes that the current node can reach in the search area.
  • the node that the current node next hop can reach and is not included in the path list is selected as the candidate node in the search area.
  • step 504 it is determined whether a target point is included in all candidate nodes. If the target point is not included in all the candidate nodes, step 505 is performed; if all the candidate nodes include the target point, step 506 is performed.
  • Step 505 taking the candidate node with the smallest path cost among all candidate nodes as the current node, and then executing Step 502.
  • the path cost of the candidate node is the sum of the cost from the source point to the candidate node and the cost from the candidate node to the target point.
  • Step 506 using the path list to obtain a path from the source point to the target point.
  • the following describes the identification path in the search area by a specific example.
  • 6-10 are exemplary block diagrams illustrating identifying paths within a search area, in accordance with further embodiments of the present disclosure.
  • the source point is at A1 and the target point is at D4, thereby determining the search area 6.
  • the path list is now ⁇ A1 ⁇ .
  • the nodes reachable in the search area are A2, B2, and B1. Obviously, since only nodes in the search area are considered, the processing efficiency can be effectively improved.
  • the cost of the lateral movement is 10
  • the cost of the vertical movement is 12
  • the cost of the oblique movement is 14
  • the cost H of the current point to the target point is the cost of reaching the target point by going up and down.
  • nodes reachable in the search area are B3, A2, B1, and C1.
  • nodes reachable in the search area are A4, B4, C4, and A2.
  • nodes reachable in the search area are B4, D4, and D3, and since D4 is the target point, it can be based on the path list.
  • the path A1-B2-B3-C4-D4 is obtained as shown in FIG.
  • FIG. 11 is an exemplary block diagram showing a path identification system in accordance with some embodiments of the present disclosure. As shown in FIG. 11, the system includes a region determining module 1101 and a path identifying module 1102, wherein:
  • the area determination module 1101 is configured to determine a search area based on the source point and the target point.
  • the search area is a rectangle, and the source point and the target point are respectively located on two vertices that are not adjacent to the search area.
  • the path identification module 1102 is configured to perform path identification using nodes within the search area to obtain a path from the source point to the target point.
  • the path recognition system provided by the above embodiment of the present disclosure, by determining the search area according to the source point and the target point, the node that needs to be searched can be effectively reduced, and the time required for the path planning of the storage robot to be reduced is reduced, thereby significantly improving the production efficiency.
  • FIG. 12 is an exemplary block diagram showing a path recognition system in accordance with further embodiments of the present disclosure. Compared with the embodiment shown in FIG. 11, in the embodiment shown in FIG. 12, in addition to the area determining module 1201 and the path identifying module 1202, an area adjusting module 1203 is further included. among them:
  • the area adjustment module 1203 is configured to expand the search area when the path identification module 1202 fails to obtain the path from the source point to the target point in the search area, and then instruct the path identification module 1202 to perform the path using the nodes in the expanded search area. Identification.
  • the area adjustment module 1203 determines, for each boundary line of the search area, whether the boundary line has reached the boundary of the storage area. If the boundary line does not reach the boundary of the storage area, the boundary line is moved outside the search area by a specified distance to form an expanded search area.
  • FIG. 13 is an exemplary block diagram showing a path recognition system in accordance with further embodiments of the present disclosure.
  • the path identification module 1202 may include a current node determining unit 1301, a candidate node selecting unit 1302, and a path obtaining unit 1303, where:
  • the current node determining unit 1301 is configured to use the source point as the current node and the current node in the path list.
  • the candidate node selecting unit 1302 is configured to select all the candidate nodes that the current node can reach in the search area; if the target points are not included in all the candidate nodes, the current node determining unit 1301 is the candidate node that minimizes the path cost among all the candidate nodes. As the current node, place the current node in the path list.
  • the path cost of the candidate node is the sum of the cost from the source point to the candidate node and the cost from the candidate node to the target point.
  • the candidate node selection unit 1302 selects, in the search area, that the current node next hop can arrive, Nodes not included in the path list are included as candidate nodes.
  • the path obtaining unit 1303 is configured to obtain a path from the source point to the target point using the path list in a case where the target point is included in all the candidate nodes.
  • the functional unit modules described above may be implemented as a general purpose processor, a Programmable Logic Controller (PLC), and a Digital Signal Processor (Digital Signal Processor) for performing the functions described in the present disclosure.
  • PLC Programmable Logic Controller
  • DSP Digital Signal Processor
  • ASIC Application Specific Integrated Circuit
  • FPGA Field-Programmable Gate Array
  • FIG. 14 is an exemplary block diagram showing a path recognition system in accordance with further embodiments of the present disclosure. As shown in FIG. 14, the system can include a memory 1401 and a processor 1402. among them:
  • the memory 1401 is used to store instructions.
  • the processor 1402 is coupled to a memory 1401 that is configured to perform the methods involved in implementing any of the above-described embodiments of Figures 1, 2, and 5 based on instructions stored in the memory.
  • the system also includes a communication interface 1403 for information interaction with other devices.
  • the device further includes a bus 1404, and the processor 1402, the communication interface 1403, and the memory 1401 complete communication with each other through the bus 1404.
  • the memory 1401 in the foregoing FIG. 14 may include a high speed RAM memory, and may further include a non-volatile memory (Non-Volatile Memory, NVM for short), such as at least one disk storage.
  • NVM Non-Volatile Memory
  • the memory 1401 can also be a memory array.
  • the memory 1401 may also be partitioned, and the blocks may be combined into a virtual volume according to certain rules.
  • processor 1402 in FIG. 14 above may be a central processing unit CPU, or may be an application specific integrated circuit ASIC, or one or more integrated circuits configured to implement embodiments of the present disclosure.
  • the present disclosure also provides a computer readable storage medium storing computer instructions that, when executed by a processor, implement the methods of any of the embodiments of FIGS. 1, 2, and 5.
  • embodiments of the present disclosure may be provided as a method, apparatus, or computer program product. Accordingly, the present disclosure may employ an entirely hardware embodiment, an entirely software embodiment, or a combination of software and hardware. A form of embodiment of the aspect. Moreover, the present disclosure may take the form of a computer program product embodied on one or more computer-usable non-transitory storage media (including but not limited to disk storage, CD-ROM, optical storage, etc.) containing computer usable program code. .
  • the computer program instructions can also be stored in a computer readable memory that can direct a computer or other programmable data processing device to operate in a particular manner, such that the instructions stored in the computer readable memory produce an article of manufacture comprising the instruction device.
  • the apparatus implements the functions specified in one or more blocks of a flow or a flow and/or block diagram of the flowchart.
  • These computer program instructions can also be loaded onto a computer or other programmable data processing device such that a series of operational steps are performed on a computer or other programmable device to produce computer-implemented processing for execution on a computer or other programmable device.
  • the instructions provide steps for implementing the functions specified in one or more of the flow or in a block or blocks of a flow diagram.

Landscapes

  • Business, Economics & Management (AREA)
  • Engineering & Computer Science (AREA)
  • Economics (AREA)
  • Human Resources & Organizations (AREA)
  • General Physics & Mathematics (AREA)
  • Strategic Management (AREA)
  • Physics & Mathematics (AREA)
  • Operations Research (AREA)
  • Theoretical Computer Science (AREA)
  • Development Economics (AREA)
  • Quality & Reliability (AREA)
  • Marketing (AREA)
  • Tourism & Hospitality (AREA)
  • Entrepreneurship & Innovation (AREA)
  • General Business, Economics & Management (AREA)
  • Finance (AREA)
  • Accounting & Taxation (AREA)
  • Game Theory and Decision Science (AREA)
  • Aviation & Aerospace Engineering (AREA)
  • Radar, Positioning & Navigation (AREA)
  • Remote Sensing (AREA)
  • Automation & Control Theory (AREA)
  • Manipulator (AREA)

Abstract

A route identification method and system. The route identification method comprises: determining, by a route identification system, and according to a source node and a target node, a search area (101); and utilizing a node in the search area to identify a route, so as to obtain the route from the source node to the target node (102). The route identification method further comprises: If no route from the source node to the target node can be found in the search area, expanding the search area; and utilizing a node in the expanded search area to identify the route. The embodiment is utilized to determine, according to a source node and a target node, a search area, effectively reducing a quantity of nodes to be searched, reducing a duration of planning a route for a warehouse robot, thereby significantly increasing production efficiency.

Description

路径识别方法和系统Path identification method and system
本申请是以CN申请号为201611030282.5,申请日为2016年11月16日的申请为基础,并主张其优先权,该CN申请的公开内容在此作为整体引入本申请中。The present application is based on the application of the CN application number 201611030282.5, filed on November 16, 2016, and the priority of which is hereby incorporated by reference.
技术领域Technical field
本公开涉及自动控制领域,特别涉及一种路径识别方法和系统。The present disclosure relates to the field of automatic control, and in particular to a path identification method and system.
背景技术Background technique
随着电商业务的高速发展,来自人力成本的挑战也越来越高。为了进一步提高运营效率,目前主要采用的是工作人员按照既定路径在拣货区进行拣选的方式。但随着运营规模的扩大以及拣货区面积的增加,这种方式仍然会耗费大量的人力成本。With the rapid development of e-commerce business, the challenge from labor costs is also increasing. In order to further improve operational efficiency, the main method currently used is the selection of staff in the picking area according to the established route. However, with the expansion of operations and the increase in the area of the picking area, this method still consumes a lot of labor costs.
为了克服这一缺陷,目前还出现了运用仓储机器人来降低人工成本的方式。通过利用仓储机器人将所需要的货架移动到拣选工位,以便降低人工成本。但仓储机器人无法在仓储区域内快速识别路径,从而降低了仓储机器人的工作效率。In order to overcome this shortcoming, there are also ways to reduce the labor cost by using storage robots. By using the warehousing robot to move the required shelves to the picking station, the labor costs are reduced. However, the storage robot cannot quickly identify the path in the storage area, thereby reducing the efficiency of the storage robot.
发明内容Summary of the invention
本公开的实施例解决的一个技术问题是:仓储机器人无法在仓储区域内快速识别路径,从而降低了工作效率。One technical problem solved by embodiments of the present disclosure is that the warehousing robot cannot quickly identify the path within the warehousing area, thereby reducing work efficiency.
依据本公开的一个或多个实施例的一个方面,提供一种用于在仓储区域中识别路径的方法,包括:In accordance with an aspect of one or more embodiments of the present disclosure, a method for identifying a path in a storage area is provided, comprising:
根据源点和目标点确定搜索区域;Determining the search area based on the source point and the target point;
利用搜索区域内的节点进行路径识别,以便得到从源点到目标点的路径。Path recognition is performed using nodes within the search area to obtain a path from the source point to the target point.
可选地,搜索区域为矩形,源点和目标点分别位于搜索区域不相邻的两个顶点上。Optionally, the search area is a rectangle, and the source point and the target point are respectively located on two vertices that are not adjacent to the search area.
可选地,上述方法还包括:Optionally, the foregoing method further includes:
若未能在搜索区域内得到从源点到目标点的路径,则扩大搜索区域,然后利用扩大后搜索区域内的节点进行路径识别。If the path from the source point to the target point is not obtained in the search area, the search area is expanded, and then the nodes in the expanded search area are used for path identification.
可选地,扩大搜索区域包括:Optionally, expanding the search area includes:
对于搜索区域的每一条边界线,判断边界线是否已到达仓储区域的边界;For each boundary line of the search area, determine whether the boundary line has reached the boundary of the storage area;
若边界线未到达仓储区域的边界,则将边界线向搜索区域外部移动指定距离,以 便形成扩大的搜索区域。If the boundary line does not reach the boundary of the storage area, move the boundary line to the outside of the search area by a specified distance to An expanded search area is formed.
可选地,利用搜索区域内的节点进行路径识别包括:Optionally, using the nodes in the search area for path identification includes:
将源点作为当前节点,将当前节点放置在路径列表中;The source point is taken as the current node, and the current node is placed in the path list;
在搜索区域内选择出当前节点能够到达的全部候选节点;Selecting all candidate nodes that the current node can reach in the search area;
若全部候选节点中不包括目标点,则将全部候选节点中路径代价最小的候选节点作为当前节点,然后执行将当前节点放置在路径列表中的步骤;If the target points are not included in all the candidate nodes, the candidate nodes with the lowest path cost among all the candidate nodes are taken as the current node, and then the step of placing the current node in the path list is performed;
若全部候选节点中包括目标点,则利用路径列表得到从源点到目标点的路径。If the target point is included in all the candidate nodes, the path list is used to obtain the path from the source point to the target point.
可选地,候选节点的路径代价为从源点到候选节点的代价与从候选节点到目标点的代价之和。Optionally, the path cost of the candidate node is the sum of the cost from the source point to the candidate node and the cost from the candidate node to the target point.
可选地,在搜索区域内选择出当前节点能够到达的全部候选节点包括:Optionally, selecting all candidate nodes that the current node can reach in the search area includes:
在搜索区域内选择出当前节点下一跳能够到达、且未包括在路径列表中的节点以作为候选节点。A node that the current node next hop can reach and is not included in the path list is selected as a candidate node in the search area.
依据本公开的一个或多个实施例的另一方面,提供一种用于在仓储区域中识别路径的系统,包括:In accordance with another aspect of one or more embodiments of the present disclosure, a system for identifying a path in a storage area is provided, comprising:
区域确定模块,用于根据源点和目标点确定搜索区域;a region determining module, configured to determine a search region according to the source point and the target point;
路径识别模块,用于利用搜索区域内的节点进行路径识别,以便得到从源点到目标点的路径。The path identification module is configured to perform path identification by using nodes in the search area to obtain a path from the source point to the target point.
可选地,搜索区域为矩形,源点和目标点分别位于搜索区域不相邻的两个顶点上。Optionally, the search area is a rectangle, and the source point and the target point are respectively located on two vertices that are not adjacent to the search area.
可选地,上述系统还包括区域调整模块,其中:Optionally, the above system further includes an area adjustment module, wherein:
区域调整模块,用于在路径识别模块未能在搜索区域内得到从源点到目标点的路径的情况下,扩大搜索区域,然后指示路径识别模块利用扩大后搜索区域内的节点进行路径识别。The area adjustment module is configured to expand the search area when the path identification module fails to obtain the path from the source point to the target point in the search area, and then instruct the path identification module to perform path identification by using the nodes in the expanded search area.
可选地,区域调整模块对于搜索区域的每一条边界线,判断边界线是否已到达仓储区域的边界;若边界线未到达仓储区域的边界,则将边界线向搜索区域外部移动指定距离,以便形成扩大的搜索区域。Optionally, the area adjustment module determines, for each boundary line of the search area, whether the boundary line has reached the boundary of the storage area; if the boundary line does not reach the boundary of the storage area, the boundary line is moved to the outside of the search area by a specified distance, so that Form an expanded search area.
可选地,路径识别模块包括当前节点确定单元、候选节点选择单元和路径获取单元,其中:Optionally, the path identification module includes a current node determining unit, a candidate node selecting unit, and a path acquiring unit, where:
当前节点确定单元,用于将源点作为当前节点,将当前节点放置在路径列表中;a current node determining unit, configured to use the source point as a current node and place the current node in the path list;
候选节点选择单元,用于在搜索区域内选择出当前节点能够到达的全部候选节点;若全部候选节点中不包括目标点,则指示当前节点确定单元将全部候选节点中路 径代价最小的候选节点作为当前节点,并将当前节点放置在路径列表中;a candidate node selecting unit, configured to select all candidate nodes that the current node can reach in the search area; if all the candidate nodes do not include the target point, indicating that the current node determining unit will all the candidate nodes in the middle The candidate node with the smallest path cost is taken as the current node, and the current node is placed in the path list;
路径获取单元,用于在全部候选节点中包括目标点的情况下,利用路径列表得到从源点到目标点的路径。The path obtaining unit is configured to obtain a path from the source point to the target point by using the path list in a case where the target point is included in all the candidate nodes.
可选地,候选节点的路径代价为从源点到候选节点的代价与从候选节点到目标点的代价之和。Optionally, the path cost of the candidate node is the sum of the cost from the source point to the candidate node and the cost from the candidate node to the target point.
可选地,候选节点选择单元在搜索区域内选择出当前节点下一跳能够到达、且未包括在路径列表中的节点以作为候选节点。Optionally, the candidate node selection unit selects, within the search area, a node that the current node next hop can reach and is not included in the path list as a candidate node.
依据本公开的一个或多个实施例的另一方面,提供一种用于在仓储区域中识别路径的系统,包括存储器和处理器,其中:In accordance with another aspect of one or more embodiments of the present disclosure, a system for identifying a path in a storage area is provided, including a memory and a processor, wherein:
存储器,用于存储指令;a memory for storing instructions;
处理器,耦合到存储器,处理器被配置为基于存储器存储的指令执行实现如上述任一实施例涉及的方法。A processor coupled to the memory, the processor being configured to perform the method as described in any of the above embodiments based on the instructions stored in the memory.
依据本公开的一个或多个实施例的另一方面,提供一种计算机可读存储介质,其中,计算机可读存储介质存储有计算机指令,指令被处理器执行时实现如上述任一实施例涉及的方法。In accordance with another aspect of one or more embodiments of the present disclosure, a computer readable storage medium is provided, wherein a computer readable storage medium stores computer instructions that are executed by a processor to implement any of the embodiments described above Methods.
通过以下参照附图对本公开的示例性实施例的详细描述,本公开的其它特征及其优点将会变得清楚。Other features of the present disclosure and its advantages will be apparent from the following detailed description of exemplary embodiments.
附图说明DRAWINGS
此处所说明的附图用来提供对本公开的进一步理解,构成本申请的一部分,本公开的示意性实施例及其说明用于解释本公开,并不构成对本公开的不当限定。在附图中:The drawings described herein are provided to provide a further understanding of the present disclosure, which is a part of the present disclosure, and the description of the present disclosure and the description thereof are not intended to limit the disclosure. In the drawing:
图1为示出根据本公开一些实施例的路径识别方法的示例性流程图;FIG. 1 is an exemplary flowchart showing a path identification method in accordance with some embodiments of the present disclosure;
图2为示出根据本公开另一些实施例的路径识别方法的示例性流程图;2 is an exemplary flowchart showing a path identification method according to further embodiments of the present disclosure;
图3为示出根据本公开一些实施例的搜索区域调整的示例性框图;3 is an exemplary block diagram showing search area adjustments in accordance with some embodiments of the present disclosure;
图4为示出根据本公开另一些实施例的搜索区域调整的示例性框图;4 is an exemplary block diagram showing search area adjustments in accordance with further embodiments of the present disclosure;
图5为示出根据本公开另一些实施例的路径识别方法的示例性流程图;FIG. 5 is an exemplary flowchart showing a path identification method according to further embodiments of the present disclosure; FIG.
图6-图10为示出根据本公开另一些实施例的在搜索区域内识别路径的示例性框图;6-10 are exemplary block diagrams illustrating identifying paths within a search area, in accordance with further embodiments of the present disclosure;
图11为示出根据本公开一些实施例的路径识别系统的示例性框图; 11 is an exemplary block diagram showing a path identification system in accordance with some embodiments of the present disclosure;
图12为示出根据本公开另一些实施例的路径识别系统的示例性框图;12 is an exemplary block diagram showing a path identification system in accordance with further embodiments of the present disclosure;
图13为示出根据本公开另一些实施例的路径识别系统的示例性框图;FIG. 13 is an exemplary block diagram showing a path recognition system according to further embodiments of the present disclosure; FIG.
图14为示出根据本公开另一些实施例的路径识别系统的示例性框图。FIG. 14 is an exemplary block diagram showing a path recognition system in accordance with further embodiments of the present disclosure.
具体实施方式detailed description
下面将结合本公开实施例中的附图,对本公开实施例中的技术方案进行清楚、完整地描述,显然,所描述的实施例仅仅是本公开一部分实施例,而不是全部的实施例。基于本公开中的实施例,本领域普通技术人员在没有做出创造性劳动前提下所获得的所有其他实施例,都属于本公开保护的范围。The technical solutions in the embodiments of the present disclosure are clearly and completely described in the following with reference to the accompanying drawings in the embodiments of the present disclosure. It is obvious that the described embodiments are only a part of the embodiments of the present disclosure, and not all of the embodiments. All other embodiments obtained by a person of ordinary skill in the art based on the embodiments of the present disclosure without departing from the inventive scope are the scope of the disclosure.
图1为示出根据本公开一些实施例的路径识别方法的示例性流程图,其中:FIG. 1 is an exemplary flowchart showing a path identification method in accordance with some embodiments of the present disclosure, wherein:
步骤101,根据源点和目标点确定搜索区域。Step 101: Determine a search area according to the source point and the target point.
可选地,搜索区域为矩形,源点和目标点分别位于搜索区域不相邻的两个顶点上。Optionally, the search area is a rectangle, and the source point and the target point are respectively located on two vertices that are not adjacent to the search area.
例如,设源点的坐标为(x1,y1),目标点的坐标为(x2,y2),源点与目标点并不相同,可以有以下几种情况。For example, if the coordinates of the source point are (x1, y1) and the coordinates of the target point are (x2, y2), the source point is not the same as the target point, and there are several cases.
1)若x1<x2,y1<y2,则:1) If x1<x2, y1<y2, then:
max_x=x2,min_x=x1,max_y=y2,min_x=y1Max_x=x2,min_x=x1,max_y=y2,min_x=y1
2)若x1<x2,y1>y2,则:2) If x1<x2, y1>y2, then:
max_x=x2,min_x=x1,max_y=y1,min_x=y2Max_x=x2,min_x=x1,max_y=y1,min_x=y2
3)若x1>x2,y1>y2,则:3) If x1>x2, y1>y2, then:
max_x=x1,min_x=x2,max_y=y1,min_x=y2Max_x=x1,min_x=x2,max_y=y1,min_x=y2
4)若x1>x2,y1<y2,则:4) If x1>x2, y1<y2, then:
max_x=x1,min_x=x2,max_y=y2,min_x=y1Max_x=x1,min_x=x2,max_y=y2,min_x=y1
其中,搜索区域的范围为由[min_x,max_x]和[min_x,max_y]确定的矩形内。Wherein, the range of the search area is within a rectangle determined by [min_x, max_x] and [min_x, max_y].
步骤102,利用搜索区域内的节点进行路径识别,以便得到从源点到目标点的路径。Step 102: Perform path identification by using nodes in the search area to obtain a path from the source point to the target point.
基于本公开上述实施例提供的路径识别方法,通过根据源点和目标点确定搜索区域,能够有效减小需要搜索的节点,减少仓储机器人进行路径规划所需要的时间,从而显著提高生产效率。Based on the path identification method provided by the above embodiment of the present disclosure, by determining the search area according to the source point and the target point, the node that needs to be searched can be effectively reduced, and the time required for the path planning of the storage robot to be reduced is reduced, thereby significantly improving the production efficiency.
图2为示出根据本公开另一些实施例的路径识别方法的示例性流程图,其中:2 is an exemplary flow chart showing a path identification method in accordance with further embodiments of the present disclosure, wherein:
步骤201,根据源点和目标点确定搜索区域。 Step 201: Determine a search area according to the source point and the target point.
步骤202,利用搜索区域内的节点进行路径识别。Step 202: Perform path identification by using nodes in the search area.
步骤203,判断是否能得到从源点到目标点的路径。若能够得到从源点到目标点的路径,则结束本流程;若未能在搜索区域内得到从源点到目标点的路径,则执行步骤204。In step 203, it is determined whether a path from the source point to the target point can be obtained. If the path from the source point to the target point can be obtained, the process ends; if the path from the source point to the target point is not obtained in the search area, step 204 is performed.
步骤204,扩大搜索区域,然后返回步骤202,利用扩大后搜索区域内的节点进行路径识别。In step 204, the search area is expanded, and then returns to step 202 to perform path identification using the nodes in the expanded search area.
可选地,扩大搜索区域可包括:Optionally, expanding the search area may include:
对于搜索区域的每一条边界线,判断该边界线是否已到达仓储区域的边界。若该边界线未到达仓储区域的边界,则将边界线向搜索区域外部移动指定距离,以便形成扩大的搜索区域。若该边界线已到达仓储区域的边界,就不再对其进行调整。For each boundary line of the search area, it is judged whether the boundary line has reached the boundary of the storage area. If the boundary line does not reach the boundary of the storage area, the boundary line is moved outside the search area by a specified distance to form an expanded search area. If the boundary line has reached the boundary of the storage area, it will not be adjusted.
通过对搜索区域进行动态调整,以便得到从源点到目标点的路径。Dynamically adjust the search area to get the path from the source point to the target point.
图3为示出根据本公开一些实施例的搜索区域调整的示例性框图。如图3所示,若在搜索区域31内未得到从源点到目标点的路径,则将搜索区域31扩大,以便在扩大后的搜索区域32内继续进行路径识别。FIG. 3 is an exemplary block diagram showing search area adjustments in accordance with some embodiments of the present disclosure. As shown in FIG. 3, if the path from the source point to the target point is not obtained in the search area 31, the search area 31 is enlarged to continue the path identification in the expanded search area 32.
图4为示出根据本公开另一些实施例的搜索区域调整的示例性框图。如图4所示,在搜索区域41内未得到从源点到目标点的路径,在将搜索区域41扩大时,由于搜索区域41的一条边界线411已经位于仓储区域的边界,因此就不再调整该边界线,从而扩大后的搜索区域42存在与原搜索区域41边界重合的情况。4 is an exemplary block diagram showing search area adjustments in accordance with further embodiments of the present disclosure. As shown in FIG. 4, the path from the source point to the target point is not obtained in the search area 41. When the search area 41 is enlarged, since one boundary line 411 of the search area 41 is already located at the boundary of the storage area, it is no longer The boundary line is adjusted so that the expanded search area 42 overlaps with the boundary of the original search area 41.
对于本公开来说,可在所选定的搜索区域内采用各种路径识别方案进行路径识别,下面给出一种可实现的示例。本领域技术人员可以了解的是,本公开并不局限于此。For the present disclosure, path identification can be performed using various path identification schemes within the selected search area, and an achievable example is given below. Those skilled in the art will appreciate that the present disclosure is not limited thereto.
图5为示出根据本公开另一些实施例的路径识别方法的示例性流程图,其中:FIG. 5 is an exemplary flowchart showing a path identification method according to further embodiments of the present disclosure, in which:
步骤501,将源点作为当前节点。In step 501, the source point is taken as the current node.
步骤502,将当前节点放置在路径列表中。In step 502, the current node is placed in the path list.
步骤503,在搜索区域内选择出当前节点能够到达的全部候选节点。Step 503: Select all candidate nodes that the current node can reach in the search area.
其中,在搜索区域内选择出当前节点下一跳能够到达、且未包括在路径列表中的节点以作为候选节点。The node that the current node next hop can reach and is not included in the path list is selected as the candidate node in the search area.
步骤504,判断在全部候选节点中是否包括目标点。若全部候选节点中不包括目标点,则执行步骤505;若全部候选节点中包括目标点,则执行步骤506。In step 504, it is determined whether a target point is included in all candidate nodes. If the target point is not included in all the candidate nodes, step 505 is performed; if all the candidate nodes include the target point, step 506 is performed.
步骤505,将全部候选节点中路径代价最小的候选节点作为当前节点,然后执行 步骤502。 Step 505, taking the candidate node with the smallest path cost among all candidate nodes as the current node, and then executing Step 502.
可选地,候选节点的路径代价为从源点到候选节点的代价与从候选节点到目标点的代价之和。Optionally, the path cost of the candidate node is the sum of the cost from the source point to the candidate node and the cost from the candidate node to the target point.
步骤506,利用路径列表得到从源点到目标点的路径。 Step 506, using the path list to obtain a path from the source point to the target point.
下面通过一个具体示例对搜索区域内识别路径进行说明。The following describes the identification path in the search area by a specific example.
图6-图10为示出根据本公开另一些实施例的在搜索区域内识别路径的示例性框图。6-10 are exemplary block diagrams illustrating identifying paths within a search area, in accordance with further embodiments of the present disclosure.
如图6所示,设源点在A1,目标点在D4,则由此确定出搜索区域6。这里采用F=G+H来确定每个节点的路径代价(显示在相应节点的左上角),其中G为从源点到当前点的代价(显示在相应节点的左下角),H为从当前点到目标点的代价(显示在相应节点的右下角)。As shown in FIG. 6, the source point is at A1 and the target point is at D4, thereby determining the search area 6. Here F=G+H is used to determine the path cost of each node (displayed in the upper left corner of the corresponding node), where G is the cost from the source point to the current point (displayed in the lower left corner of the corresponding node), H is from the current The cost of the point to the target point (displayed in the lower right corner of the corresponding node).
将A1放入路径列表中。此时路径列表为{A1}。Put A1 in the path list. The path list is now {A1}.
从A1出发,在搜索区域内可到达的节点为A2、B2和B1。显然,由于仅考虑搜索区域内的节点,因此可有效提高处理效率。Starting from A1, the nodes reachable in the search area are A2, B2, and B1. Obviously, since only nodes in the search area are considered, the processing efficiency can be effectively improved.
这里设横向移动的成本为10,纵向移动的成本为12,斜向移动的成本为14,当前点到目标点的代价H为通过上下左右到达目标点的成本。Here, the cost of the lateral movement is 10, the cost of the vertical movement is 12, the cost of the oblique movement is 14, and the cost H of the current point to the target point is the cost of reaching the target point by going up and down.
通过计算A2、B2、B1的成本,可知B2的F值最小,因此将B2放入路径列表中。此时,路径列表为{A1、B2}。By calculating the cost of A2, B2, and B1, it can be seen that the F value of B2 is the smallest, so B2 is placed in the path list. At this point, the path list is {A1, B2}.
如图7所示,从B2出发,在搜索区域内可到达的节点(不包括障碍物A3、C3、C2,以及路径列表中的A1)为B3、A2、B1和C1。As shown in FIG. 7, starting from B2, nodes reachable in the search area (excluding obstacles A3, C3, C2, and A1 in the path list) are B3, A2, B1, and C1.
通过计算A2、B1、B3、C1的成本,可知B3的F值最小,因此将B3放入路径列表。此时,路径列表为{A1、B2、B3}。By calculating the cost of A2, B1, B3, and C1, it can be seen that the F value of B3 is the smallest, so B3 is placed in the path list. At this point, the path list is {A1, B2, B3}.
如图8所示,从B3出发,在搜索区域内可到达的节点(不包括障碍物A3、C3、C2,以及路径列表中的A1、B2)为A4、B4、C4和A2。As shown in FIG. 8, starting from B3, nodes reachable in the search area (excluding obstacles A3, C3, C2, and A1, B2 in the path list) are A4, B4, C4, and A2.
通过计算A4、B4、C4、A2的成本,可知C4的F值最小,因此将C4放入路径列表。此时,路径列表为{A1、B2、B3、C4}。By calculating the cost of A4, B4, C4, and A2, it can be seen that the F value of C4 is the smallest, so C4 is placed in the path list. At this point, the path list is {A1, B2, B3, C4}.
如图9所示,从C4出发,在搜索区域内可到达的节点(不包括障碍物C3,以及路径列表中的B3)为B4、D4和D3,由于D4就是目标点,从而可根据路径列表得到路径A1-B2-B3-C4-D4,如图10所示。As shown in FIG. 9, starting from C4, nodes reachable in the search area (excluding obstacle C3, and B3 in the path list) are B4, D4, and D3, and since D4 is the target point, it can be based on the path list. The path A1-B2-B3-C4-D4 is obtained as shown in FIG.
显然,由于在搜索区域内进行路径规划,因此可有效减少搜索不必要的分支,从 而减少规划路径的时间,提高生产效率。Obviously, because of the path planning in the search area, it can effectively reduce the unnecessary branches of the search. Reduce the time of the planning path and increase production efficiency.
图11为示出根据本公开一些实施例的路径识别系统的示例性框图。如图11所示,该系统包括区域确定模块1101和路径识别模块1102,其中:11 is an exemplary block diagram showing a path identification system in accordance with some embodiments of the present disclosure. As shown in FIG. 11, the system includes a region determining module 1101 and a path identifying module 1102, wherein:
区域确定模块1101用于根据源点和目标点确定搜索区域。The area determination module 1101 is configured to determine a search area based on the source point and the target point.
可选地,搜索区域为矩形,源点和目标点分别位于搜索区域不相邻的两个顶点上。Optionally, the search area is a rectangle, and the source point and the target point are respectively located on two vertices that are not adjacent to the search area.
路径识别模块1102用于利用搜索区域内的节点进行路径识别,以便得到从源点到目标点的路径。The path identification module 1102 is configured to perform path identification using nodes within the search area to obtain a path from the source point to the target point.
基于本公开上述实施例提供的路径识别系统,通过根据源点和目标点确定搜索区域,能够有效减小需要搜索的节点,减少仓储机器人进行路径规划所需要的时间,从而显著提高生产效率。According to the path recognition system provided by the above embodiment of the present disclosure, by determining the search area according to the source point and the target point, the node that needs to be searched can be effectively reduced, and the time required for the path planning of the storage robot to be reduced is reduced, thereby significantly improving the production efficiency.
图12为示出根据本公开另一些实施例的路径识别系统的示例性框图。与图11所示实施例相比,在图12所示实施例中,除区域确定模块1201和路径识别模块1202之外,还包括区域调整模块1203。其中:FIG. 12 is an exemplary block diagram showing a path recognition system in accordance with further embodiments of the present disclosure. Compared with the embodiment shown in FIG. 11, in the embodiment shown in FIG. 12, in addition to the area determining module 1201 and the path identifying module 1202, an area adjusting module 1203 is further included. among them:
区域调整模块1203用于在路径识别模块1202未能在搜索区域内得到从源点到目标点的路径的情况下,扩大搜索区域,然后指示路径识别模块1202利用扩大后搜索区域内的节点进行路径识别。The area adjustment module 1203 is configured to expand the search area when the path identification module 1202 fails to obtain the path from the source point to the target point in the search area, and then instruct the path identification module 1202 to perform the path using the nodes in the expanded search area. Identification.
可选地,区域调整模块1203对于搜索区域的每一条边界线,判断边界线是否已到达仓储区域的边界。若边界线未到达仓储区域的边界,则将边界线向搜索区域外部移动指定距离,以便形成扩大的搜索区域。Optionally, the area adjustment module 1203 determines, for each boundary line of the search area, whether the boundary line has reached the boundary of the storage area. If the boundary line does not reach the boundary of the storage area, the boundary line is moved outside the search area by a specified distance to form an expanded search area.
图13为示出根据本公开另一些实施例的路径识别系统的示例性框图。其中,路径识别模块1202可包括当前节点确定单元1301、候选节点选择单元1302和路径获取单元1303,其中:FIG. 13 is an exemplary block diagram showing a path recognition system in accordance with further embodiments of the present disclosure. The path identification module 1202 may include a current node determining unit 1301, a candidate node selecting unit 1302, and a path obtaining unit 1303, where:
当前节点确定单元1301用于将源点作为当前节点,将当前节点放置在路径列表中。The current node determining unit 1301 is configured to use the source point as the current node and the current node in the path list.
候选节点选择单元1302用于在搜索区域内选择出当前节点能够到达的全部候选节点;若全部候选节点中不包括目标点,则指示当前节点确定单元1301将全部候选节点中路径代价最小的候选节点作为当前节点,并将当前节点放置在路径列表中。The candidate node selecting unit 1302 is configured to select all the candidate nodes that the current node can reach in the search area; if the target points are not included in all the candidate nodes, the current node determining unit 1301 is the candidate node that minimizes the path cost among all the candidate nodes. As the current node, place the current node in the path list.
可选地,候选节点的路径代价为从源点到候选节点的代价与从候选节点到目标点的代价之和。Optionally, the path cost of the candidate node is the sum of the cost from the source point to the candidate node and the cost from the candidate node to the target point.
可选地,候选节点选择单元1302在搜索区域内选择出当前节点下一跳能够到达、 且未包括在路径列表中的节点以作为候选节点。Optionally, the candidate node selection unit 1302 selects, in the search area, that the current node next hop can arrive, Nodes not included in the path list are included as candidate nodes.
路径获取单元1303用于在全部候选节点中包括目标点的情况下,利用路径列表得到从源点到目标点的路径。The path obtaining unit 1303 is configured to obtain a path from the source point to the target point using the path list in a case where the target point is included in all the candidate nodes.
可选地,在上面所描述的功能单元模块可以实现为用于执行本公开所描述功能的通用处理器、可编程逻辑控制器(Programmable Logic Controller,简称:PLC)、数字信号处理器(Digital Signal Processor,简称:DSP)、专用集成电路(Application Specific Integrated Circuit,简称:ASIC)、现场可编程门阵列(Field-Programmable Gate Array,简称:FPGA)或者其他可编程逻辑器件、分立门或者晶体管逻辑器件、分立硬件组件或者其任意适当组合。Alternatively, the functional unit modules described above may be implemented as a general purpose processor, a Programmable Logic Controller (PLC), and a Digital Signal Processor (Digital Signal Processor) for performing the functions described in the present disclosure. Processor, referred to as DSP), Application Specific Integrated Circuit (ASIC), Field-Programmable Gate Array (FPGA) or other programmable logic devices, discrete gates or transistor logic devices , discrete hardware components, or any suitable combination thereof.
图14为示出根据本公开另一些实施例的路径识别系统的示例性框图。如图14所示,该系统可包括存储器1401和处理器1402。其中:FIG. 14 is an exemplary block diagram showing a path recognition system in accordance with further embodiments of the present disclosure. As shown in FIG. 14, the system can include a memory 1401 and a processor 1402. among them:
存储器1401用于存储指令。The memory 1401 is used to store instructions.
处理器1402耦合到存储器1401,处理器1402被配置为基于存储器存储的指令执行实现上述图1、图2和图5中任一实施例涉及的方法。The processor 1402 is coupled to a memory 1401 that is configured to perform the methods involved in implementing any of the above-described embodiments of Figures 1, 2, and 5 based on instructions stored in the memory.
此外,该系统还包括通信接口1403,用于与其它设备进行信息交互。同时,该装置还包括总线1404,处理器1402、通信接口1403、以及存储器1401通过总线1404完成相互间的通信。In addition, the system also includes a communication interface 1403 for information interaction with other devices. At the same time, the device further includes a bus 1404, and the processor 1402, the communication interface 1403, and the memory 1401 complete communication with each other through the bus 1404.
其中,上述图14中的存储器1401可以包含高速RAM存储器,也可还包括非易失性存储器(Non-Volatile Memory,简称:NVM),例如至少一个磁盘存储器。存储器1401也可以是存储器阵列。存储器1401还可能被分块,并且块可按一定的规则组合成虚拟卷。The memory 1401 in the foregoing FIG. 14 may include a high speed RAM memory, and may further include a non-volatile memory (Non-Volatile Memory, NVM for short), such as at least one disk storage. The memory 1401 can also be a memory array. The memory 1401 may also be partitioned, and the blocks may be combined into a virtual volume according to certain rules.
此外,上述图14中的处理器1402可以是一个中央处理器CPU,或者可以是专用集成电路ASIC,或者是被配置成实施本公开实施例的一个或多个集成电路。Furthermore, processor 1402 in FIG. 14 above may be a central processing unit CPU, or may be an application specific integrated circuit ASIC, or one or more integrated circuits configured to implement embodiments of the present disclosure.
本公开还提供一种计算机可读存储介质,其中计算机可读存储介质存储有计算机指令,指令被处理器执行时实现如图1、图2和图5中任一实施例涉及的方法。The present disclosure also provides a computer readable storage medium storing computer instructions that, when executed by a processor, implement the methods of any of the embodiments of FIGS. 1, 2, and 5.
通过实施本公开,能够有效减小需要搜索的节点,减少仓储机器人进行路径规划所需要的时间,从而显著提高生产效率。随着仓储面积的增加,本公开的优势会更加明显。By implementing the present disclosure, it is possible to effectively reduce the nodes that need to be searched, and reduce the time required for the storage robot to perform path planning, thereby significantly improving production efficiency. As the storage area increases, the advantages of the present disclosure will become more apparent.
本领域内的技术人员应明白,本公开的实施例可提供为方法、装置、或计算机程序产品。因此,本公开可采用完全硬件实施例、完全软件实施例、或结合软件和硬件 方面的实施例的形式。而且,本公开可采用在一个或多个其中包含有计算机可用程序代码的计算机可用非瞬时性存储介质(包括但不限于磁盘存储器、CD-ROM、光学存储器等)上实施的计算机程序产品的形式。Those skilled in the art will appreciate that embodiments of the present disclosure may be provided as a method, apparatus, or computer program product. Accordingly, the present disclosure may employ an entirely hardware embodiment, an entirely software embodiment, or a combination of software and hardware. A form of embodiment of the aspect. Moreover, the present disclosure may take the form of a computer program product embodied on one or more computer-usable non-transitory storage media (including but not limited to disk storage, CD-ROM, optical storage, etc.) containing computer usable program code. .
本公开是参照根据本公开实施例的方法、设备(系统)和计算机程序产品的流程图和/或方框图来描述的。应理解可由计算机程序指令实现流程图和/或方框图中的每一流程和/或方框以及流程图和/或方框图中的流程和/或方框的结合。可提供这些计算机程序指令到通用计算机、专用计算机、嵌入式处理机或其他可编程数据处理设备的处理器以产生一个机器,使得通过计算机或其他可编程数据处理设备的处理器执行的指令产生用于实现在流程图一个流程或多个流程和/或方框图一个方框或多个方框中指定的功能的装置。The present disclosure is described with reference to flowchart illustrations and/or block diagrams of methods, apparatus, and computer program products according to embodiments of the present disclosure. It will be understood that each flow and/or block of the flowchart illustrations and/or FIG. These computer program instructions can be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing device to produce a machine for the execution of instructions for execution by a processor of a computer or other programmable data processing device. Means for implementing the functions specified in one or more of the flow or in a block or blocks of the flow chart.
这些计算机程序指令也可存储在能引导计算机或其他可编程数据处理设备以特定方式工作的计算机可读存储器中,使得存储在该计算机可读存储器中的指令产生包括指令装置的制造品,该指令装置实现在流程图一个流程或多个流程和/或方框图一个方框或多个方框中指定的功能。The computer program instructions can also be stored in a computer readable memory that can direct a computer or other programmable data processing device to operate in a particular manner, such that the instructions stored in the computer readable memory produce an article of manufacture comprising the instruction device. The apparatus implements the functions specified in one or more blocks of a flow or a flow and/or block diagram of the flowchart.
这些计算机程序指令也可装载到计算机或其他可编程数据处理设备上,使得在计算机或其他可编程设备上执行一系列操作步骤以产生计算机实现的处理,从而在计算机或其他可编程设备上执行的指令提供用于实现在流程图一个流程或多个流程和/或方框图一个方框或多个方框中指定的功能的步骤。These computer program instructions can also be loaded onto a computer or other programmable data processing device such that a series of operational steps are performed on a computer or other programmable device to produce computer-implemented processing for execution on a computer or other programmable device. The instructions provide steps for implementing the functions specified in one or more of the flow or in a block or blocks of a flow diagram.
本公开的描述是为了示例和描述起见而给出的,而并不是无遗漏的或者将本公开限于所公开的形式。很多修改和变化对于本领域的普通技术人员而言是显然的。选择和描述实施例是为了更好说明本公开的原理和实际应用,并且使本领域的普通技术人员能够理解本公开从而设计适于特定用途的带有各种修改的各种实施例。 The description of the present disclosure has been presented for purposes of illustration and description. Many modifications and variations will be apparent to those skilled in the art. The embodiment was chosen and described in order to best explain the principles and embodiments of the embodiments of the invention

Claims (16)

  1. 一种路径识别方法,包括:A path identification method includes:
    根据源点和目标点确定搜索区域;Determining the search area based on the source point and the target point;
    利用所述搜索区域内的节点进行路径识别,以便得到从所述源点到所述目标点的路径。Path identification is performed using nodes within the search area to obtain a path from the source point to the target point.
  2. 根据权利要求1所述的方法,其中,The method of claim 1 wherein
    所述搜索区域为矩形,所述源点和所述目标点分别位于所述搜索区域不相邻的两个顶点上。The search area is a rectangle, and the source point and the target point are respectively located on two vertices that are not adjacent to the search area.
  3. 根据权利要求1所述的方法,还包括:The method of claim 1 further comprising:
    若未能在所述搜索区域内得到从所述源点到所述目标点的路径,则扩大所述搜索区域,然后利用扩大后搜索区域内的节点进行路径识别。If the path from the source point to the target point is not obtained in the search area, the search area is expanded, and then the path identification is performed using the nodes in the expanded search area.
  4. 根据权利要求3所述的方法,其中,The method of claim 3, wherein
    扩大所述搜索区域包括:Expanding the search area includes:
    对于所述搜索区域的每一条边界线,在所述边界线未到达仓储区域的边界的情况下,则将所述边界线向所述搜索区域外部移动指定距离,以便形成扩大的搜索区域。For each boundary line of the search area, in a case where the boundary line does not reach the boundary of the storage area, the boundary line is moved outside the search area by a specified distance to form an expanded search area.
  5. 根据权利要求1-4中任一项所述的方法,其中,A method according to any one of claims 1 to 4, wherein
    利用所述搜索区域内的节点进行路径识别包括:Path identification using nodes within the search area includes:
    将源点作为当前节点,将所述当前节点放置在路径列表中;Using the source point as the current node, placing the current node in the path list;
    在所述搜索区域内选择出所述当前节点能够到达的全部候选节点;Selecting all candidate nodes that the current node can reach in the search area;
    若所述全部候选节点中不包括所述目标点,则将所述全部候选节点中路径代价最小的候选节点作为当前节点,然后执行将所述当前节点放置在路径列表中的步骤;If the target point is not included in all the candidate nodes, the candidate node with the lowest path cost among all the candidate nodes is taken as the current node, and then the step of placing the current node in the path list is performed;
    若所述全部候选节点中包括所述目标点,则利用所述路径列表得到从所述源点到所述目标点的路径。If the target point is included in all the candidate nodes, the path from the source point to the target point is obtained by using the path list.
  6. 根据权利要求5所述的方法,其中, The method of claim 5, wherein
    所述候选节点的路径代价为从所述源点到所述候选节点的代价与从所述候选节点到所述目标点的代价之和。The path cost of the candidate node is the sum of the cost from the source point to the candidate node and the cost from the candidate node to the target point.
  7. 根据权利要求5所述的方法,其中,The method of claim 5, wherein
    选择全部候选节点包括:Select all candidate nodes including:
    在所述搜索区域内选择出所述当前节点下一跳能够到达、且未包括在所述路径列表中的节点以作为候选节点。A node that the current node next hop can reach and is not included in the path list is selected as a candidate node in the search area.
  8. 一种路径识别系统,包括:A path identification system comprising:
    区域确定模块,被配置于根据源点和目标点确定搜索区域;a region determining module configured to determine a search region according to the source point and the target point;
    路径识别模块,被配置于利用所述搜索区域内的节点进行路径识别,以便得到从所述源点到所述目标点的路径。The path identification module is configured to perform path identification using a node within the search area to obtain a path from the source point to the target point.
  9. 根据权利要求8所述的系统,其中,The system of claim 8 wherein
    所述搜索区域为矩形,所述源点和所述目标点分别位于所述搜索区域不相邻的两个顶点上。The search area is a rectangle, and the source point and the target point are respectively located on two vertices that are not adjacent to the search area.
  10. 根据权利要求8所述的系统,其中,所述系统还包括:The system of claim 8 wherein said system further comprises:
    区域调整模块,被配置为在路径识别模块未能在所述搜索区域内得到从所述源点到所述目标点的路径的情况下,扩大所述搜索区域,然后指示路径识别模块利用扩大后搜索区域内的节点进行路径识别。The area adjustment module is configured to expand the search area when the path identification module fails to obtain a path from the source point to the target point in the search area, and then instruct the path identification module to utilize the expanded The nodes in the search area perform path identification.
  11. 根据权利要求10所述的系统,其中,The system of claim 10 wherein
    区域调整模块被配置为对于所述搜索区域的每一条边界线,在所述边界线未到达仓储区域的边界的情况下,则将所述边界线向所述搜索区域外部移动指定距离,以便形成扩大的搜索区域。The area adjustment module is configured to, for each boundary line of the search area, move the boundary line to a distance outside the search area to form a boundary if the boundary line does not reach the boundary of the storage area Expanded search area.
  12. 根据权利要求8-11中任一项所述的系统,其中,路径识别模块包括:The system of any of claims 8-11, wherein the path identification module comprises:
    当前节点确定单元,被配置为将源点作为当前节点,将所述当前节点放置在路径列表中; a current node determining unit configured to use the source point as a current node and place the current node in a path list;
    候选节点选择单元,被配置为在所述搜索区域内选择出所述当前节点能够到达的全部候选节点;若所述全部候选节点中不包括所述目标点,则指示当前节点确定单元将所述全部候选节点中路径代价最小的候选节点作为当前节点,并将所述当前节点放置在路径列表中;a candidate node selecting unit, configured to select all candidate nodes that the current node can reach in the search area; if the target points are not included in all the candidate nodes, indicating that the current node determining unit is to a candidate node with the smallest path cost among all candidate nodes as the current node, and placing the current node in the path list;
    路径获取单元,被配置为在所述全部候选节点中包括所述目标点的情况下,利用所述路径列表得到从所述源点到所述目标点的路径。The path obtaining unit is configured to obtain a path from the source point to the target point by using the path list in a case where the target point is included in all of the candidate nodes.
  13. 根据权利要求12所述的系统,其中,The system of claim 12, wherein
    所述候选节点的路径代价为从所述源点到所述候选节点的代价与从所述候选节点到所述目标点的代价之和。The path cost of the candidate node is the sum of the cost from the source point to the candidate node and the cost from the candidate node to the target point.
  14. 根据权利要求12所述的系统,其中,The system of claim 12, wherein
    候选节点选择单元被配置为在所述搜索区域内选择出所述当前节点下一跳能够到达、且未包括在所述路径列表中的节点以作为候选节点。The candidate node selection unit is configured to select, within the search area, a node that the current node next hop can reach and that is not included in the path list as a candidate node.
  15. 一种路径识别系统,包括:A path identification system comprising:
    存储器,被配置为存储指令;a memory configured to store instructions;
    处理器,耦合到所述存储器,所述处理器被配置为基于所述存储器存储的指令执行实现如权利要求1-7中任一项所述的方法。A processor coupled to the memory, the processor being configured to perform the method of any of claims 1-7 based on instructions stored by the memory.
  16. 一种计算机可读存储介质,其中,所述计算机可读存储介质存储有计算机指令,所述指令被处理器执行时实现如权利要求1-7中任一项所述的方法。 A computer readable storage medium, wherein the computer readable storage medium stores computer instructions that, when executed by a processor, implement the method of any of claims 1-7.
PCT/CN2017/105844 2016-11-16 2017-10-12 Route identification method and system WO2018090769A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201611030282.5A CN106447271A (en) 2016-11-16 2016-11-16 Method and system for recognizing path in storage area
CN201611030282.5 2016-11-16

Publications (1)

Publication Number Publication Date
WO2018090769A1 true WO2018090769A1 (en) 2018-05-24

Family

ID=58221477

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2017/105844 WO2018090769A1 (en) 2016-11-16 2017-10-12 Route identification method and system

Country Status (2)

Country Link
CN (1) CN106447271A (en)
WO (1) WO2018090769A1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110377019A (en) * 2018-09-05 2019-10-25 天津京东深拓机器人科技有限公司 A kind of route generating method and device

Families Citing this family (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106447271A (en) * 2016-11-16 2017-02-22 北京京东尚科信息技术有限公司 Method and system for recognizing path in storage area
CN108858179B (en) * 2017-05-09 2020-11-24 北京京东尚科信息技术有限公司 Method and device for determining traveling path of sorting robot
GB2570119B (en) * 2018-01-10 2022-06-08 Ocado Innovation Ltd A controller and method for transporting devices
CN110375735B (en) * 2018-09-18 2021-05-25 北京京东乾石科技有限公司 Path planning method and device
CN110941735B (en) * 2018-09-25 2023-11-03 北京京东振世信息技术有限公司 Directed graph-based path searching method and system, medium and computer system
CN109697529B (en) * 2018-12-21 2021-08-31 浙江心怡供应链管理有限公司 Flexible task allocation method based on local area double-nearest neighbor positioning

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040008895A1 (en) * 2000-07-07 2004-01-15 Matthias Hessling Method and system for encoding, decoding and/or for transmitting locating information
JP4998379B2 (en) * 2008-06-13 2012-08-15 株式会社デンソー Navigation device and program for navigation device
CN103744428A (en) * 2014-01-17 2014-04-23 哈尔滨工程大学 Unmanned surface vehicle path planning method based on neighborhood intelligent water drop algorithm
CN106447271A (en) * 2016-11-16 2017-02-22 北京京东尚科信息技术有限公司 Method and system for recognizing path in storage area

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103278171A (en) * 2013-05-23 2013-09-04 中国地质大学(武汉) Indoor emergency path navigation method

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040008895A1 (en) * 2000-07-07 2004-01-15 Matthias Hessling Method and system for encoding, decoding and/or for transmitting locating information
JP4998379B2 (en) * 2008-06-13 2012-08-15 株式会社デンソー Navigation device and program for navigation device
CN103744428A (en) * 2014-01-17 2014-04-23 哈尔滨工程大学 Unmanned surface vehicle path planning method based on neighborhood intelligent water drop algorithm
CN106447271A (en) * 2016-11-16 2017-02-22 北京京东尚科信息技术有限公司 Method and system for recognizing path in storage area

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110377019A (en) * 2018-09-05 2019-10-25 天津京东深拓机器人科技有限公司 A kind of route generating method and device

Also Published As

Publication number Publication date
CN106447271A (en) 2017-02-22

Similar Documents

Publication Publication Date Title
WO2018090769A1 (en) Route identification method and system
CN107898393B (en) Block adjusting method and device for cleaning robot and robot
US9102062B2 (en) Apparatus and method for planning path of robot, and the recording media storing the program for performing the method
CN107837044B (en) Partitioned cleaning method and device of cleaning robot and robot
US9207678B2 (en) Method and apparatus for constructing map for mobile robot
US10824166B2 (en) Methods and systems of distributing task regions for a plurality of cleaning devices
CN109540155A (en) A kind of path planning and navigation method, computer installation and the computer readable storage medium of sweeping robot
CN105652876A (en) Mobile robot indoor route planning method based on array map
US20130253827A1 (en) Apparatus for fast path search by learning heuristic function and method thereof
CN107491068B (en) Mobile robot path planning method and device and path planning equipment
CN109737980A (en) A kind of air navigation aid and its corresponding robot
CN108876024A (en) Path planning, path real-time optimization method and device, storage medium
JP2003233768A (en) Dual dijkstra&#39;s algorithm for searching a plurality of routes
JP2009053849A (en) Path search system, path search method, and autonomous traveling body
JP2019500691A (en) Action plan of fast search randomized feedback subject
CN109341698B (en) Path selection method and device for mobile robot
CN114705196B (en) Self-adaptive heuristic global path planning method and system for robot
JP2012068895A (en) Robot
CN109459048A (en) Map loading method and equipment for robot
KR20180094463A (en) Method for saving and loading of slam map
CN111736582A (en) Path processing method and device, electronic equipment and computer readable storage medium
JP2013041532A (en) Program, information processing method, and device for patrol path determination
Zhang et al. Improve RRT algorithm for path planning in complex environments
CN112764413B (en) Robot path planning method
TW202014880A (en) Expandable mobile platform

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 17871167

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 06/09/2019)

122 Ep: pct application non-entry in european phase

Ref document number: 17871167

Country of ref document: EP

Kind code of ref document: A1