ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

aids293's profile - activity

2016-02-26 00:25:43 -0500 commented answer TimeSynchronizer compilation error

Ok ,thank you

2016-02-24 00:55:06 -0500 received badge  Enthusiast
2016-02-23 23:23:55 -0500 commented answer TimeSynchronizer compilation error

Hello,i just want to use TimeSynchronizer,do i need install boost?Bescause when i include these headers and compile code,it seems to show boost error.Thank you.

2016-02-23 05:27:20 -0500 received badge  Famous Question (source)
2016-02-21 19:15:01 -0500 commented answer how to deal with two topics' messages we subscribed in a code in ros ?

thanks a lot .that's a good solution.But when i catkin_make my package,boost may be occur error just like /usr/include/boost/tuple/detail/tuple_basic.hpp:227:28: error: ‘impl’ in ‘struct boost::tuples::detail::drop_front<100>’ does not name a type apply<cons<ht, tt=""> > impl; what happen?Thanks

2016-02-21 01:09:14 -0500 received badge  Notable Question (source)
2016-02-20 21:12:34 -0500 commented answer how to deal with two topics' messages we subscribed in a code in ros ?

thank you a lot,i just need combine the message of topic "vehiclePose" with the message of topic "local_map".But as you know,this two topics publish in different frequencies,how should i handle this,by the messages' time stamp?thank you.

2016-02-20 09:21:53 -0500 received badge  Popular Question (source)
2016-02-20 05:23:19 -0500 commented question how to deal with two topics' messages we subscribed in a code in ros ?

yes,thank you,i just want to ask how to handle these two topics' messages because they are published in different frequencies,thank you

2016-02-20 02:59:29 -0500 received badge  Editor (source)
2016-02-20 02:58:07 -0500 asked a question how to deal with two topics' messages we subscribed in a code in ros ?

I created a node in a code,it subscribes two different topics,how can i do?For example,i want to subscribe the robot's pose and local map to make path planning,this two topics publish different frequencies,how can i do in a code?

ros::Subscriber getodomdata = local_planner_handle_getdata_.subscribe("vehiclePose",1000,getodomdatacallback);


ros::Subscriber getmapdata = local_planner_handle_getdata_.subscribe("local_map", 1000, OccupancyGridCallback);

How can i do the two callback functions? Thanks a lot

2016-02-20 01:17:43 -0500 commented answer How to use rviz to show multiple planning paths

thank you very much,i got it