1 Star 0 Fork 0

Felix/cyber_neon

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
imu_test2.cpp 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
Felix 提交于 2024-10-12 21:26 . update
#include <iostream>
#include "cyber/cyber.hpp"
#include "neon/ahrs/ahrs.hpp"
typedef struct _package
{
unsigned int header;
unsigned int seq;
float imudata[6];
} package;
unsigned int last_seq = 0;
size_t count = 0;
int main()
{
neon::ahrs::imu6_decoder imu;
imu.init(125);
cyber::csv csv;
csv.open("imudata.csv", "ffffff");
for (auto i = 0; i < csv.size(); i++)
{
float ax = csv.get<float>(i, 0);
float ay = csv.get<float>(i, 1);
float az = csv.get<float>(i, 2);
float gx = csv.get<float>(i, 3);
float gy = csv.get<float>(i, 4);
float gz = csv.get<float>(i, 5);
imu.decode_imu(ax, ay, az, gx, gy, gz);
// imu.pose.euler();
// std::cout << std::setprecision(4) << //
// "R=" << imu.pose.roll << " " << //
// "P=" << imu.pose.pitch << " " << //
// "Y=" << imu.pose.yaw << " " << std::endl;
std::cout << std::setprecision(4) << //
"q0=" << imu.pose.q[0] << " " << //
"q1=" << imu.pose.q[1] << " " << //
"q2=" << imu.pose.q[2] << " " << //
"q3=" << imu.pose.q[3] << " " << std::endl;
// std::cout
// << std::setprecision(8) << //
// "Ax=" << ax << " " << //
// "Ay=" << ay << " " << //
// "Az=" << az << " " << //
// "Gx=" << gx << " " << //
// "Gy=" << gy << " " << //
// "Gz=" << gz << std::endl;
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/pengspace/cyber_neon.git
git@gitee.com:pengspace/cyber_neon.git
pengspace
cyber_neon
cyber_neon
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385