Anyone who has ever used SICK LMS200-style sensor??
Hello! I'm working on ROS kinetic on Ubuntu 16.04.
I just want to know what's the name of raw laser-scanned topic SICK LMS200-style sensor publishes.
For example, in the case of Hokuyo 2D-Lidar sensor, it publishes laser topic name of '/scan'.
Is the name of laser scan topic JUST 'laser' ??
In fact, I've never used any other 2D Lidar sensors except Hokuyo lidar sensor.
Thanks in advance. :)
Which ROS driver are you using? It is possible that your driver publishes
laser
but you can remap it id you wish. A quickrostopic echo
will tell you if it publishes some data.I'm using [urg_node] (http://wiki.ros.org/urg_node)for Hokuyo 2D Lidar sensor.It publishes [/scan] topic type of sensor_msgs/LaserScan.In fact, the laser scanned topic is subscribed in namespace of /spencer/perception_internal/people_detection/laser_front so, is it bettet to change from "scan" to "/spencer/perception_internal/people_detection/laser_front /laser " in urg_node.cpp ? (I run urg_node by rosrun not roslaunch.)
No, do not change the source code to rename a topic. To remap a topic:
rosrun urg_node urg_node /scan:=/spencer/perception_internal/people_detection/laser_front
. See here: https://wiki.ros.org/Remapping%20Argu...Have you tried
rostopic list
? What does it say. That along withrostopic echo
should help.