1 Star 0 Fork 0

Felix/cyber_neon

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
visualslam.cpp 752 Bytes
一键复制 编辑 原始数据 按行查看 历史
Felix 提交于 2024-09-02 11:31 . update
#include "cyber/visualslam.hpp"
visualslam vs;
void init()
{
vs.cloud_create("mycloud", 3.0f);
vs.wave_create("mywave", 1000, 0.1, {0.2f, 0.8f, 0.2f});
vs.pose_displayer_create("aircraft");
}
int main()
{
vs.set_init(init);
while (1)
{
if (vs.ok())
{
float x = ((float)std::rand() / (float)RAND_MAX);
float y = ((float)std::rand() / (float)RAND_MAX);
float z = ((float)std::rand() / (float)RAND_MAX);
vs.cloud_push_one({x * 10, y * 10, z * 10}, {0.8, 0.2, 0.2});
// vs.wave_push({x});
// vs.pose_displayer_set_left_hand(0.8, x, y, z);
std::this_thread::sleep_for(std::chrono::microseconds(10));
}
}
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