This repository builds a program that:
- Creates 2D bird's eye view (BEV) images of online LiDAR scans,
- Aggregates 2D BEV images to create a BEV map, and
- Outputs a information file (info.txt) that relates each BEV scan to a pixel position in the BEV map.
- Install Anaconda Python.
- Clone this repository.
- Execute the following commands:
# Change into repo.
cd build-lidar-2d-bev-data
# Set up environment.
source env/start_env.sh
bash env/install_packages.sh
# Build the program.
mkdir -p build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=../bin
make -j && make install
To run the program:
- Go to the bin directory in the repo. That is,
cd bin
from repo root. - Run
./build_kitti_bev_data --basedir <basedir> --savedir <savedir> --res <res> ...
with your choice of the remaining arguments.