The project is about vehicle object detection & distance estimation using thermal imaging.
The main idea is to make object detection using Yolov5 after fine-tuning it on the FLIR dataset to enable the model to accurately detect objects on thermal images and videos. Then using object detection results as an input to the distance estimation model - trained on the KITTI dataset - we estimate the distance. Finally, we visualize predictions.
Detect objects on images/video frames.
- clone repo
git clone https://github.com/RmdanJr/vehicle-distance-estimation.git
- navigate to object detector directory
cd vehicle-distance-estimation/object-detector/
- install requirements
pip install -r requirements.txt
- setup environment
python setup.py
- download dataset
bash scripts/download-flir-dataset.sh
- format dataset as YOLOv5 format
python format-dataset.py
- create YAML configuration file
python create-yaml.py
- modify yolovs YAML file
python configure-yolo-yaml.py
- train model on our custom dataset
python train.py --epochs 50 --data dataset.yaml --cfg yolov5s.yaml
make detections on images/videoes using our training weights.
- download our pre-trained model's weights
gdown --folder 10jpVGSHGILDt85QGf5KwHji0sUjZXbWR
- detect objects on input video
python detect.py --save-txt --weights training-results/weights/best.pt --conf 0.4 --source video.mp4
Frames on rows & classes on columns. Each cell has all center coordinates of the detected objects in a frame on a row from class on a column.
- generate sheet from text labels
python generate-coordinates-sheet.py
Estimate the distance of objects using object detection results.
- navigate to distance estimator directory
cd vehicle-distance-estimation/distance-estimator/
- install requirements
pip install -r requirements.txt
- download dataset
bash scripts/download-kitti-dataset.sh
- format dataset
bash scripts/organize-dataset-format.sh
- generate train and test csv files from dataset annotations
python generate-csv.py --input=kitti-dataset/train_annots/ --filename=annotations.csv --results .
- continue training a pre-trained model
python training_continuer.py --model models/[email protected] --weights models/[email protected] --results models/ --train train.csv --test test.csv
OR
- train model from scratch
python train.py --results models/ --train train.csv --test test.csv
- estimate distance
python inference.py --data annotations.csv --model models/[email protected] --weights models/[email protected] --results .
- visualize predections
python visualizer.py --data ../results/data/data.csv --frames ../object-detector/results/frames/ -fps 90 --results results