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

tonyParker's profile - activity

2023-06-09 12:00:06 -0500 received badge  Famous Question (source)
2023-06-09 12:00:06 -0500 received badge  Popular Question (source)
2023-06-09 12:00:06 -0500 received badge  Notable Question (source)
2022-08-15 09:40:02 -0500 received badge  Organizer (source)
2022-08-15 09:39:43 -0500 edited question What is an end-to-end middleware?

What is an end-to-end middleware? I am reading ROS on DDS document. There is subsection 'An end-to-end Middleware'. Can

2022-08-15 09:39:19 -0500 asked a question What is an end-to-end middleware?

What is an end-to-end middleware? I am reading ROS on DDS document. There is subsection 'An end-to-end Middleware'. Can

2022-08-15 09:39:18 -0500 asked a question What is an end-to-end middleware?

What is an end-to-end middleware? I am reading ROS on DDS document. There is subsection 'An end-to-end Middleware'. Can

2021-08-25 06:36:35 -0500 received badge  Famous Question (source)
2021-08-25 06:36:35 -0500 received badge  Notable Question (source)
2019-08-03 13:25:05 -0500 marked best answer Why ROS_Kinetic is recommended Distribution ?

I upgraded to Ubuntu 18.04 and my Kinetic does not work anymore,

Unable to locate package ros-kinetic-desktop-full

When I see list of distribution here

Why (recommended) is written infront of Kinetic ?

Why not melodic ?

2019-06-14 14:16:23 -0500 received badge  Famous Question (source)
2019-05-14 15:18:44 -0500 received badge  Famous Question (source)
2019-03-01 16:31:19 -0500 marked best answer rviz: how to change reference frame for camera view

Hello,

In old version of rviz, there was an attribute 'target frame' in Global options, it sets the reference frame for camera view. For example, if my robot is moving, the camera view will also move along the robot. Will always show me the map from robot perspective. In latest version (1.12.16 (kinetic)) I could not find this. How can I set target frame ?

2019-03-01 16:30:18 -0500 received badge  Famous Question (source)
2019-01-31 08:22:12 -0500 received badge  Notable Question (source)
2019-01-03 06:58:06 -0500 received badge  Famous Question (source)
2019-01-03 06:58:06 -0500 received badge  Notable Question (source)
2018-12-23 15:20:21 -0500 received badge  Notable Question (source)
2018-11-02 19:15:35 -0500 received badge  Popular Question (source)
2018-11-02 09:59:28 -0500 asked a question Why do we need to Install a node Executable

Why do we need to Install a node Executable Hello, I am newbie in ROS and CMake (catkin) thing. I have a cmake, in whi

2018-10-19 01:46:51 -0500 received badge  Popular Question (source)
2018-10-18 12:04:50 -0500 answered a question How to build non-catkin package in catkin workspace

I found the answer. The catkin was not able to produce -config.cmake file. The command is catkin_make --cmake-args

2018-10-18 11:26:26 -0500 commented answer How to build non-catkin package in catkin workspace

I did catkin_make_isolated, but it still gives following error No env.sh file generated at: '/home/luqman/Work/catkin_ws

2018-10-18 11:09:22 -0500 asked a question How to build non-catkin package in catkin workspace.

How to build non-catkin package in catkin workspace. Hello, I have a non-catkin package in catkin workspace. I forgot

2018-10-18 10:57:19 -0500 asked a question How to build non-catkin package in catkin workspace

How to build non-catkin package in catkin workspace Hello, I have a non-catkin package in my catkin work space. I forg

2018-10-16 12:54:38 -0500 received badge  Necromancer (source)
2018-10-08 07:58:58 -0500 received badge  Famous Question (source)
2018-10-05 03:19:42 -0500 received badge  Popular Question (source)
2018-09-24 12:22:26 -0500 marked best answer How to configure Time sequence message filter

Hello,

I want to use time sequence message filter. I wrote the code according to API defined here Link

This is my code

void callback(const std_msgs::StringConstPtr& info) { ROS_INFO("Call is called "); }

int main(int argc, char **argv) { ros::init(argc, argv, "test");

ros::NodeHandle n;

message_filters::Subscriber<std_msgs::string> sub(n, "my_topic", 1);

message_filters::TimeSequencer<std_msgs::string> seq(sub, ros::Duration(0.1), ros::Duration(0.01), 10);

seq.registerCallback(callback);

ros::spin();

return 0; }

