当前位置:   article > 正文

ROS软时间同步机制message_filters总结与测试

message_filters

时间同步机制对于多机器人(主控)系统或多传感器信息融合非常重要,划分为硬同步和软同步。

  • 硬同步从源头上同步时间,杜绝了传输延迟影响。
  • 软同步时间由话题发布时刻决定,期间存在传感器到主控话题订阅节点的传输延迟在里面,这个延迟有时候会比较严重,此时如果通过软同步无法解决延迟问题,就需要采用硬同步方案。
  • 注意区别采集时刻时间和到达时刻时间:在ROS中,我们假定发布时间即为采集时刻时间,订阅时间即为到达时刻时间,因此,时间戳近似机制(采用只基于时间戳信息的自适应算法来匹配多个话题之间的时间同步性)能够适用于时间传输网络或数据处理导致的延迟场景。

ROS提供了3种同步机制,其实本质上是2种:普通时间同步机制,时间戳完全相同机制,时间戳近似机制。前2种本质是一样的。在message_filters包中实现。

其实,在本篇学习了ROS时间同步机制的同时,也会学习到定时器和C++封装ROS知识。

目录

测试源码

运行结果

测试1:2个定时器频率,timer1=0.1s, timer2=0.5s

测试2:2个定时器频率,timer1=0.5s, timer2=0.5s

测试3:时间同步器订阅相同话题


测试源码

