forked from laboshinl/loam_velodyne
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,25 @@ | ||
Installation: | ||
|
||
``` | ||
cd /opt/ros/indigo/stacks/ | ||
git clone https://github.com/laboshinl/loam_velodyne.git | ||
cd loam_velodyne | ||
cmake . | ||
rosmake | ||
``` | ||
|
||
Running: | ||
``` | ||
roslaunch loam_velodyne.launch | ||
``` | ||
|
||
In second terminal play sample velodyne data from rosbag (http://www.frc.ri.cmu.edu/~jizhang03/Datasets/nsh_indoor_outdoor.bag): | ||
``` | ||
rosbag play ~/Downloads/nsh_indoor_outdoor.bag | ||
``` | ||
|
||
Or read from velodyne pcap (http://midas3.kitware.com/midas/download/item/215411): | ||
``` | ||
roslaunch velodyne_pointcloud 32e_points.launch calibration:=/home/laboshinl/calib.yaml pcap:="/home/laboshinl/Downloads/velodyne.pcap" | ||
``` | ||
|