MRMP A*

A*

理论

参考链接如下:
[运动规划入门 | 2. 白话A*,从原理到Matlab实现]:https://www.guyuehome.com/6560
在学习完Dijkstra算法后可知,Dijkstra在运行的时候会花费很多精力去访问一些对规划结果没有贡献的节点,如果Dijkstra在搜索的时候能够带有目的性地去搜索,想必能够大大提高搜索的效率,Dijkstra和贪婪算法结合的A*算法就应运而生。两种算法的核心思想区别主要如下:

AlgorithmCost Function
Dijkstrag(n)
A*f(n) = g(n) + h(n)

其中g(n)表示从起点到节点n的累计代价估计,h(n)表示从节点n到终点的最小代价估计。更形象地可表示为下图,其中g(n)和h(n)具体的值会因选择的计算函数而异,例如:g(n)可选择为距离起点的欧几里德距离,而h(n)可选择为距离终点的欧几里德距离。
fn

算法流程
  • Maintain a priority queue to store all the nodes to be expanded
  • The heuristic function h(n) for all nodes are pre-defined
  • The priority queue is initialized with the start state X S X_S XS
  • Assign g ( X S ) = 0 g(X_S)=0 g(XS)=0, and g ( n ) = inf ⁡ g(n)=\inf g(n)=inf for all other nodes in the graph
  • Loop
    • If the queue is empty, return FALSE; break;
    • Remove the node “n” with the lowest f ( n ) = g ( n ) + h ( n ) f(n)=g(n)+h(n) f(n)=g(n)+h(n) from the priority queue
    • Mark node “n” as expanded
    • If the node “n” is the goal state, return TRUE; break;
    • For all unexpanded neighbors “m” of node “n”
      • If g ( m ) = inf ⁡ g(m) = \inf g(m)=inf
        • g ( m ) = g ( n ) + C n m g(m)= g(n) + C_{nm} g(m)=g(n)+Cnm
        • Push node “m” into the queue
      • If g ( m ) > g ( n ) + C n m g(m) > g(n) + C_{nm} g(m)>g(n)+Cnm
        • g ( m ) = g ( n ) + C n m g(m)= g(n) + C_{nm} g(m)=g(n)+Cnm
  • End loop
A*的最优性

A*算法的启发函数可纳性限制如下:

h ( n ) ≤ h ∗ ( n ) h(n)\leq h^*(n) h(n)h(n)

其中h*(n)是当前节点到达终点的最小代价。上式表明,启发函数的值不能大于当前节点到终点的实际距离。
A*算法的启发函数一致性限制如下:

h ( n ) ≤ c n m + h ( m ) h(n)\leq c_{nm}+h(m) h(n)cnm+h(m)

其中 c n m c_{nm} cnm为节点n到节点m的代价。上是表明对每个节点n的任意后继节点m,节点n的h(n)不大于从n到m的总代价与m的h(m)之和。在A*中,只要h(n)满足一致性,那么h(n)必然满足可纳性。

  • 如果h(n)满足可纳性,那么h(n)是 admisssible(optimistic);
  • 如果h(n)是 admisssible 的,那么A*搜索到的路径是最优的。
启发函数的选择
h(n)可行性
欧几里德距离(L2范数)总是可行的
曼哈顿距离(L1范数)四连接运动可行,八连接运动不可行
L ∞ \infty 范数总是可行的
0总是可行的(退化为Dijkstra)

由于栅格地图的结构化,使得能够找出一个h(n)=h*(n),使得启发函数更加tight,即Diagonal Heuristic。从而使得搜索时间大大降低,在3D地图中甚至能有20-50倍的差距。

dx = abx(node.x - goal.x);
dy = abx(node.y - goal.y);
h = (dx + dy) + (sqrt(2)-2)*min(dx, dy);
Tie Breaker(\neq)

由于一些节点他们的f(n)相同(h(n)不同),而导致搜索的范围加大,降低了搜索效率,因此考虑打破这些节点的平衡。

  1. h = h ∗ ( 1.0 + p ) , p < min ⁡ c o s t   o f   1   w t e p e x p e c t e d max ⁡ p a t h   c o s t h=h*(1.0+p),\quad p<\frac{\min cost\ of\ 1\ wtep}{expected\max path\ cost} h=h(1.0+p),p<expectedmaxpath costmincost of 1 wtep,轻微打破了h(n)的 admissibility ;
  2. f(n)相同的时候,比较h(n),采用比较小的h(n);
  3. 为路径加上倾向性,例如对角线;
    dx1 = abx(node.x - goal.x);
    dy1 = abx(node.y - goal.y);
    dx2 = abx(start.x - goal.x);
    dy2 = abx(start.y - goal.y);
    cross = abs(dx1*dy2 - dx2*dy1);
    h = h + cross*0.001;
    

实践

在学习深蓝学院《移动机器人运动规划》课程中,对于作业代码参考了以下两个链接:
[Amos-Chen98]:https://github.com/Amos-Chen98/mobile_robots_motion_planning
[Kailin Tong]:https://github.com/KailinTong/Motion-Planning-for-Mobile-Robots
主要参考Amos-Chen98的作业源码和CPP代码,Kailin Tong的PPT和MATLAB代码。
其中在 Kailin Tong 的matlab代码中发现,在最后的路径点建立中,多出了以下三行代码,使得最后的路径 path 的起始点重复了两次,注释就好。

    assert(index==1, 'Something wrong!')
%     xval = OPEN(index,4);
%     yval = OPEN(index,5);
%     path(n+1,:) = [xval,yval];
    path = flip(path);

在CPP作业实现中,参考了以下链接:
[hw1]:https://amos98.notion.site/hw1-Quick-start-e7ecd81b4590445b895d40469aa9c796
[hw2]:https://amos98.notion.site/hw2-A-in-ROS-953f72b189d84da19b931a663198bb7f
[深蓝学院motion planning作业的一些问题]:https://blog.csdn.net/jiduqiulianga/article/details/124436343
遇到的问题补充如下:

  1. 如果能打开RVIZ,但是没有点云,可能是订阅的话题错了,将/demo_node/grid_map_vis改为/random_complex/global_map,并保存设置,避免再次运行的重复操作。
  2. 如果遇到roslaunch,运行选择目标点后就rviz报错闪退,这是因为程序没有写完,或者程序中编写得有问题。
    ================================================================================
    REQUIRED process [demo_node-2] has died!
    process has died [pid 147988, exit code -11, cmd /home/s7fu/ros_workspace/MRMP/hw_2/devel/lib/grid_path_searcher/demo_node ~waypoints:=/waypoint_generator/waypoints ~map:=/random_complex/global_map __name:=demo_node __log:=/home/s7fu/.ros/log/beb660bc-0de8-11ee-ad4c-4d5b65f91b18/demo_node-2.log].
    log file: /home/s7fu/.ros/log/beb660bc-0de8-11ee-ad4c-4d5b65f91b18/demo_node-2*.log
    Initiating shutdown!
    ================================================================================
    
  3. Kailin Tong的CPP代码中,Astar_searcher.cpp的第B2行多了个g,编译中就会遇到,应该是碰到键盘敲上去的,删除后便能成功运行。
  4. Amos-Chen98的CPP代码中,Astar_searcher.cpp的第3ZI和3ZZ行之间缺少以下代码:
    neighborPtr = neighborPtrSets[i];
    
    以此对neighborPtrSets[]中的每个neighbor进行遍历处理。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值