├── README.md ├── colab training code ├── signs_classification.ipynb └── yolov4_tiny_signs.ipynb ├── detection_from_folder.py ├── detection_realtime.py ├── grabscreen.py ├── images ├── demo.gif ├── flow.png ├── input_images │ ├── 00021.jpg │ ├── 00022.jpg │ ├── 00023.jpg │ ├── 00025.jpg │ ├── 00026.jpg │ ├── 00888.jpg │ ├── 00894.jpg │ ├── 00895.jpg │ ├── 00896.jpg │ └── 00899.jpg └── output_images │ ├── 1.jpg │ ├── 2.jpg │ ├── 4.jpg │ ├── 6.jpg │ └── 9.jpg ├── signs.names.txt └── signs_classes.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/README.md -------------------------------------------------------------------------------- /colab training code/signs_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/colab training code/signs_classification.ipynb -------------------------------------------------------------------------------- /colab training code/yolov4_tiny_signs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/colab training code/yolov4_tiny_signs.ipynb -------------------------------------------------------------------------------- /detection_from_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/detection_from_folder.py -------------------------------------------------------------------------------- /detection_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/detection_realtime.py -------------------------------------------------------------------------------- /grabscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/grabscreen.py -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/flow.png -------------------------------------------------------------------------------- /images/input_images/00021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/input_images/00021.jpg -------------------------------------------------------------------------------- /images/input_images/00022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/input_images/00022.jpg -------------------------------------------------------------------------------- /images/input_images/00023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/input_images/00023.jpg -------------------------------------------------------------------------------- /images/input_images/00025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/input_images/00025.jpg -------------------------------------------------------------------------------- /images/input_images/00026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/input_images/00026.jpg -------------------------------------------------------------------------------- /images/input_images/00888.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/input_images/00888.jpg -------------------------------------------------------------------------------- /images/input_images/00894.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/input_images/00894.jpg -------------------------------------------------------------------------------- /images/input_images/00895.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/input_images/00895.jpg -------------------------------------------------------------------------------- /images/input_images/00896.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/input_images/00896.jpg -------------------------------------------------------------------------------- /images/input_images/00899.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/input_images/00899.jpg -------------------------------------------------------------------------------- /images/output_images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/output_images/1.jpg -------------------------------------------------------------------------------- /images/output_images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/output_images/2.jpg -------------------------------------------------------------------------------- /images/output_images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/output_images/4.jpg -------------------------------------------------------------------------------- /images/output_images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/output_images/6.jpg -------------------------------------------------------------------------------- /images/output_images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/images/output_images/9.jpg -------------------------------------------------------------------------------- /signs.names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/signs.names.txt -------------------------------------------------------------------------------- /signs_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alzaib/Traffic-Signs-Detection-Tensorflow-YOLOv3-YOLOv4/HEAD/signs_classes.txt --------------------------------------------------------------------------------