├── LICENSE ├── README.md ├── SENIOR_README.md ├── constant.py ├── convert.py ├── deep_sort ├── __init__.py ├── __init__.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 ├── get_background.py ├── get_new_index.py ├── get_video.py ├── location.py ├── model_data ├── DeepSORT.pdf ├── DeepSORT.png ├── coco_classes.txt ├── mars-small128.pb ├── voc_classes.txt └── yolo_anchors.txt ├── read_frame.py ├── some_message.txt ├── target.py ├── temp_file ├── background.jpg ├── detection.txt ├── output.avi └── tracking.txt ├── test.py ├── tools ├── __init__.py ├── __init__.pyc ├── freeze_model.py ├── generate_detections.py └── generate_detections.pyc ├── yolo.py ├── yolo.pyc ├── yolo3 ├── __init__.py ├── __init__.pyc ├── model.py ├── model.pyc ├── utils.py └── utils.pyc └── yolov3.cfg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/README.md -------------------------------------------------------------------------------- /SENIOR_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/SENIOR_README.md -------------------------------------------------------------------------------- /constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/constant.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/convert.py -------------------------------------------------------------------------------- /deep_sort/__init__.py: -------------------------------------------------------------------------------- 1 | # vim: expandtab:ts=4:sw=4 2 | -------------------------------------------------------------------------------- /deep_sort/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/__init__.pyc -------------------------------------------------------------------------------- /deep_sort/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/detection.py -------------------------------------------------------------------------------- /deep_sort/detection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/detection.pyc -------------------------------------------------------------------------------- /deep_sort/iou_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/iou_matching.py -------------------------------------------------------------------------------- /deep_sort/iou_matching.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/iou_matching.pyc -------------------------------------------------------------------------------- /deep_sort/kalman_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/kalman_filter.py -------------------------------------------------------------------------------- /deep_sort/kalman_filter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/kalman_filter.pyc -------------------------------------------------------------------------------- /deep_sort/linear_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/linear_assignment.py -------------------------------------------------------------------------------- /deep_sort/linear_assignment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/linear_assignment.pyc -------------------------------------------------------------------------------- /deep_sort/nn_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/nn_matching.py -------------------------------------------------------------------------------- /deep_sort/nn_matching.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/nn_matching.pyc -------------------------------------------------------------------------------- /deep_sort/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/preprocessing.py -------------------------------------------------------------------------------- /deep_sort/preprocessing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/preprocessing.pyc -------------------------------------------------------------------------------- /deep_sort/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/track.py -------------------------------------------------------------------------------- /deep_sort/track.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/track.pyc -------------------------------------------------------------------------------- /deep_sort/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/tracker.py -------------------------------------------------------------------------------- /deep_sort/tracker.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/deep_sort/tracker.pyc -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/demo.py -------------------------------------------------------------------------------- /get_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/get_background.py -------------------------------------------------------------------------------- /get_new_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/get_new_index.py -------------------------------------------------------------------------------- /get_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/get_video.py -------------------------------------------------------------------------------- /location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/location.py -------------------------------------------------------------------------------- /model_data/DeepSORT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/model_data/DeepSORT.pdf -------------------------------------------------------------------------------- /model_data/DeepSORT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/model_data/DeepSORT.png -------------------------------------------------------------------------------- /model_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/model_data/coco_classes.txt -------------------------------------------------------------------------------- /model_data/mars-small128.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/model_data/mars-small128.pb -------------------------------------------------------------------------------- /model_data/voc_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/model_data/voc_classes.txt -------------------------------------------------------------------------------- /model_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/model_data/yolo_anchors.txt -------------------------------------------------------------------------------- /read_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/read_frame.py -------------------------------------------------------------------------------- /some_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/some_message.txt -------------------------------------------------------------------------------- /target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/target.py -------------------------------------------------------------------------------- /temp_file/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/temp_file/background.jpg -------------------------------------------------------------------------------- /temp_file/detection.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /temp_file/output.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/temp_file/output.avi -------------------------------------------------------------------------------- /temp_file/tracking.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/test.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/tools/__init__.pyc -------------------------------------------------------------------------------- /tools/freeze_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/tools/freeze_model.py -------------------------------------------------------------------------------- /tools/generate_detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/tools/generate_detections.py -------------------------------------------------------------------------------- /tools/generate_detections.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/tools/generate_detections.pyc -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/yolo.py -------------------------------------------------------------------------------- /yolo.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/yolo.pyc -------------------------------------------------------------------------------- /yolo3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo3/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/yolo3/__init__.pyc -------------------------------------------------------------------------------- /yolo3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/yolo3/model.py -------------------------------------------------------------------------------- /yolo3/model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/yolo3/model.pyc -------------------------------------------------------------------------------- /yolo3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/yolo3/utils.py -------------------------------------------------------------------------------- /yolo3/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/yolo3/utils.pyc -------------------------------------------------------------------------------- /yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraser-in-school/video_synopsis-/HEAD/yolov3.cfg --------------------------------------------------------------------------------