第 7 章 导航相关消息(自学二刷笔记)

server/2025/1/16 3:40:37/

重要参考:

课程链接:https://www.bilibili.com/video/BV1Ci4y1L7ZZ

讲义链接:Introduction · Autolabor-ROS机器人入门课程《ROS理论与实践》零基础教程

7.3.4 导航之定位

定位相关消息是:geometry_msgs/PoseArray,调用 rosmsg info geometry_msgs/PoseArray 显示消息内容如下:

std_msgs/Header headeruint32 seqtime stampstring frame_id
geometry_msgs/Pose[] poses #预估的点位姿组成的数组geometry_msgs/Point positionfloat64 xfloat64 yfloat64 zgeometry_msgs/Quaternion orientationfloat64 xfloat64 yfloat64 zfloat64 w

7.3.5 导航之目标点与路径规划

目标点相关消息是:move_base_msgs/MoveBaseActionGoal,调用 rosmsg info move_base_msgs/MoveBaseActionGoal 显示消息内容如下:

std_msgs/Header headeruint32 seqtime stampstring frame_id
actionlib_msgs/GoalID goal_idtime stampstring id
move_base_msgs/MoveBaseGoal goalgeometry_msgs/PoseStamped target_posestd_msgs/Header headeruint32 seqtime stampstring frame_idgeometry_msgs/Pose pose #目标点位姿geometry_msgs/Point positionfloat64 xfloat64 yfloat64 zgeometry_msgs/Quaternion orientationfloat64 xfloat64 yfloat64 zfloat64 w

路径规划相关消息是:nav_msgs/Path,调用 rosmsg info nav_msgs/Path 显示消息内容如下:

std_msgs/Header headeruint32 seqtime stampstring frame_id
geometry_msgs/PoseStamped[] poses #由一系列点组成的数组std_msgs/Header headeruint32 seqtime stampstring frame_idgeometry_msgs/Pose posegeometry_msgs/Point positionfloat64 xfloat64 yfloat64 zgeometry_msgs/Quaternion orientationfloat64 xfloat64 yfloat64 zfloat64 w

7.3.6 导航之激光雷达

激光雷达相关消息是:sensor_msgs/LaserScan,调用 rosmsg info sensor_msgs/LaserScan 显示消息内容如下:

std_msgs/Header headeruint32 seqtime stampstring frame_id
float32 angle_min #起始扫描角度(rad)
float32 angle_max #终止扫描角度(rad)
float32 angle_increment #测量值之间的角距离(rad)
float32 time_increment #测量间隔时间(s)
float32 scan_time #扫描间隔时间(s)
float32 range_min #最小有效距离值(m)
float32 range_max #最大有效距离值(m)
float32[] ranges #一个周期的扫描数据
float32[] intensities #扫描强度数据,如果设备不支持强度数据,该数组为空

7.3.7 导航之相机

深度相机相关消息有:sensor_msgs/Image、sensor_msgs/CompressedImage、sensor_msgs/PointCloud2

sensor_msgs/Image 对应的一般的图像数据,sensor_msgs/CompressedImage 对应压缩后的图像数据,sensor_msgs/PointCloud2 对应的是点云数据(带有深度信息的图像数据)。

调用 rosmsg info sensor_msgs/Image 显示消息内容如下:

std_msgs/Header headeruint32 seqtime stampstring frame_id
uint32 height #高度
uint32 width  #宽度
string encoding #编码格式:RGB、YUV等
uint8 is_bigendian #图像大小端存储模式
uint32 step #一行图像数据的字节数,作为步进参数
uint8[] data #图像数据,长度等于 step * height

调用  rosmsg info sensor_msgs/CompressedImage 显示消息内容如下:

std_msgs/Header headeruint32 seqtime stampstring frame_id
string format #压缩编码格式(jpeg、png、bmp)
uint8[] data #压缩后的数据

调用  rosmsg info sensor_msgs/PointCloud2 显示消息内容如下:

