土土土土土土土土圭

#include <tf2/LinearMath/Quaternion.h> //增加头文件

#include <tf2_ros/transform_broadcaster.h> //增加头文件

/***************************************************************************/

/* 解析udp接收数据函数 */

/***************************************************************************/

void ChassisBridge::publishOdom()

{

int32_t rpm_left = (ros::Time::now().toSec() - GCAN_Driver.motor_info_.receive_time < 1) ? -GCAN_Driver.motor_info_.temp_left : 0;

int32_t rpm_right = (ros::Time::now().toSec() - GCAN_Driver.motor_info_.receive_time < 1) ? -GCAN_Driver.motor_info_.temp_right : 0;

double speed_left = (double)(rpm_left * 0.00000031958);

double speed_right = -(double)(rpm_right * 0.00000031958);

g_odom_info.speed = (double)(speed_left + speed_right) / 2.0;

g_odom_info.angular = (double)(speed_right - speed_left) / track_width_;

g_odom_info.new_get_rpm_time = ros::Time::now().toSec();

double delta_time = ros::Time::now().toSec() - g_odom_info.old_get_rpm_time;

g_odom_info.old_get_rpm_time = g_odom_info.new_get_rpm_time;

g_odom_info.mileage_angle = g_odom_info.mileage_angle + g_odom_info.angular * delta_time;

// 分解之后的位移速度,这个分解与航向角有关

double vel_x = g_odom_info.speed * cos(g_odom_info.mileage_angle);

double vel_y = g_odom_info.speed * sin(g_odom_info.mileage_angle);

g_odom_info.mileage = g_odom_info.mileage + g_odom_info.speed * delta_time;

g_odom_info.mileage_x = g_odom_info.mileage_x + vel_x * delta_time;

g_odom_info.mileage_y = g_odom_info.mileage_y + vel_y * delta_time;

cr_common::Chassis_odometry chassis_odometry_msg;

chassis_odometry_msg.header.stamp = ros::Time::now();

chassis_odometry_msg.header.frame_id = "odom";

chassis_odometry_msg.linear_vel = g_odom_info.speed;

chassis_odometry_msg.linear_y = 0;

chassis_odometry_msg.angular_rotate = g_odom_info.angular;

chassis_odometry_msg.odometry = g_odom_info.mileage;

chassis_odometry_msg.odometry_y = 0;

chassis_odometry_msg.odometry_rotate = g_odom_info.angular;

wheel_car_like_pub_.publish(chassis_odometry_msg);

nav_msgs::Odometry chassis_odom_msg;

geometry_msgs::Quaternion drobot_odom_quat = tf::createQuaternionMsgFromYaw(g_odom_info.mileage_angle); //删除本行,用下面两行代替

tf2::Quaternion q; //增加

q.setRPY(0,0,g_odom_info.mileage_angle) //增加

chassis_odom_msg.header.stamp = ros::Time::now();

chassis_odom_msg.header.frame_id = "odom";

chassis_odom_msg.child_frame_id = "base_link";

chassis_odom_msg.twist.twist.linear.x = g_odom_info.speed;

chassis_odom_msg.twist.twist.linear.y = 0;

chassis_odom_msg.twist.twist.angular.z = g_odom_info.angular;

chassis_odom_msg.twist.covariance[0] = chassis_odom_covariance_0_;

chassis_odom_msg.twist.covariance[7] = chassis_odom_covariance_7_;

chassis_odom_msg.twist.covariance[14] = chassis_odom_covariance_14_;

chassis_odom_msg.twist.covariance[35] = chassis_odom_covariance_35_;

chassis_odom_msg.pose.pose.position.x = g_odom_info.mileage_x;

chassis_odom_msg.pose.pose.position.y = g_odom_info.mileage_y;

chassis_odom_msg.pose.pose.position.z = 0.0;

chassis_odom_msg.pose.pose.orientation = drobot_odom_quat; //删除本行,用下面四行代替

chassis_odom_msg.pose.pose.orientation.x = q.x(); //增加

chassis_odom_msg.pose.pose.orientation.y = q.y(); //增加

chassis_odom_msg.pose.pose.orientation.z = q.z(); //增加

chassis_odom_msg.pose.pose.orientation.w = q.w(); //增加

chassis_odom_pub_.publish(chassis_odom_msg);

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/48466.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

区间加减使得数组变成指定类型

这个问题要怎么去考虑呢&#xff0c;首先我们将两个数组做差得到相对大小&#xff0c;问题就变成了把我们构造的数组通过区间加一或者区间减一变成全部都是0的最小次数 这里就涉及到我们的一个技巧&#xff0c;我们需要把负数序列和正数序列分开处理&#xff0c;如何能得到最小…

【C++】一、Visual Studio 2017使用教程:内存窗口、预处理文件、obj文件,调试优化

文章目录 概述编译期&#xff08;Compile&#xff09;查看预处理后的文件查看obj文件开启编译器调试优化 链接期&#xff08;Linking&#xff09;报错信息概述自定义入口点 调试内存窗口值转16进制查看查看汇编代码 注意 概述 记录一下Cherno的vs配置下载地址 https://thecher…

WebAssembly在前端开发中的创新与应用

引言 WebAssembly (简称 Wasm) 是一项新兴的技术&#xff0c;正在改变前端开发的格局。它允许开发者在现代 Web 浏览器中运行高性能的、低级别的编程语言&#xff0c;如 C/C&#xff0c;从而扩展了 Web 应用程序的能力和性能。本文将探讨 WebAssembly 的基本概念、工作原理及其…

Unity 调试死循环程序

如果游戏出现死循环如何调试呢。 测试脚本 我们来做一个测试。 首先写一个死循环代码&#xff1a; using System.Collections; using System.Collections.Generic; using UnityEngine;public class dead : MonoBehaviour {void Start(){while (true){int a 1;}}}Unity对象设…

Qt 4.8.7 + MSVC 中文乱码问题深入分析

此问题很常见&#xff0c;然而网上关于此问题的分析大多不够深刻&#xff0c;甚至有错误&#xff1b;加之Qt5又更改了一些编码策略&#xff0c;而很多文章并未提及版本问题&#xff0c;或是就算提了&#xff0c;读者也不重视。这些因素很容易让读者产生误导。今日我彻底研究透了…

Python并发编程:多线程和多进程

多线程&#xff08;Threading&#xff09; 多线程允许程序同时执行多个线程。在Python中&#xff0c;由于GIL的存在&#xff0c;多线程并不能真正地实现并行计算&#xff08;即同时执行多个线程&#xff09;&#xff0c;但在I/O密集型任务中&#xff0c;多线程仍然可以提高效率…

【TORCH】获取第一个batch数值的几种方法

文章目录 使用 enumerate() 函数遍历 dataloader使用next() 使用 enumerate() 函数遍历 dataloader 在 PyTorch 中&#xff0c;使用 enumerate() 函数遍历 dataloader 可以同时提供 batch 的索引和内容。如果你只想获取第一个 batch&#xff0c;可以结合使用 enumerate() 和一…

MCU常见相关术语缩写说明

AAI Auto Address Increment 地址自增模式 AHB Advanced High Performance Bus 高级高性能总线 APB Advanced Peripheral Bus 高级外设总线 CKGEN Clock Generator …

html5——CSS背景属性设置

目录 背景颜色 background-color 背景图像 背景定位 背景样式简写 背景尺寸 ​编辑渐变属性 背景颜色 background-color 背景图像 background-image background-image:url(图片路径); 背景重复方式&#xff1a; background-repeat 属性&#xff1a; repeat&#…

Qt中在pro中实现一些宏定义

在pro文件中利用 DEFINES 定义一些宏定义供工程整体使用。&#xff08;和在cpp/h文件文件中定义使用有点类似&#xff09;可以利用pro的中的宏定义实现一些全局的判断 pro中实现 #自定义一个变量 DEFINES "PI\"3.1415926\"" #自定义宏 DEFINES "T…

Perl并发编程秘籍:线程间通信的艺术

Perl并发编程秘籍&#xff1a;线程间通信的艺术 在现代软件开发中&#xff0c;多线程编程已成为一种常见的技术&#xff0c;用于提高应用程序的并发性和响应性。在Perl中&#xff0c;线程间的通信是实现并发任务的关键环节。本文将深入探讨Perl中线程间通信的各种机制&#xf…

rust 构建自己的库和模块

构建自己的库和模块 rust 构建自己的库和模块生成测试代码目录生成自己的库生成简单库在库中增加模块直接修改 lib.rs 文件添加新的模块文件将两个功能函数拆分成两个文件使用 mod 关键字Tipsrust 构建自己的库和模块 生成测试代码目录 通过命令行生成测试代码,其实就是一个…

Apache Flink 任务提交模式

Flink 任务提交模式 Flink可以基于多种模式部署&#xff1a;基于Standalone 部署模式&#xff0c;基于Yarn部署模式&#xff0c;基于Kubernetes部署模式以上不同集群部署模式下提交Flink任务会涉及申请资源&#xff0c;各角色交互过程&#xff0c;不同模式申请资源涉及到的角色…

Meta KDD Cup 2024 CRAG: Comphrehensive RAG Benchmark参赛指南(写了一半跑去改大论文了所以没正式参赛)

诸神缄默不语-个人CSDN博文目录 因为比赛过程正好和我毕业答辩的时间段高度重合&#xff0c;所以我……最后其实还是相当于没有成功参赛。 呃反正现在已经咕咕咕了&#xff0c;就把当时写了一半&#xff08;一小半&#xff09;的参赛指南发一下吧。 官网&#xff1a;AIcrowd …

揭秘Odoo OWL的魔法:reactive vs useState

想象一下,你正在构建一个复杂的Odoo模块,比如一个实时库存管理系统。突然,你意识到需要在多个组件之间同步数据,还要确保UI能够实时响应后台的变化。这时,OWL框架的响应式系统就像是你的得力助手,而reactive和useState则是其中的两大法宝。让我们一起深入探索这两个强大工…

Java-Lambda

1 Lambda表达式 lambda表达式可以理解为对匿名内部类的一种简化 , 但是本质是有区别的 面向对象思想 : 强调的是用对象去完成某些功能 函数式编程思想 : 强调的是结果 , 而不是怎么去做 1 函数式接口 只有一个抽象方法需要重写的接口&#xff0c;函数式接口。函数式接口是允…

规范:Redis规范

在公司项目中&#xff0c;redis属于高频使用&#xff0c;在使用中&#xff0c;我们遇到了各种各样的redis问题&#xff0c;于是针对自身情况梳理了一个redis使用规范。 一、键名设计 1、key名设计 1. 禁止包含特殊字符(比如空格、换行、单双引号以及其他转义字符) 2. 建议以…

2024信息创新与安全技术比赛规程及任务书

2024信息创新与安全技术比赛规程任务书 模块一&#xff1a;信创操作系统应用任务一&#xff1a;系统安装任务二&#xff1a;系统基本操作&#xff0c;以下操作都在Client-1进行。任务三&#xff1a;软件管理 模块二&#xff1a;办公软件技术应用任务一&#xff1a;文档编辑任务…

【栈和队列】算法题 ---- 力扣

通过前面栈和队列的学习&#xff0c;现在来看这些算法题目 一、有效的括号 本题让判断括号是否有效 第一眼看可能没一点思路&#xff0c;但仔细分析一下&#xff1b; 我们学习过栈数据结构&#xff0c;知道栈先进后出的原则&#xff0c;那我们就可以使用啊&#xff1b;把题目的…

MaxSite CMS v180 文件上传漏洞(CVE-2022-25411)

前言 CVE-2022-25411 是一个影响 Maxsite CMS v180 的远程代码执行漏洞。攻击者可以通过上传一个特制的 PHP 文件来利用这个漏洞&#xff0c;从而在受影响的系统上执行任意代码。 漏洞描述 该漏洞存在于 Maxsite CMS v180 的文件上传功能中。漏洞利用主要通过允许上传带有危…