├── LICENSE ├── Notebook.ipynb ├── README.md ├── YoloV2 ├── .ipynb_checkpoints │ └── Notebook-checkpoint.ipynb ├── Notebook.ipynb ├── font │ ├── FiraMono-Medium.otf │ └── SIL Open Font License.txt ├── model_data │ ├── coco_classes.txt │ ├── object_classes.txt │ └── yolo_anchors.txt ├── notebook_images │ ├── architecture.png │ ├── clustering.png │ ├── iou.png │ ├── nms_algo.jpg │ ├── probability_extraction.png │ ├── rectangle.png │ └── yolo.png ├── script.py ├── yad2k │ ├── keras_yolo.py │ └── utils │ │ ├── __init__.py │ │ ├── utils.py │ │ └── yolo_utils.py └── yolo.cfg ├── YoloV3 ├── .ipynb_checkpoints │ └── Notebook-checkpoint.ipynb ├── Notebook.ipynb ├── font │ ├── FiraMono-Medium.otf │ └── SIL Open Font License.txt ├── model_data │ ├── coco_classes.txt │ ├── object_classes.txt │ └── yolo_anchors.txt ├── notebook_images │ ├── architecture.png │ ├── clustering.png │ ├── formula.png │ ├── iou.png │ ├── nms_algo.jpg │ ├── probability_extraction.png │ ├── rectangle.png │ └── yolo.png ├── script.py ├── test │ └── straight_lines1.jpg ├── yad2k │ └── utils │ │ ├── __init__.py │ │ ├── utils.py │ │ └── yolo_utils.py └── yolo3.cfg ├── cv_utils.py ├── documentation ├── examples.png ├── hog.png └── sliding_window.png ├── lane_utils.py ├── model.pkl ├── project_video.mp4 ├── requirements.txt └── test_video.mp4 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/Notebook.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/README.md -------------------------------------------------------------------------------- /YoloV2/.ipynb_checkpoints/Notebook-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/.ipynb_checkpoints/Notebook-checkpoint.ipynb -------------------------------------------------------------------------------- /YoloV2/Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/Notebook.ipynb -------------------------------------------------------------------------------- /YoloV2/font/FiraMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/font/FiraMono-Medium.otf -------------------------------------------------------------------------------- /YoloV2/font/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/font/SIL Open Font License.txt -------------------------------------------------------------------------------- /YoloV2/model_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/model_data/coco_classes.txt -------------------------------------------------------------------------------- /YoloV2/model_data/object_classes.txt: -------------------------------------------------------------------------------- 1 | car -------------------------------------------------------------------------------- /YoloV2/model_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/model_data/yolo_anchors.txt -------------------------------------------------------------------------------- /YoloV2/notebook_images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/notebook_images/architecture.png -------------------------------------------------------------------------------- /YoloV2/notebook_images/clustering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/notebook_images/clustering.png -------------------------------------------------------------------------------- /YoloV2/notebook_images/iou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/notebook_images/iou.png -------------------------------------------------------------------------------- /YoloV2/notebook_images/nms_algo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/notebook_images/nms_algo.jpg -------------------------------------------------------------------------------- /YoloV2/notebook_images/probability_extraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/notebook_images/probability_extraction.png -------------------------------------------------------------------------------- /YoloV2/notebook_images/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/notebook_images/rectangle.png -------------------------------------------------------------------------------- /YoloV2/notebook_images/yolo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/notebook_images/yolo.png -------------------------------------------------------------------------------- /YoloV2/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/script.py -------------------------------------------------------------------------------- /YoloV2/yad2k/keras_yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/yad2k/keras_yolo.py -------------------------------------------------------------------------------- /YoloV2/yad2k/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import * 2 | -------------------------------------------------------------------------------- /YoloV2/yad2k/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/yad2k/utils/utils.py -------------------------------------------------------------------------------- /YoloV2/yad2k/utils/yolo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/yad2k/utils/yolo_utils.py -------------------------------------------------------------------------------- /YoloV2/yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV2/yolo.cfg -------------------------------------------------------------------------------- /YoloV3/.ipynb_checkpoints/Notebook-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/.ipynb_checkpoints/Notebook-checkpoint.ipynb -------------------------------------------------------------------------------- /YoloV3/Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/Notebook.ipynb -------------------------------------------------------------------------------- /YoloV3/font/FiraMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/font/FiraMono-Medium.otf -------------------------------------------------------------------------------- /YoloV3/font/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/font/SIL Open Font License.txt -------------------------------------------------------------------------------- /YoloV3/model_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/model_data/coco_classes.txt -------------------------------------------------------------------------------- /YoloV3/model_data/object_classes.txt: -------------------------------------------------------------------------------- 1 | car -------------------------------------------------------------------------------- /YoloV3/model_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/model_data/yolo_anchors.txt -------------------------------------------------------------------------------- /YoloV3/notebook_images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/notebook_images/architecture.png -------------------------------------------------------------------------------- /YoloV3/notebook_images/clustering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/notebook_images/clustering.png -------------------------------------------------------------------------------- /YoloV3/notebook_images/formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/notebook_images/formula.png -------------------------------------------------------------------------------- /YoloV3/notebook_images/iou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/notebook_images/iou.png -------------------------------------------------------------------------------- /YoloV3/notebook_images/nms_algo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/notebook_images/nms_algo.jpg -------------------------------------------------------------------------------- /YoloV3/notebook_images/probability_extraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/notebook_images/probability_extraction.png -------------------------------------------------------------------------------- /YoloV3/notebook_images/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/notebook_images/rectangle.png -------------------------------------------------------------------------------- /YoloV3/notebook_images/yolo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/notebook_images/yolo.png -------------------------------------------------------------------------------- /YoloV3/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/script.py -------------------------------------------------------------------------------- /YoloV3/test/straight_lines1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/test/straight_lines1.jpg -------------------------------------------------------------------------------- /YoloV3/yad2k/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import * 2 | -------------------------------------------------------------------------------- /YoloV3/yad2k/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/yad2k/utils/utils.py -------------------------------------------------------------------------------- /YoloV3/yad2k/utils/yolo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/yad2k/utils/yolo_utils.py -------------------------------------------------------------------------------- /YoloV3/yolo3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/YoloV3/yolo3.cfg -------------------------------------------------------------------------------- /cv_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/cv_utils.py -------------------------------------------------------------------------------- /documentation/examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/documentation/examples.png -------------------------------------------------------------------------------- /documentation/hog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/documentation/hog.png -------------------------------------------------------------------------------- /documentation/sliding_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/documentation/sliding_window.png -------------------------------------------------------------------------------- /lane_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/lane_utils.py -------------------------------------------------------------------------------- /model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/model.pkl -------------------------------------------------------------------------------- /project_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/project_video.mp4 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilcvetkov92/Vehicle-Detection/HEAD/test_video.mp4 --------------------------------------------------------------------------------