1

我正在尝试为所有主题使用相同的回调订阅 ROS 中的不同主题(每个弹出的车辆一个主题)。这个想法是boost::bind将主题名称作为附加参数传递,因此我知道我应该在回调中访问哪个车辆。

问题是,即使我已经就该主题提出了多个问题,但似乎没有一个解决方案有效。

基本上,我有以下VOBase包含std::map<std::string, VOAgent*> agents_一个成员函数的类,如下所示:

void VOBase::callback_agentState(const custom_msgs::VState::ConstPtr& vStateMsg,
        std::string topic) {
    // [...] regex to find agent name from topic string
    std::string agent_name = match.str();
    // [...] Check if agent name exists, else throw exception

    // Process message
    agents_[agent_name]->pos_ = vStateMsg->pose.position;  // etc.
}

我通过此订阅致电:

void VOBase::callback_agentList(const custom_msgs::VehicleList& vehListMsg) {
    // [...] New agent/vehicle found: process vehListMsg and get agent_name string

    // Subscribe to VState
    topic_name = agent_name + "/state_estimate";
    subscribers_[topic_name] = nodeHandlePtr->subscribe<custom_msgs::VState>(topic_name, 1,
        std::bind(&VOBase::callback_agentState, this, _1, topic_name));
}

但是,我得到了template argument deduction/substitution failed所有候选人和这个错误:

mismatched types ‘std::reference_wrapper<_Tp>’ and ‘VO::VOBase*’
                    typename add_cv<_Functor>::type&>::type>()(

我已经测试了许多解决方案,例如使用std::ref(this)来获取 astd::reference_wrapper<_Tp>而不是 a VO::VOBase*(尽管该引用不存在:)use of deleted function,使用boost::bind而不是std::bind(但从 C++11 开始应该是一样的),使用并且在回调函数参数中没有...::ConstPtrfor ROS 消息(以及在subscribe<acl_msgs::ViconState::ConstPtr>等中。所以我只是在这里处理部分解决方案及其排列......

有什么线索吗?

4

1 回答 1

0

我没有查看您显示的代码的细节(很难弄清楚未显示的信息并推断出需要什么)。

然而,上次我帮助某人处理 ROS 订阅和类型推断时,很明显处理程序应该将 shared_ptr 带到消息中。这可能会帮助您开始查看解决方案:

于 2017-08-27T15:59:51.003 回答