├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── vehicle_project.iml ├── Procfile ├── README.md ├── app.py ├── deep_sort_pytorch ├── .gitignore ├── LICENSE ├── README.md ├── configs │ └── deep_sort.yaml ├── deep_sort │ ├── README.md │ ├── __init__.py │ ├── deep │ │ ├── __init__.py │ │ ├── checkpoint │ │ │ └── .gitkeep │ │ ├── evaluate.py │ │ ├── feature_extractor.py │ │ ├── model.py │ │ ├── original_model.py │ │ ├── test.py │ │ ├── train.jpg │ │ └── train.py │ ├── deep_sort.py │ └── sort │ │ ├── __init__.py │ │ ├── detection.py │ │ ├── iou_matching.py │ │ ├── kalman_filter.py │ │ ├── linear_assignment.py │ │ ├── nn_matching.py │ │ ├── preprocessing.py │ │ ├── track.py │ │ └── tracker.py └── utils │ ├── __init__.py │ ├── asserts.py │ ├── draw.py │ ├── evaluation.py │ ├── io.py │ ├── json_logger.py │ ├── log.py │ ├── parser.py │ └── tools.py ├── my_video.mp4 ├── requirements.txt ├── templates └── index.html └── vehicle_monitoring.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/vehicle_project.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/.idea/vehicle_project.iml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn application:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/app.py -------------------------------------------------------------------------------- /deep_sort_pytorch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/.gitignore -------------------------------------------------------------------------------- /deep_sort_pytorch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/LICENSE -------------------------------------------------------------------------------- /deep_sort_pytorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/README.md -------------------------------------------------------------------------------- /deep_sort_pytorch/configs/deep_sort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/configs/deep_sort.yaml -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/README.md -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/__init__.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/deep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/deep/checkpoint/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/deep/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/deep/evaluate.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/deep/feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/deep/feature_extractor.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/deep/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/deep/model.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/deep/original_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/deep/original_model.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/deep/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/deep/test.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/deep/train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/deep/train.jpg -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/deep/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/deep/train.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/deep_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/deep_sort.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/sort/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/sort/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/sort/detection.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/sort/iou_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/sort/iou_matching.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/sort/kalman_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/sort/kalman_filter.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/sort/linear_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/sort/linear_assignment.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/sort/nn_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/sort/nn_matching.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/sort/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/sort/preprocessing.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/sort/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/sort/track.py -------------------------------------------------------------------------------- /deep_sort_pytorch/deep_sort/sort/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/deep_sort/sort/tracker.py -------------------------------------------------------------------------------- /deep_sort_pytorch/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deep_sort_pytorch/utils/asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/utils/asserts.py -------------------------------------------------------------------------------- /deep_sort_pytorch/utils/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/utils/draw.py -------------------------------------------------------------------------------- /deep_sort_pytorch/utils/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/utils/evaluation.py -------------------------------------------------------------------------------- /deep_sort_pytorch/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/utils/io.py -------------------------------------------------------------------------------- /deep_sort_pytorch/utils/json_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/utils/json_logger.py -------------------------------------------------------------------------------- /deep_sort_pytorch/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/utils/log.py -------------------------------------------------------------------------------- /deep_sort_pytorch/utils/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/utils/parser.py -------------------------------------------------------------------------------- /deep_sort_pytorch/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/deep_sort_pytorch/utils/tools.py -------------------------------------------------------------------------------- /my_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/my_video.mp4 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/templates/index.html -------------------------------------------------------------------------------- /vehicle_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimarta-tejwani/TrafficInsight/HEAD/vehicle_monitoring.py --------------------------------------------------------------------------------