Heat-Vision / utils /download_FLIR_ADAS.sh
TulkinRB's picture
Add stuff
0bdfe9d
raw
history blame contribute delete
417 Bytes
#!/bin/bash
if [! "$(basename "$(pwd)")" != "utils" ]; then
echo "Please run this script from the main directory."
exit 1
fi
if [ ! -d "data" ]; then
mkdir data
fi
if [ ! -d "data/FLIR_ADAS" ]; then
mkdir data/FLIR_ADAS
fi
cd data/FLIR_ADAS
pwd
curl -L -o FLIR_ADAS_v2.zip "https://adas-dataset-v2.flirconservator.com/dataset/full/FLIR_ADAS_v2.zip"
unzip FLIR_ADAS_v2.zip
rm FLIR_ADAS_v2.zip
cd ../