├── Contributions ├── C3 Framework Repo Link ├── CSRNet @ Sreekanth Zipsy │ ├── .gitignore │ ├── Inference.ipynb │ ├── Read Me.md │ ├── data_prep.ipynb │ ├── dataset.py │ ├── image.py │ ├── model.py │ ├── train.py │ └── utils.py ├── Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy │ ├── .gitignore │ ├── LICENSE │ ├── Read Me.md │ ├── 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 │ ├── detection.txt │ ├── example.mp4 │ ├── model_data │ │ ├── coco_classes.txt │ │ ├── mars-small128.pb │ │ ├── voc_classes.txt │ │ └── yolo_anchors.txt │ ├── tools │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── generate_detections.cpython-36.pyc │ │ ├── freeze_model.py │ │ ├── generate_detections.py │ │ └── generate_detections.pyc │ ├── yolo.py │ ├── yolo.pyc │ └── yolo3 │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── model.cpython-36.pyc │ │ └── utils.cpython-36.pyc │ │ ├── model.py │ │ ├── model.pyc │ │ ├── utils.py │ │ └── utils.pyc └── msg ├── README.md ├── mobilenet_ssd ├── MobileNetSSD_deploy.caffemodel └── MobileNetSSD_deploy.prototxt ├── people_counter.py ├── pyimagesearch ├── __init__.cpython-36.pyc ├── __init__.cpython-37.pyc ├── centroidtracker.cpython-36.pyc ├── centroidtracker.cpython-37.pyc ├── centroidtracker.py ├── trackableobject.cpython-36.pyc ├── trackableobject.cpython-37.pyc └── trackableobject.py └── videos └── example_01.mp4 /Contributions/C3 Framework Repo Link: -------------------------------------------------------------------------------- 1 | Please visit the repo at :https://github.com/poojavinod100/C-3-Framework 2 | -------------------------------------------------------------------------------- /Contributions/CSRNet @ Sreekanth Zipsy/.gitignore: -------------------------------------------------------------------------------- 1 | 0model_best.pth.tar 2 | __pycache__/ 3 | .ipynb_checkpoints/ -------------------------------------------------------------------------------- /Contributions/CSRNet @ Sreekanth Zipsy/Inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/CSRNet @ Sreekanth Zipsy/Inference.ipynb -------------------------------------------------------------------------------- /Contributions/CSRNet @ Sreekanth Zipsy/Read Me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/CSRNet @ Sreekanth Zipsy/Read Me.md -------------------------------------------------------------------------------- /Contributions/CSRNet @ Sreekanth Zipsy/data_prep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/CSRNet @ Sreekanth Zipsy/data_prep.ipynb -------------------------------------------------------------------------------- /Contributions/CSRNet @ Sreekanth Zipsy/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/CSRNet @ Sreekanth Zipsy/dataset.py -------------------------------------------------------------------------------- /Contributions/CSRNet @ Sreekanth Zipsy/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/CSRNet @ Sreekanth Zipsy/image.py -------------------------------------------------------------------------------- /Contributions/CSRNet @ Sreekanth Zipsy/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/CSRNet @ Sreekanth Zipsy/model.py -------------------------------------------------------------------------------- /Contributions/CSRNet @ Sreekanth Zipsy/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/CSRNet @ Sreekanth Zipsy/train.py -------------------------------------------------------------------------------- /Contributions/CSRNet @ Sreekanth Zipsy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/CSRNet @ Sreekanth Zipsy/utils.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/.gitignore: -------------------------------------------------------------------------------- 1 | output.avi -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/LICENSE -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/Read Me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/Read Me.md -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/convert.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__init__.py: -------------------------------------------------------------------------------- 1 | # vim: expandtab:ts=4:sw=4 2 | -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__init__.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/detection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/detection.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/iou_matching.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/iou_matching.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/kalman_filter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/kalman_filter.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/linear_assignment.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/linear_assignment.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/nn_matching.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/nn_matching.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/preprocessing.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/preprocessing.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/track.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/track.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/tracker.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/__pycache__/tracker.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/detection.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/detection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/detection.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/iou_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/iou_matching.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/iou_matching.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/iou_matching.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/kalman_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/kalman_filter.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/kalman_filter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/kalman_filter.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/linear_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/linear_assignment.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/linear_assignment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/linear_assignment.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/nn_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/nn_matching.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/nn_matching.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/nn_matching.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/preprocessing.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/preprocessing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/preprocessing.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/track.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/track.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/track.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/tracker.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/tracker.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/deep_sort/tracker.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/demo.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/detection.txt -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/example.mp4 -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/model_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/model_data/coco_classes.txt -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/model_data/mars-small128.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/model_data/mars-small128.pb -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/model_data/voc_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/model_data/voc_classes.txt -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/model_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/model_data/yolo_anchors.txt -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/__init__.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/__pycache__/generate_detections.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/__pycache__/generate_detections.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/freeze_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/freeze_model.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/generate_detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/generate_detections.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/generate_detections.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/tools/generate_detections.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/__init__.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/model.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/model.pyc -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/utils.py -------------------------------------------------------------------------------- /Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/Contributions/Crowd Counting & Tracking with Deep Sort & Yolo @ Sreekanth Zipsy/yolo3/utils.pyc -------------------------------------------------------------------------------- /Contributions/msg: -------------------------------------------------------------------------------- 1 | Please add your contributions here 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/README.md -------------------------------------------------------------------------------- /mobilenet_ssd/MobileNetSSD_deploy.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/mobilenet_ssd/MobileNetSSD_deploy.caffemodel -------------------------------------------------------------------------------- /mobilenet_ssd/MobileNetSSD_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/mobilenet_ssd/MobileNetSSD_deploy.prototxt -------------------------------------------------------------------------------- /people_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/people_counter.py -------------------------------------------------------------------------------- /pyimagesearch/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/pyimagesearch/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pyimagesearch/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/pyimagesearch/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /pyimagesearch/centroidtracker.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/pyimagesearch/centroidtracker.cpython-36.pyc -------------------------------------------------------------------------------- /pyimagesearch/centroidtracker.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/pyimagesearch/centroidtracker.cpython-37.pyc -------------------------------------------------------------------------------- /pyimagesearch/centroidtracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/pyimagesearch/centroidtracker.py -------------------------------------------------------------------------------- /pyimagesearch/trackableobject.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/pyimagesearch/trackableobject.cpython-36.pyc -------------------------------------------------------------------------------- /pyimagesearch/trackableobject.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/pyimagesearch/trackableobject.cpython-37.pyc -------------------------------------------------------------------------------- /pyimagesearch/trackableobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/pyimagesearch/trackableobject.py -------------------------------------------------------------------------------- /videos/example_01.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poojavinod100/People-Counting-Crowd-Density-Detection/HEAD/videos/example_01.mp4 --------------------------------------------------------------------------------