forked from robofit/but_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
Martin Velas
committed
Mar 24, 2016
1 parent
685c417
commit 04fa25c
Showing
2 changed files
with
16 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#! /bin/bash | ||
|
||
for i in $(seq 0 4); do | ||
[ -f 00000$i.pcd ] || wget --no-check-certificate https://www.fit.vutbr.cz/~ivelas/files/kitti-sample/00000$i.pcd | ||
done | ||
|
||
roslaunch but_velodyne_odom collar_line_odometry.launch & | ||
|
||
sleep 10 | ||
|
||
for f in 00000*.pcd; do | ||
rosrun pcl_ros pcd_to_pointcloud $f /cloud_pcd:=/velodyne_points | ||
sleep 1 | ||
done |