├── LICENSE ├── People_Count_App.py ├── README.md ├── __pycache__ └── yolo.cpython-36.pyc ├── coco_annotation.py ├── convert.py ├── deep_sort ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── detection.cpython-36.pyc │ ├── iou_matching.cpython-36.pyc │ ├── kalman_filter.cpython-36.pyc │ ├── linear_assignment.cpython-36.pyc │ ├── nn_matching.cpython-36.pyc │ ├── preprocessing.cpython-36.pyc │ ├── track.cpython-36.pyc │ └── tracker.cpython-36.pyc ├── detection.py ├── detection.pyc ├── iou_matching.py ├── iou_matching.pyc ├── kalman_filter.py ├── kalman_filter.pyc ├── linear_assignment.py ├── linear_assignment.pyc ├── nn_matching.py ├── nn_matching.pyc ├── preprocessing.py ├── preprocessing.pyc ├── track.py ├── track.pyc ├── tracker.py └── tracker.pyc ├── demo.py ├── font ├── FiraMono-Medium.otf └── SIL Open Font License.txt ├── kmeans.py ├── res.txt ├── sort.py ├── tools ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── generate_detections.cpython-36.pyc ├── freeze_model.py ├── generate_detections.py └── generate_detections.pyc ├── train.py ├── train_bottleneck.py ├── voc_annotation.py ├── yolo.py ├── yolo3 ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── model.cpython-36.pyc │ └── utils.cpython-36.pyc ├── model.py ├── model.pyc ├── utils.py └── utils.pyc └── yolo_video.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /People_Count_App.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/People_Count_App.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/yolo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/__pycache__/yolo.cpython-36.pyc -------------------------------------------------------------------------------- /coco_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/coco_annotation.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/convert.py -------------------------------------------------------------------------------- /deep_sort/__init__.py: -------------------------------------------------------------------------------- 1 | # vim: expandtab:ts=4:sw=4 2 | -------------------------------------------------------------------------------- /deep_sort/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/__init__.pyc -------------------------------------------------------------------------------- /deep_sort/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /deep_sort/__pycache__/detection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/__pycache__/detection.cpython-36.pyc -------------------------------------------------------------------------------- /deep_sort/__pycache__/iou_matching.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/__pycache__/iou_matching.cpython-36.pyc -------------------------------------------------------------------------------- /deep_sort/__pycache__/kalman_filter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/__pycache__/kalman_filter.cpython-36.pyc -------------------------------------------------------------------------------- /deep_sort/__pycache__/linear_assignment.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/__pycache__/linear_assignment.cpython-36.pyc -------------------------------------------------------------------------------- /deep_sort/__pycache__/nn_matching.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/__pycache__/nn_matching.cpython-36.pyc -------------------------------------------------------------------------------- /deep_sort/__pycache__/preprocessing.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/__pycache__/preprocessing.cpython-36.pyc -------------------------------------------------------------------------------- /deep_sort/__pycache__/track.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/__pycache__/track.cpython-36.pyc -------------------------------------------------------------------------------- /deep_sort/__pycache__/tracker.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/__pycache__/tracker.cpython-36.pyc -------------------------------------------------------------------------------- /deep_sort/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/detection.py -------------------------------------------------------------------------------- /deep_sort/detection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/detection.pyc -------------------------------------------------------------------------------- /deep_sort/iou_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/iou_matching.py -------------------------------------------------------------------------------- /deep_sort/iou_matching.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/iou_matching.pyc -------------------------------------------------------------------------------- /deep_sort/kalman_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/kalman_filter.py -------------------------------------------------------------------------------- /deep_sort/kalman_filter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/kalman_filter.pyc -------------------------------------------------------------------------------- /deep_sort/linear_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/linear_assignment.py -------------------------------------------------------------------------------- /deep_sort/linear_assignment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/linear_assignment.pyc -------------------------------------------------------------------------------- /deep_sort/nn_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/nn_matching.py -------------------------------------------------------------------------------- /deep_sort/nn_matching.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/nn_matching.pyc -------------------------------------------------------------------------------- /deep_sort/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/preprocessing.py -------------------------------------------------------------------------------- /deep_sort/preprocessing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/preprocessing.pyc -------------------------------------------------------------------------------- /deep_sort/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/track.py -------------------------------------------------------------------------------- /deep_sort/track.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/track.pyc -------------------------------------------------------------------------------- /deep_sort/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/tracker.py -------------------------------------------------------------------------------- /deep_sort/tracker.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/deep_sort/tracker.pyc -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/demo.py -------------------------------------------------------------------------------- /font/FiraMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/font/FiraMono-Medium.otf -------------------------------------------------------------------------------- /font/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/font/SIL Open Font License.txt -------------------------------------------------------------------------------- /kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/kmeans.py -------------------------------------------------------------------------------- /res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/res.txt -------------------------------------------------------------------------------- /sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/sort.py -------------------------------------------------------------------------------- /tools/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/tools/__init__.pyc -------------------------------------------------------------------------------- /tools/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/tools/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /tools/__pycache__/generate_detections.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/tools/__pycache__/generate_detections.cpython-36.pyc -------------------------------------------------------------------------------- /tools/freeze_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/tools/freeze_model.py -------------------------------------------------------------------------------- /tools/generate_detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/tools/generate_detections.py -------------------------------------------------------------------------------- /tools/generate_detections.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/tools/generate_detections.pyc -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/train.py -------------------------------------------------------------------------------- /train_bottleneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/train_bottleneck.py -------------------------------------------------------------------------------- /voc_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/voc_annotation.py -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/yolo.py -------------------------------------------------------------------------------- /yolo3/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/yolo3/__init__.pyc -------------------------------------------------------------------------------- /yolo3/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/yolo3/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /yolo3/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/yolo3/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /yolo3/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/yolo3/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /yolo3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/yolo3/model.py -------------------------------------------------------------------------------- /yolo3/model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/yolo3/model.pyc -------------------------------------------------------------------------------- /yolo3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/yolo3/utils.py -------------------------------------------------------------------------------- /yolo3/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/yolo3/utils.pyc -------------------------------------------------------------------------------- /yolo_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhtar303/Vehicle-Detection-and-Tracking-Usig-YOLO-and-Deep-Sort-with-Keras-and-Tensorflow/HEAD/yolo_video.py --------------------------------------------------------------------------------