kitti-velodyne-viewer
View kitti lidar point cloud with bounding box label by single file.
Requirements
The code requires pyqtgraph and python 3.x
Dataset
Download KITTI 3D object detection data and organize the folders as follows:
dataset/KITTI/object/
velodyne/
training/
000003.bin
testing/
calib/
training/
000003.txt
testing/
label/
training/
000003.txt
testing/
.pcd
to .bin
convert usage:
# pcdfolder is where `.pcd` files are stores
python pcd2bin.py covert pcdfolder binfolder
for example:
python pcd2bin.py convert pcdfiles outputfolder
.bin
to .pcd
convert you have to install PCL lib first. usage:
cmake .
make
./binpcd --m=bin2pcd --b=velodyne_bin/ --p=velodyne_pcd/
./binpcd --m=pcd2bin --b=velodyne_bin/ --p=velodyne_pcd/
Options:
--help : produce help message
--b : bin file folder
--p : pcd file folder
--m : mode - bin2pcd, pcd2bin
refer to kitti_velodyne_bin_to_pcd