├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── Makefile ├── Poster.pdf ├── README.md ├── convert_coco_yolo.py ├── preprocess_flir_dataset.sh ├── run_all_iters.sh ├── run_docker_container.sh ├── start_map_calc.sh ├── start_training.sh ├── thermal.data ├── thermal.names ├── yolov3-spp-custom.cfg ├── yolov3-spp.cfg ├── yolov3-thermal.cfg └── yolov3_5l.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/Makefile -------------------------------------------------------------------------------- /Poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/Poster.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/README.md -------------------------------------------------------------------------------- /convert_coco_yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/convert_coco_yolo.py -------------------------------------------------------------------------------- /preprocess_flir_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/preprocess_flir_dataset.sh -------------------------------------------------------------------------------- /run_all_iters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/run_all_iters.sh -------------------------------------------------------------------------------- /run_docker_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/run_docker_container.sh -------------------------------------------------------------------------------- /start_map_calc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/start_map_calc.sh -------------------------------------------------------------------------------- /start_training.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/start_training.sh -------------------------------------------------------------------------------- /thermal.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/thermal.data -------------------------------------------------------------------------------- /thermal.names: -------------------------------------------------------------------------------- 1 | person 2 | bicycle 3 | car 4 | -------------------------------------------------------------------------------- /yolov3-spp-custom.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/yolov3-spp-custom.cfg -------------------------------------------------------------------------------- /yolov3-spp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/yolov3-spp.cfg -------------------------------------------------------------------------------- /yolov3-thermal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/yolov3-thermal.cfg -------------------------------------------------------------------------------- /yolov3_5l.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesozi/object-detection/HEAD/yolov3_5l.cfg --------------------------------------------------------------------------------