将ROS封装成C++形式了,与C有一些不同地方,尤其需要注意

  1. #ifndef TIME_SYNCHRONIZER_H_
  2. #define TIME_SYNCHRONIZER_H_
  3. #include <ros/ros.h>
  4. #include <ros/timer.h>
  5. #include <geometry_msgs/PointStamped.h>
  6. #include <message_filters/subscriber.h>
  7. /* 以下2个头文件有何区别? */
  8. #include <message_filters/time_synchronizer.h>
  9. // #include <message_filters/synchronizer.h>
  10. #include <message_filters/sync_policies/approximate_time.h>
  11. #include <iostream>
  12. using std::cout;
  13. using std::endl;
  14. // #define TIME_SYNCH
  15. #define EXACT_SYNCH
  16. // #define APPRO_SYNCH
  17. class TimeSynch {
  18. public:
  19. TimeSynch(ros::NodeHandle &node) : node_(node) {};
  20. public:
  21. ros::Publisher timer1_pub, timer2_pub;
  22. ros::Timer timer1;
  23. ros::Timer timer2;
  24. // message_filters::Subscriber timer1_sub, timer2_sub;
  25. // 先在类内定义
  26. message_filters::Subscriber<geometry_msgs::PointStamped> timer1_sub;
  27. public:
  28. bool Initialization();
  29. void Timer1Handler(const ros::TimerEvent&);
  30. void Timer2Handler(const ros::TimerEvent&);
  31. void TimeSynchHandler(const geometry_msgs::PointStampedConstPtr &p1, const geometry_msgs::PointStampedConstPtr &p2);
  32. private:
  33. ros::NodeHandle node_;
  34. std::string topic_name1_, topic_name2;
  35. };
  36. bool TimeSynch::Initialization() {
  37. /* 2个定时器,以不同频率发布数据 */
  38. timer1 = node_.createTimer(ros::Duration(1), &TimeSynch::Timer1Handler, this);
  39. timer2 = node_.createTimer(ros::Duration(1), &TimeSynch::Timer2Handler, this);
  40. /* 2个订阅器,分别订阅上述2个定时器发布的话题 */
  41. timer1_pub = node_.advertise<geometry_msgs::PointStamped>("p1", 10);
  42. timer2_pub = node_.advertise<geometry_msgs::PointStamped>("p2", 10);
  43. // timer1_sub = node_.subscribe("p1", 10); // wrong!
  44. // 再在构造函数或初始化函数中进行初始化
  45. timer1_sub.subscribe(node_, "p1", 10);
  46. // 直接在构造函数或初始化函数中定义并初始化
  47. message_filters::Subscriber<geometry_msgs::PointStamped> timer2_sub(node_, "p2", 10);
  48. /* 以下分别定义了3种类型时间同步器,测试其效果,使用同一个回调函数 */
  49. /* 1、普通时间同步器 */
  50. #ifdef TIME_SYNCH
  51. message_filters::TimeSynchronizer<geometry_msgs::PointStamped, geometry_msgs::PointStamped> time_synch(timer1_sub, timer2_sub, 10);
  52. // time_synch.registerCallback(boost::bind(&TimeSynch::TimeSynchHandler, _1, _2)); // 错误!
  53. time_synch.registerCallback(&TimeSynch::TimeSynchHandler, this);
  54. #endif
  55. /*2、时间同步器:要求时间戳完全相同 */
  56. #ifdef EXACT_SYNCH
  57. using ExactSynch = message_filters::sync_policies::ExactTime<geometry_msgs::PointStamped, geometry_msgs::PointStamped>;
  58. message_filters::Synchronizer<ExactSynch> exact_synch(ExactSynch(10), timer1_sub, timer2_sub);
  59. exact_synch.registerCallback(&TimeSynch::TimeSynchHandler, this);
  60. #endif
  61. /*3、时间同步器:只要求时间戳近似即可 */
  62. /* 默认近似范围多大?近似范围是否支持自定义?如何定义?
  63. */
  64. #ifdef APPRO_SYNCH
  65. typedef message_filters::sync_policies::ApproximateTime<geometry_msgs::PointStamped, geometry_msgs::PointStamped> ApproSynch;
  66. message_filters::Synchronizer<ApproSynch> appro_synch(ApproSynch(10), timer1_sub, timer2_sub);
  67. appro_synch.registerCallback(&TimeSynch::TimeSynchHandler, this);
  68. #endif
  69. // 注意!由于作用域原因,必须放在订阅函数之后(不能放在主函数中,否则无法订阅到话题)!
  70. ros::spin();
  71. cout << "Initialized." << endl;
  72. return true;
  73. }
  74. void TimeSynch::Timer1Handler(const ros::TimerEvent&) {
  75. cout << "timer1=" << ros::Time::now() << endl;
  76. geometry_msgs::PointStamped p1;
  77. p1.header.stamp = ros::Time::now();
  78. timer1_pub.publish(p1);
  79. }
  80. void TimeSynch::Timer2Handler(const ros::TimerEvent&) {
  81. cout << "timer2=" << ros::Time::now() << endl;
  82. geometry_msgs::PointStamped p2;
  83. p2.header.stamp = ros::Time::now();
  84. timer2_pub.publish(p2);
  85. }
  86. void TimeSynch::TimeSynchHandler(const geometry_msgs::PointStampedConstPtr &p1, const geometry_msgs::PointStampedConstPtr &p2) {
  87. cout << "p1 time = " << p1->header.stamp << " p2 time = " << p2->header.stamp << endl;
  88. }
  89. int main(int argc, char **argv) {
  90. ros::init(argc, argv, "time_synch");
  91. ros::NodeHandle node;
  92. TimeSynch timeSynch(node);
  93. timeSynch.Initialization();
  94. // ros::spin(); // 不能放这儿!
  95. return true;
  96. }
  97. #endif

 

运行结果

测试1:2个定时器频率,timer1=0.1s, timer2=0.5s

从左到右:时间戳近似同步机制,时间戳完全相同机制,普通时间同步机制。

只有时间戳近似定时器能够订阅到2个时间戳大致相近的话题。其他2个机制只有在2个话题时间戳完全相同时才能订阅到(以下没有出现完全相同的时候,因此没有订阅到)

 

测试2:2个定时器频率,timer1=1s, timer2=1s

我们将2个定时器发布频率设定相同都为1秒,由于两个发布器发布时间不可能完全相同,会存在一点点时间偏差,导致时间戳完全相同机制和普通时间同步机制都无法订阅到2个话题

测试3:时间同步器订阅相同话题

之所以这样做,是为了保证“2”个话题时间戳完全相同,测试时间戳完全相同机制。

此时,时间戳完全相同机制和普通时间同步机制都可以订阅到话题进入回调函数了。话题时间戳完全相同。

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/540514
推荐阅读
相关标签
  

闽ICP备14008679号