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

Tohoku's profile - activity

2016-02-19 04:45:10 -0500 received badge  Enthusiast
2016-02-16 03:06:39 -0500 asked a question Does gmapping uses graph optimization?

The output map of Gmapping are usually consistence, even-though its trajectory output jumps a lot. Therefore, I have checked Gmapping tree node trajectory. Which surprisingly, tree node linearized all trajectory jumps.

Does it mean, gmapping uses graph optimization?

2015-07-23 11:05:20 -0500 received badge  Famous Question (source)
2015-07-23 10:57:42 -0500 received badge  Famous Question (source)
2015-07-02 01:19:42 -0500 received badge  Notable Question (source)
2015-07-01 20:59:05 -0500 received badge  Notable Question (source)
2015-07-01 09:04:59 -0500 received badge  Student (source)
2015-07-01 08:48:09 -0500 received badge  Popular Question (source)
2015-07-01 08:41:35 -0500 received badge  Popular Question (source)
2015-07-01 08:24:17 -0500 received badge  Editor (source)
2015-07-01 07:06:21 -0500 commented question Pointcloud visualisation blinking when using Velodyne VLP16 dual return mode

Hi gvdhoom, the question "How to select dual return mode for velodyne VLP16?" can be solved by selecting dual mode in VLP16 hardware setting. However, this question is after the hardware setting, how to display point cloud in Velodyne ros package?.
=)

2015-07-01 05:07:29 -0500 asked a question Pointcloud visualisation blinking when using Velodyne VLP16 dual return mode

Hi everyone,

How to use ros package Velodyne for VLP16 dual return mode?

[Observed problem] 1. VLP16 hardware configuration was defined to dual return mode 2. I tried roslaunch velodyne_pointcloud VLP16_points.launch and display it on rviz, but the 3D point cloud was blinking and distorted.

[cause of the problem] The blinking was caused by dual return mode data structure . 1. Strongest return and Last return, the data structure: Every blocks have different horizontal angle. 2.However, Dual return data structure: Every 2 blocks are coupled with same horizontal angle.

Therefore it requires twice numbers of blocks to complete a 360 degrees of 3D point cloud in Dual return mode than the others. This have caused the blinking problem.

[how to solve it in ROS velodyne package] ???? need some help here

Thank you very much

2015-07-01 04:24:29 -0500 commented answer [SOLVED]How to select dual return mode for velodyne VLP16

Thank you that solved the my question =)

2015-07-01 03:49:21 -0500 commented question [SOLVED]How to select dual return mode for velodyne VLP16

I think dual return was defined here? is it true? Dual return have been defined in rawdata.h ---> http://docs.ros.org/indigo/api/velody... program line
00063 static const int VLP16_FIRINGS_PER_BLOCK = 2; // dual return

2015-07-01 03:33:46 -0500 asked a question [SOLVED]How to select dual return mode for velodyne VLP16

Hi everyone,

In the velodyne package, how do you select dual returns mode for velodyne VLP16?.

Thank you