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

DangTran's profile - activity

2022-09-22 13:17:54 -0500 received badge  Famous Question (source)
2022-06-27 17:49:48 -0500 commented question Gazebo's block laser plugin not printing out to a scan topic when gpu rays are used

@cskbala I believe that both libgazebo_ros_gpu_laser and libgazebo_ros_laser.so only capture 2D scan information (althou

2022-02-26 18:51:02 -0500 commented question Gazebo's block laser plugin not printing out to a scan topic when gpu rays are used

Hi there, have you found the solution for this problem?

2021-08-25 07:28:16 -0500 received badge  Notable Question (source)
2021-03-29 17:27:33 -0500 received badge  Notable Question (source)
2021-03-26 13:59:11 -0500 commented answer Segmentation of a PointCloud to find a specific object (a cup) pcl

Update link: https://pointclouds.org/documentation/sac__segmentation_8hpp_source.html

2021-03-20 16:24:57 -0500 commented answer Is it possible to use Boost 1.71 on Ros Melodic?

Hi, I believe that some components in Boost will work fine, but not all of them. I wonder have you experienced some code

2021-02-17 16:01:33 -0500 commented answer Meaning of world frame / coordinates in the context of costmaps

Neither. When running the Gazebo, there will be a world frame initialized, position of the robot is already identified

2021-02-15 21:52:23 -0500 answered a question Meaning of world frame / coordinates in the context of costmaps

Instead of describing theoretical concepts, I will explain in my intuitive way: There are 3 special frames that you usu

2021-02-09 22:25:47 -0500 answered a question publisher not publishing on topic

Hi, I just want to add a more explicit code on how to use pub.getNumSubscribers() answered by @dornhege. If you want to

2020-12-04 09:36:25 -0500 received badge  Necromancer (source)
2020-11-11 00:06:20 -0500 received badge  Popular Question (source)
2020-10-25 01:31:38 -0500 received badge  Popular Question (source)
2020-09-04 15:07:44 -0500 commented question Moveit Task constructor properties propagation

Where did you put the two above lines? Btw, current_state is the PARENT stage of grasp_generator stage. So can you try d

2020-09-04 15:07:44 -0500 received badge  Commentator
2020-09-01 10:04:04 -0500 commented answer Difference between arm_controller and joint_group_position_controller

Usually, trajectory is the results from the planner, of course you can design a trajectory manually, it is quite tedious

2020-08-18 00:20:49 -0500 commented question Is there a ROS example for an ackermann vehicle sim that uses the ackermann_steering_controller and the corresponding gazebo plugin?

There is no gazebo plugin for ackermann-controller currently according to what I know. But probably there are some inter

2020-07-03 12:16:32 -0500 commented question Difference between arm_controller and joint_group_position_controller

Yes, I updated the answer

2020-07-03 12:16:15 -0500 edited answer Difference between arm_controller and joint_group_position_controller

To sum thing up, the controller file arm_controller_ur3.yaml is follows: arm_controller: type: position_controllers/J

2020-07-03 11:51:14 -0500 commented question Difference between arm_controller and joint_group_position_controller

@gvdhoorn I totally agree with you. My answer emphasizes more on the difference in application scenarios rather than fu

2020-07-03 11:35:21 -0500 received badge  Teacher (source)
2020-07-03 11:18:35 -0500 answered a question Difference between arm_controller and joint_group_position_controller

To sum thing up, the controller file arm_controller_ur3.yaml is follows: arm_controller: type: position_controllers/J

2020-07-03 11:18:35 -0500 received badge  Rapid Responder (source)
2020-07-03 10:53:25 -0500 commented question Difference between arm_controller and joint_group_position_controller

If you want to control robot's joint, such as shoulder_pan_joint=0.1, you can do that by sending command to topic, then

2020-07-03 10:43:53 -0500 commented question Difference between arm_controller and joint_group_position_controller

arm_controller used for trajectory position_controllers/JointTrajectoryController, while joint_group_position_controller

2020-07-03 10:22:55 -0500 commented question Difference between arm_controller and joint_group_position_controller

What is arm_controller?

2020-06-10 11:11:08 -0500 answered a question rviz_visual_tools: publishTrajectoryLine seems to be rotated and translated but correct

publishTrajectoryLine(...) visualize the green trajectory line. while publishTrajectoryPath(...) visualize the simulate

2020-05-31 09:59:17 -0500 commented question Alternation for `call_async()` in service client for ROS2-Ardent

Thanks for a quick response. I am working with a lab-server that has been developed in ROS-Kinetic in 16.04 for a long t

2020-05-30 23:14:05 -0500 asked a question Alternation for `call_async()` in service client for ROS2-Ardent

Alternation for `call_async()` in service client for ROS2-Ardent Hi all, I new to ROS2 and try to follow the ROS2-tutor

2020-05-30 01:38:20 -0500 answered a question ROS package template for Python package generation

Look like this one is what you are looking for? (https://github.com/simlei/cookiecutter-ros-python)

2020-05-23 03:22:40 -0500 marked best answer Segfault in pluginlib-tutorial whenever adding Plugins-Description-File between <export> tags

Hi all,

Have anyone experienced a weird behavior below when working with pluginlib? Could you please help me understand the problem?

I trying to work with pluginlib by following the wiki-tutorial. By installing pluginlib-tutorials using sudo apt install ros-kinematic-pluginlib-tutorials, the main node works fine and normal.

But to build the same package from source, the error Segmentation fault (core dumped) keep appearing everytime adding <pluginlib_tutorials_ plugin="${prefix}/polygon_plugins.xml" /> in the package.xml file.

I can successfully initialize the pluginlib::ClassLoader object, but without "Plugin Description File" in the package.xml, I can not create plugin-instances.

My workspace setting:

test_ws/
└── src
    ├── pluginlib_tutorials_
    │   ├── CMakeLists.txt
    │   ├── include
    │   │   └── pluginlib_tutorials_
    │   │       ├── polygon_base.h
    │   │       └── polygon_plugins.h
    │   ├── package.xml
    │   ├── polygon_plugins.xml
    │   └── src
    │       ├── polygon_loader.cpp
    │       └── polygon_plugins.cpp

package.xml:

<buildtool_depend>catkin</buildtool_depend>
  <build_depend>pluginlib</build_depend>
  <build_depend>roscpp</build_depend>
  <exec_depend>pluginlib</exec_depend>
  <exec_depend>roscpp</exec_depend>
  <export>
    <pluginlib_tutorials_ plugin="${prefix}/polygon_plugins.xml" /> 
  </export>

Could anyone please help me?

2020-05-22 22:06:35 -0500 commented answer ROS dependency Boost 1.58, additional dependency Boost 1.64?

For anyone having problems with multiple version dependency when working in ROS, this link may useful. The example demon

2020-05-22 19:30:12 -0500 answered a question Segfault in pluginlib-tutorial whenever adding Plugins-Description-File between <export> tags

I finally understand the problem and fixed it successfully: The main reason is ros::package::xxx() compatible with boost

2020-05-22 19:30:12 -0500 received badge  Rapid Responder (source)
2020-05-22 00:41:27 -0500 asked a question Segfault in pluginlib-tutorial whenever adding Plugins-Description-File between <export> tags

Segfault in pluginlib-tutorial whenever adding Plugins-Description-File between <export> tags Hi all, Have anyon

2020-05-21 00:04:02 -0500 received badge  Enthusiast
2020-05-15 00:36:47 -0500 received badge  Supporter (source)