It gives this error In file included from /opt/ros/jade/include/message_filters/subscriber.h:43:0, from /lhome/luqman/Work/radar_ros_ws/src/bbox_rviz/src/test_doc.cpp:2: /opt/ros/jade/include/message_filters/simple_filter.h: In instantiation of ‘message_filters::Connection message_filters::SimpleFilter<m>::registerCallback(void ()(P)) [with P = const boost::shared_ptr<const std_msgs::string_<std::allocator<void=""> > >&; M = std_msgs::String_<std::allocator<void> >]’: /lhome/luqman/Work/radar_ros_ws/src/bbox_rviz/src/test_doc.cpp:21:32: required from here /opt/ros/jade/include/message_filters/simple_filter.h:96:99: error: no matching function for call to ‘message_filters::Signal1<std_msgs::string_<std::allocator<void> > >::addCallback(void (&)(const boost::shared_ptr<const std_msgs::string_<std::allocator<void=""> > >&))’ return Connection(boost::bind(&Signal::removeCallback, &signal_, signal_.addCallback(callback))); ^ /opt/ros/jade/include/message_filters/simple_filter.h:96:99: note: candidate is: In file included from /opt/ros/jade/include/message_filters/simple_filter.h:41:0, from /opt/ros/jade/include/message_filters/subscriber.h:43, from /lhome/luqman/Work/radar_ros_ws/src/bbox_rviz/src/test_doc.cpp:2: /opt/ros/jade/include/message_filters/signal1.h:91:22: note: template<class p=""> message_filters::Signal1<m>::CallbackHelper1Ptr message_filters::Signal1<m>::addCallback(const boost::function<void(p)&gt;&amp;) [with="" p="P;" m="std_msgs::String_&lt;std::allocator&lt;void"> >] CallbackHelper1Ptr addCallback(const boost::function<void(p)&gt;&amp; callback)<="" p="">

2018-09-24 12:11:25 -0500 received badge  Famous Question (source)
2018-09-17 16:01:35 -0500 received badge  Popular Question (source)
2018-09-14 17:42:28 -0500 marked best answer How to move mobile robot in rviz

Hello,

I am sorry for being naive. I have GPS sensor information from a moving car. I have URDF model of a robot with four wheels. All joints are fixed (wheel to base_link). I want to move the robot in rviz according to GPS data. I am able to broadcast tf trasnform following this :Link

I have gone through these tutorials but all using joint_state_publisher. Any help would be appreciated.

2018-09-14 17:21:33 -0500 marked best answer Visualization in changed occupancy threshold case

Hello,

Default value of Occupancy Threshold is 0.5. In my code, I changed it to 0.2 by using setOccupancyThres(0.2).

It works fine in Octree e.g. all nodes having probability greater 0.2 considered as occupied.

But in RVIZ, the nodes with probability less than 0.5 does not shown up.

I think, I have to changed value somewhere in octomap_rviz plugins ?

2018-09-03 04:12:52 -0500 asked a question How to save Point Cloud File from rosbag file

How to save Point Cloud File from rosbag file Hello, I want to save point cloud in .pcd format from rosbag file. I kno

2018-08-30 23:29:51 -0500 received badge  Popular Question (source)
2018-08-30 23:29:51 -0500 received badge  Notable Question (source)
2018-08-26 00:08:51 -0500 received badge  Notable Question (source)
2018-08-24 07:53:54 -0500 received badge  Popular Question (source)
2018-08-24 04:59:32 -0500 edited question Why ROS_Kinetic is recommended Distribution ?

Why ROS_Kinetic is recommended Distribution ? I upgraded to Ubuntu 18.04 and my Kinetic does not work anymore, Unab

2018-08-24 04:59:14 -0500 asked a question Why ROS_Kinetic is recommended Distribution ?

Why ROS_Kinetic is recommended Distribution ? I upgraded to Ubuntu 18.04 and my Kinetic does not work anymore, Unab

2018-08-21 08:43:32 -0500 asked a question rviz: how to change reference frame for camera view

how to change reference frame for camera view Hello, In old version of rviz, there was an attribute 'target frame' in

2018-06-04 05:49:13 -0500 commented answer Is there a way to save all rosbag data into a .csv or text file ?

What are the meaning of the -b and -p flags ?

2018-04-03 16:47:49 -0500 received badge  Notable Question (source)
2018-03-26 03:52:11 -0500 received badge  Nice Question (source)
2018-03-13 21:17:46 -0500 marked best answer Stage not working

I am following this tutorial:

http://wiki.ros.org/lse_roomba_toolbo...

When I enter this command, rosrun stage stageros roomba_isr_floor0.world

it gives this error

[rosrun] Couldn't find executable named stageros below /opt/ros/hydro/share/stage

2018-01-30 21:32:02 -0500 marked best answer Can I use gazebo 3.0 with ros-hydro on Ubuntu Trusty 14.04

I have red Gazebo is a standalone application. Does Hydro support Gazebo 3.0 ?

2017-12-07 08:37:59 -0500 asked a question How to access parent node in Octomap library

How to access parent node in Octomap library Hello, I have a leaf node pointer. I want to access the successive parent