erik-nelson / blam

Other
786 stars 347 forks source link

real-time sensor stream #3

Closed camel007 closed 8 years ago

camel007 commented 8 years ago

hi, nelson! I want to test it with my device(velodyne vlp-16), When I type in this command, it show these information and stop working `roslaunch blam_example test_online.launch ... logging to /home/nd/.ros/log/a45d32fe-44af-11e6-89b0-408d5c5086b9/roslaunch-nd-Z97X-UD3H-15283.log Checking log directory for disk usage. This may take awhile. Press Ctrl-C to interrupt Done checking log file disk usage. Usage is <1GB.

started roslaunch server http://nd-Z97X-UD3H:51340/

SUMMARY

PARAMETERS

NODES /blam/ blam_slam (blam_slam/blam_slam_node)

auto-starting new master process[master]: started with pid [15295] ROS_MASTER_URI=http://localhost:11311

setting /run_id to a45d32fe-44af-11e6-89b0-408d5c5086b9 process[rosout-1]: started with pid [15308] started core service [/rosout] process[blam/blam_slam-2]: started with pid [15322] [ INFO] [1467943185.583695136]: /blam/blam_slam/BlamSlam: Registering online callbacks. ` Should I tune some parameters? Thanks for your help! Best Regards!

erik-nelson commented 8 years ago

That's all expected output. After receiving that, it's sitting there waiting for you to give it a sensor stream. Look in the launch file to find the topic that you should publish your VLP-16 point clouds to, and change it if it's not the right topic.

I think by default the VLP-16 publishes to a topic like /velodyne_points or /velodyne, so just set this line to whatever your topic is.

camel007 commented 8 years ago

Thank you!