├── .gitattributes ├── Detection_Of_Motorcyclists_Without_Helmet.ipynb ├── HelmetDetection ├── dataset │ └── bikerider-dataset.zip ├── dataset_preparation │ ├── download_images.py │ ├── js_console.js │ └── xmlToTxt.py ├── input │ ├── images │ │ └── sample.jpeg │ └── videos │ │ └── clip.mp4 ├── output │ ├── images │ │ ├── clip11_303_1.jpg │ │ ├── clip11_381_1.jpg │ │ ├── clip11_381_2.jpg │ │ ├── clip11_426_1.jpg │ │ ├── sample11.jpg │ │ └── sample12.jpg │ └── output_clip.mp4 ├── rcnn │ ├── frozen_inference_graph.pb │ └── label_map.pbtxt └── yolo │ ├── obj.names │ ├── yolov3_custom.cfg │ ├── yolov3_custom_4000.weights │ └── yolov3_custom_last.weights ├── README.md └── images ├── faster-rcnn-output.png ├── helmet-detection-demo.gif ├── integration.png ├── logo.png ├── project-image-2.png ├── project-image.png ├── system-architecture.png └── yolov3-output.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/.gitattributes -------------------------------------------------------------------------------- /Detection_Of_Motorcyclists_Without_Helmet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/Detection_Of_Motorcyclists_Without_Helmet.ipynb -------------------------------------------------------------------------------- /HelmetDetection/dataset/bikerider-dataset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/dataset/bikerider-dataset.zip -------------------------------------------------------------------------------- /HelmetDetection/dataset_preparation/download_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/dataset_preparation/download_images.py -------------------------------------------------------------------------------- /HelmetDetection/dataset_preparation/js_console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/dataset_preparation/js_console.js -------------------------------------------------------------------------------- /HelmetDetection/dataset_preparation/xmlToTxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/dataset_preparation/xmlToTxt.py -------------------------------------------------------------------------------- /HelmetDetection/input/images/sample.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/input/images/sample.jpeg -------------------------------------------------------------------------------- /HelmetDetection/input/videos/clip.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/input/videos/clip.mp4 -------------------------------------------------------------------------------- /HelmetDetection/output/images/clip11_303_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/output/images/clip11_303_1.jpg -------------------------------------------------------------------------------- /HelmetDetection/output/images/clip11_381_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/output/images/clip11_381_1.jpg -------------------------------------------------------------------------------- /HelmetDetection/output/images/clip11_381_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/output/images/clip11_381_2.jpg -------------------------------------------------------------------------------- /HelmetDetection/output/images/clip11_426_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/output/images/clip11_426_1.jpg -------------------------------------------------------------------------------- /HelmetDetection/output/images/sample11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/output/images/sample11.jpg -------------------------------------------------------------------------------- /HelmetDetection/output/images/sample12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/output/images/sample12.jpg -------------------------------------------------------------------------------- /HelmetDetection/output/output_clip.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/output/output_clip.mp4 -------------------------------------------------------------------------------- /HelmetDetection/rcnn/frozen_inference_graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/rcnn/frozen_inference_graph.pb -------------------------------------------------------------------------------- /HelmetDetection/rcnn/label_map.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/rcnn/label_map.pbtxt -------------------------------------------------------------------------------- /HelmetDetection/yolo/obj.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/yolo/obj.names -------------------------------------------------------------------------------- /HelmetDetection/yolo/yolov3_custom.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/yolo/yolov3_custom.cfg -------------------------------------------------------------------------------- /HelmetDetection/yolo/yolov3_custom_4000.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/yolo/yolov3_custom_4000.weights -------------------------------------------------------------------------------- /HelmetDetection/yolo/yolov3_custom_last.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/HelmetDetection/yolo/yolov3_custom_last.weights -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/README.md -------------------------------------------------------------------------------- /images/faster-rcnn-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/images/faster-rcnn-output.png -------------------------------------------------------------------------------- /images/helmet-detection-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/images/helmet-detection-demo.gif -------------------------------------------------------------------------------- /images/integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/images/integration.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/project-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/images/project-image-2.png -------------------------------------------------------------------------------- /images/project-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/images/project-image.png -------------------------------------------------------------------------------- /images/system-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/images/system-architecture.png -------------------------------------------------------------------------------- /images/yolov3-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manikanta-varaganti/detection-of-motorcyclists-without-helmet/HEAD/images/yolov3-output.png --------------------------------------------------------------------------------