std_msgs/Header headeruint32 seqtime stampstring frame_id
uint32 height #高度
uint32 width  #宽度
sensor_msgs/PointField[] fields #每个点的数据类型uint8 INT8=1uint8 UINT8=2uint8 INT16=3uint8 UINT16=4uint8 INT32=5uint8 UINT32=6uint8 FLOAT32=7uint8 FLOAT64=8string nameuint32 offsetuint8 datatypeuint32 count
bool is_bigendian #图像大小端存储模式
uint32 point_step #单点的数据字节步长
uint32 row_step   #一行数据的字节步长
uint8[] data      #存储点云的数组,总长度为 row_step * height
bool is_dense     #是否有无效点

http://www.ppmy.cn/server/24827.html

相关文章

[Spring Cloud] (5)gateway前后端公私钥与认证信息

文章目录 简述后端pom增加hutool工具类 nacos增加登录过期时间配置修改全局配置文件 安全通信认证接口控制层接口层实现层 工具类AES 对称加密工具类MD5工具类RSA非对称加密工具类加密盐工具类 前端引入jsencrypt工具类securityUtils.js 请求类系统通信密钥接口 登录接口增加认…

windows11安装nginx

1.解压nginx安装包到没有中文的目录 2.双击运行nginx.exe 3.任务管理器查看是否有nginx进程 4.任务管理器->性能->资源监视器 5.网络->侦听端口,查看nginx侦听的端口,这里是90端口

51-44 Generating Long Videos of Dynamic Scenes,生成动态场景长视频

22年6月,NVIDIA, UC Berkeley联合发布Generating Long Videos of Dynamic Scenes,这也是Sora技术报告中提及的32篇论文之一。 作者的主要贡献是提出了分层生成器架构Hierarchical Generator Architecture,该架构采用了巨大的时间感受野和创新…

linux进入单用户模式指引

文章目录 引言I 通过GRUB进入单用户模式1.1 倒计时界面的操作1.2 GRUB1.3 内核参数编辑界面1.4 更多内核参数编辑界面II 预备知识:Linux用户模式引言 应用场景: root密码重置: 用passwd命令修改root修复登录相关的配置:/etc/pam.d/login 和 /etc/pam.d/sshd 案例:Centos6进…

4D Gaussian Splatting:用于实时的动态场景渲染 学习笔记

目录 4D Gaussian Splatting是什么 4D Gaussian Splatting是什么 什么是 Gaussian Splatting? Gaussian Splatting 是一种通过将点或其他几何元素表示为多维高斯分布来进行渲染的技术。其核心思想是用一个高斯分布(通常是二维或三维)来表示…

C语言:内存操作函数memcpy、memmove、memset和memcpy的使用和模拟实现

一&#xff1a;memcpy的使用和模拟 memcpy使用时需要包含的头文件为#include<string.h> void* memcpy(void* destination,const void* source,size_t num) 函数memcpy从source的位置开始向后复制num个字节的数据到destination指向的内存位置&#xff08;特别注意的是…

铭飞CMS SQL注入漏洞复现(CNVD-2024-06148)

0x01 产品简介 铭飞CMS是一款基于java开发的一套轻量级开源内容管理系统,铭飞CMS简洁、安全、开源、免费,可运行在Linux、Windows、MacOSX、Solaris等各种平台上,专注为公司企业、个人站长快速建站提供解决方案。 0x02 漏洞概述 由于铭飞CMS 文章列表接口content/list.do中的…

【数据可视化】教程案例相关项目,要点和难点,案例代码,代码解析

当涉及数据可视化时,有许多不同的工具、技术和方法可供选择。下面是一个简要的指南,其中包括教程、案例、相关项目,以及关于要点和难点的信息。 教程 Python的Matplotlib和Seaborn库:这两个库是Python中最流行的数据可视化工具之一。你可以通过官方文档或者在线教程学习如…