• 欢迎访问开心洋葱网站,在线教程,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站,欢迎加入开心洋葱 QQ群
  • 为方便开心洋葱网用户,开心洋葱官网已经开启复制功能!
  • 欢迎访问开心洋葱网站,手机也能访问哦~欢迎加入开心洋葱多维思维学习平台 QQ群
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏开心洋葱吧~~~~~~~~~~~~~!
  • 由于近期流量激增,小站的ECS没能经的起亲们的访问,本站依然没有盈利,如果各位看如果觉着文字不错,还请看官给小站打个赏~~~~~~~~~~~~~!

ROS 2 | 工具 -rqt, logger, bag, doctor-

人工智能 zhangrelay 2798次浏览 0个评论

前序:ROS 2 | 启动-launch-   ROS 2工具   1. rqt:   掌握rqt可以在命令行不熟悉的情况下高效调试。   比如:service caller和console   在指定位置添加一个小乌龟:
ROS 2 | 工具 -rqt, logger, bag, doctor-   左侧可以看到,直接可以使用图形化界面进行操作。 在右侧,可以查阅消息。   2. logger:   级别:   Fatal Error Warn Info Debug   每个级别都没有确切的标准,但是可以安全地做出如下假设:   ·  Fatal 消息指示系统将终止以尝试保护自身不受损害。 ·   Error 消息表示重大问题,不一定会损坏系统,但会阻止其正常运行。 ·   Warn 消息表示意料之外的活动或不理想的结果,可能表示更深层次的问题,但不会直接损害功能。 ·   Info 消息指示事件和状态更新,可作为视觉验证系统是否按预期运行。 ·  Debug 消息详细说明了系统执行的整个分步过程。   默认级别为Info。仅看到默认严重性级别和更高级别的消息。  
ROS 2 | 工具 -rqt, logger, bag, doctor-   默认情况下,debug消息是无法看到的!   修改显示的logger级别: ros2 run turtlesim turtlesim_node --ros-args --remap __log_level:=WARN   3. bag   3.1 记录   标准命令格式: ros2 bag record <topic_name>   如果需要记录/turtle1/cmd_vel,使用如下命令: ros2 bag record /turtle1/cmd_vel   显示如下:  
ROS 2 | 工具 -rqt, logger, bag, doctor-   使用Ctrl+C终止记录。  
ROS 2 | 工具 -rqt, logger, bag, doctor-   记录多个主题保存为subset文件: ros2 bag record -o subset /turtle1/cmd_vel /turtle1   如果不想系统崩溃,尽量不要选用参数-a,为啥??? There is another option you can add to the command, -a, which records all the topics on your system. However, this might cause a circular dependency and crash your system. It’s better to choose a subset of the topics that you need.   3.2 信息   标准命令格式: ros2 bag info <bag_file_name>  
ROS 2 | 工具 -rqt, logger, bag, doctor-   3.3 回放   标准命令格式: ros2 bag play <bag_file_name>   此处使用: ros2 bag play rosbag2_2019_12_11-20_47_57   显示: [INFO] [rosbag2_storage]: Opened database 'rosbag2_2019_12_11-20_47_57\rosbag2_2019_12_11-20_47_57_0.db3' for READ_ONLY.  
ROS 2 | 工具 -rqt, logger, bag, doctor-   4. ros2doctor   先运行一下看看效果: ros2 doctor  
ROS 2 | 工具 -rqt, logger, bag, doctor-   报错很正常。   如果开启更多的节点:  
ROS 2 | 工具 -rqt, logger, bag, doctor-   有些节点发布和订阅没有对应,会出现: UserWarning   如果需要完成版本的报告: ros2 doctor --report  
ROS 2 | 工具 -rqt, logger, bag, doctor-   ros2doctor   它是任何ROS 2发行版的标准安装中随附的ROS 2命令行界面工具之一。 ros2doctor与ROS 1 的roswtf类似。它将检查ROS 2设置,例如发行版,平台,网络接口等,并在ROS 2运行的系统中查找潜在问题。   用法 ·  运行ros2 doctor或ros2 wtf(别名)进行检查。 ·  运行ros2 doctor -h/–help以打印所有可用的命令参数。 ·  运行ros2 doctor -r/–report以查看所有选中项目的报告。 ·  运行ros2 doctor -rf/–report-fail以仅查看失败检查的报告。 ·  运行ros2 doctor -iw/–include-warnings以将警告包括为失败的检查。 -iw并且-rf可以组合使用   ros2 -h显示命令全部功能如下:  
ROS 2 | 工具 -rqt, logger, bag, doctor-   其他ROS2命令不在过多介绍了,安装好依据帮助文档和官方资料,多实践就能掌握。 之后内容将全部转为代码编写和讲解。 不再涉及基础知识的介绍。 教程适用于Windows/MacOS/Linux,考虑到通用性,以Win10和Ubuntu18.04为主, 所有案例全部通用。  


开心洋葱 , 版权所有丨如未注明 , 均为原创丨未经授权请勿修改 , 转载请注明ROS 2 | 工具 -rqt, logger, bag, doctor-
喜欢 (0)

您必须 登录 才能发表评论!

加载中……