Prepare KITTI training data
masterTo use the KITTI dataset, download the archives and unzip them into kitti_data/.
Note: The dataset is approximately 175GB.
By default, the code expects images to be converted from .png to .jpg with specific chroma subsampling. This conversion command also deletes the original .png files:
find kitti_data/ -name '*.png' | parallel 'convert -quality 92 -sampling-factor 2x2,1x1,1x1 {.}.png {.}.jpg && rm {}'Alternatively, you can train directly from raw .png files by adding the --png flag to your training command, though this will result in slower load times.
wget -i splits/kitti_archives_to_download.txt -P kitti_data/
cd kitti_data
unzip "*.zip"
cd ..
# Convert PNG to JPG (recommended):
find kitti_data/ -name '*.png' | parallel 'convert -quality 92 -sampling-factor 2x2,1x1,1x1 {.}.png {.}.jpg && rm {}'