gpt4 book ai didi

ubuntu-16.04 - ROS tf.transform 找不到实际存在的帧(可以用 rosrun tf tf_echo 追踪)

转载 作者:行者123 更新时间:2023-12-04 11:25:25 26 4
gpt4 key购买 nike

是否有人在使用 ROS 时遇到过以下行为:tf.lookupTransform("map", "base_link", ros::Time(0), transform); 怎么可能?

告诉你:"base_link" passed to lookupTransform argument target_frame does not exist但如果我输入:

rosrun tf tf_echo base_link map
At time 1549633095.937
- Translation: [-0.005, 0.020, -0.129]
- Rotation: in Quaternion [0.033, 0.063, 0.002, 0.997]
in RPY (radian) [0.066, 0.127, 0.009]

我可以看到框架不仅存在,而且在 map 之间存在有效的转换。和 base_link ?

我对这种奇怪的行为一无所知。任何帮助将非常受欢迎。该程序确实在我的笔记本电脑上运行,但在英特尔 NUC 上不起作用。

下面给出了完整的一段代码(实际上我在创建 costmap_2d::costmap2DROS 期间出现了段错误,看起来是因为 tf.transform 失败):
 #include <ros/ros.h>
#include <tf/transform_listener.h>
#include <costmap_2d/costmap_2d_ros.h>

int main(int argc, char **argv) {

ros::init(argc, argv, "hector_exploration_node");

ros::NodeHandle nh;

tf::TransformListener tf;

tf::StampedTransform transform;

try{

tf.lookupTransform("/base_link", "/map", ros::Time(0), transform);
std::cout << "transform exist\n";
}
catch (tf::TransformException ex){
ROS_ERROR("%s",ex.what());
ros::Duration(1.0).sleep();
}

std::cout << "before costmap\n";
costmap_2d::Costmap2DROS costmap("global_costmap", tf);
costmap.start();
ros::Rate rate(10);

while (ros::ok())
ros::spin();

return 0;
}

最佳答案

您尝试在创建 tf 监听器后立即执行转换,这通常是一种不好的做法,原因如下: 监听器的缓冲区包含有关最近转换的所有信息,实际上是空的。因此,任何查找缓冲区的变换都找不到它需要的帧。最好在创建监听器后等待一段时间,以便缓冲区可以填满。但不是只是 sleep ,tf 带有自己的实现来等待您要求的确切帧:waitForTransform .它可以用作 explained here .因此,您只需扩展您的 try块如下:

try{
tf.waitForTransform("/base_link", "/map", ros::Time(0), ros::Duration(3.0));
tf.lookupTransform("/base_link", "/map", ros::Time(0), transform);
std::cout << "transform exist\n";
}

关于ubuntu-16.04 - ROS tf.transform 找不到实际存在的帧(可以用 rosrun tf tf_echo 追踪),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54596517/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com