Skip to content

Commit

Permalink
Odometry demo & library info
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Velas committed Mar 24, 2016
1 parent 685c417 commit 04fa25c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ but_velodyne
============

ROS packages for Velodyne 3D LIDARs provided by Robo@FIT group.

These packages depend on [but_velodyne_lib](https://github.com/martin-velas/but_velodyne_lib) library which must be compiled and installed on the machine first. See the description of library repository for more information related to the compilation process. Do not forget to run `make install` after the library is built.
14 changes: 14 additions & 0 deletions but_velodyne_odom/demo.sh
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

0 comments on commit 04fa25c

Please sign in to comment.