├── .gitignore ├── Car_Detection_Using_Harr_Cascades.py ├── Car_Results.xls ├── GroundTruth.xlsx ├── LICENSE ├── MobileNet_TransferLearning.py ├── Output.avi ├── README.md ├── Vehicle_Detection_YOLO.pdf ├── VideoReader.py ├── coco_annotation.py ├── convert.py ├── darknet53.cfg ├── font ├── FiraMono-Medium.otf └── SIL Open Font License.txt ├── images ├── Execution_Time_VS_Frame.png ├── model.png └── pipeline.png ├── kmeans.py ├── model ├── BoundedExecutor.py ├── CarClassifier.py ├── ObjectDetector.py ├── ScoreCalculator.py └── Utility.py ├── model_data ├── coco_classes.txt ├── tiny_yolo_anchors.txt ├── voc_classes.txt ├── yolo_anchors.txt └── yolo_tiny_anchors.txt ├── saved_models ├── Adam_20Epoch_Car.png ├── MobileNetModel.png ├── Mobilenet_Adam_car_classification ├── Mobilenet_RMSProp_car_classification ├── Output.gif ├── RMSProp_20Epoch.png └── Stats_Output_Adam20Epoch.PNG ├── test ├── assignment-clip.mp4 ├── cars.xml ├── cat_and_human.jpg └── dependencies.yml ├── train.py ├── train_bottleneck.py ├── voc_annotation.py ├── yolo.py ├── yolo3 ├── __init__.py ├── model.py └── utils.py ├── yolo_video.py ├── yolov3-tiny.cfg └── yolov3.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/.gitignore -------------------------------------------------------------------------------- /Car_Detection_Using_Harr_Cascades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/Car_Detection_Using_Harr_Cascades.py -------------------------------------------------------------------------------- /Car_Results.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/Car_Results.xls -------------------------------------------------------------------------------- /GroundTruth.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/GroundTruth.xlsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/LICENSE -------------------------------------------------------------------------------- /MobileNet_TransferLearning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/MobileNet_TransferLearning.py -------------------------------------------------------------------------------- /Output.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/Output.avi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/README.md -------------------------------------------------------------------------------- /Vehicle_Detection_YOLO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/Vehicle_Detection_YOLO.pdf -------------------------------------------------------------------------------- /VideoReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/VideoReader.py -------------------------------------------------------------------------------- /coco_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/coco_annotation.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/convert.py -------------------------------------------------------------------------------- /darknet53.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/darknet53.cfg -------------------------------------------------------------------------------- /font/FiraMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/font/FiraMono-Medium.otf -------------------------------------------------------------------------------- /font/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/font/SIL Open Font License.txt -------------------------------------------------------------------------------- /images/Execution_Time_VS_Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/images/Execution_Time_VS_Frame.png -------------------------------------------------------------------------------- /images/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/images/model.png -------------------------------------------------------------------------------- /images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/images/pipeline.png -------------------------------------------------------------------------------- /kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/kmeans.py -------------------------------------------------------------------------------- /model/BoundedExecutor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/model/BoundedExecutor.py -------------------------------------------------------------------------------- /model/CarClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/model/CarClassifier.py -------------------------------------------------------------------------------- /model/ObjectDetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/model/ObjectDetector.py -------------------------------------------------------------------------------- /model/ScoreCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/model/ScoreCalculator.py -------------------------------------------------------------------------------- /model/Utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/model/Utility.py -------------------------------------------------------------------------------- /model_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/model_data/coco_classes.txt -------------------------------------------------------------------------------- /model_data/tiny_yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/model_data/tiny_yolo_anchors.txt -------------------------------------------------------------------------------- /model_data/voc_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/model_data/voc_classes.txt -------------------------------------------------------------------------------- /model_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/model_data/yolo_anchors.txt -------------------------------------------------------------------------------- /model_data/yolo_tiny_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/model_data/yolo_tiny_anchors.txt -------------------------------------------------------------------------------- /saved_models/Adam_20Epoch_Car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/saved_models/Adam_20Epoch_Car.png -------------------------------------------------------------------------------- /saved_models/MobileNetModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/saved_models/MobileNetModel.png -------------------------------------------------------------------------------- /saved_models/Mobilenet_Adam_car_classification: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/saved_models/Mobilenet_Adam_car_classification -------------------------------------------------------------------------------- /saved_models/Mobilenet_RMSProp_car_classification: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/saved_models/Mobilenet_RMSProp_car_classification -------------------------------------------------------------------------------- /saved_models/Output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/saved_models/Output.gif -------------------------------------------------------------------------------- /saved_models/RMSProp_20Epoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/saved_models/RMSProp_20Epoch.png -------------------------------------------------------------------------------- /saved_models/Stats_Output_Adam20Epoch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/saved_models/Stats_Output_Adam20Epoch.PNG -------------------------------------------------------------------------------- /test/assignment-clip.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/test/assignment-clip.mp4 -------------------------------------------------------------------------------- /test/cars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/test/cars.xml -------------------------------------------------------------------------------- /test/cat_and_human.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/test/cat_and_human.jpg -------------------------------------------------------------------------------- /test/dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/test/dependencies.yml -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/train.py -------------------------------------------------------------------------------- /train_bottleneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/train_bottleneck.py -------------------------------------------------------------------------------- /voc_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/voc_annotation.py -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/yolo.py -------------------------------------------------------------------------------- /yolo3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/yolo3/model.py -------------------------------------------------------------------------------- /yolo3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/yolo3/utils.py -------------------------------------------------------------------------------- /yolo_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/yolo_video.py -------------------------------------------------------------------------------- /yolov3-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/yolov3-tiny.cfg -------------------------------------------------------------------------------- /yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prakhargurawa/Vehicle-Detection-Classification-YOLO-MobileNet/HEAD/yolov3.cfg --------------------------------------------------------------------------------