├── README.md ├── config ├── config └── config_reader.py ├── deepsort ├── detection.py ├── iou_matching.py ├── kalman_filter.py ├── linear_assignment.py ├── nn_matching.py ├── track.py └── tracker.py ├── docs ├── Report.docx ├── Report.pdf └── Violence Detection Summarised.pdf ├── main.py ├── models ├── Time Series.h5 ├── mars-small128.pb └── openpose_model.py ├── requirements.txt ├── tools ├── coord_in_box.py ├── generate_detections.py ├── processing.py ├── utils.py └── visualize.py ├── training ├── data_preprocessing.py └── train.py └── yolo3 ├── model.py └── yolo.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/README.md -------------------------------------------------------------------------------- /config/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/config/config -------------------------------------------------------------------------------- /config/config_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/config/config_reader.py -------------------------------------------------------------------------------- /deepsort/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/deepsort/detection.py -------------------------------------------------------------------------------- /deepsort/iou_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/deepsort/iou_matching.py -------------------------------------------------------------------------------- /deepsort/kalman_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/deepsort/kalman_filter.py -------------------------------------------------------------------------------- /deepsort/linear_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/deepsort/linear_assignment.py -------------------------------------------------------------------------------- /deepsort/nn_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/deepsort/nn_matching.py -------------------------------------------------------------------------------- /deepsort/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/deepsort/track.py -------------------------------------------------------------------------------- /deepsort/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/deepsort/tracker.py -------------------------------------------------------------------------------- /docs/Report.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/docs/Report.docx -------------------------------------------------------------------------------- /docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/docs/Report.pdf -------------------------------------------------------------------------------- /docs/Violence Detection Summarised.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/docs/Violence Detection Summarised.pdf -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/main.py -------------------------------------------------------------------------------- /models/Time Series.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/models/Time Series.h5 -------------------------------------------------------------------------------- /models/mars-small128.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/models/mars-small128.pb -------------------------------------------------------------------------------- /models/openpose_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/models/openpose_model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/coord_in_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/tools/coord_in_box.py -------------------------------------------------------------------------------- /tools/generate_detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/tools/generate_detections.py -------------------------------------------------------------------------------- /tools/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/tools/processing.py -------------------------------------------------------------------------------- /tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/tools/utils.py -------------------------------------------------------------------------------- /tools/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/tools/visualize.py -------------------------------------------------------------------------------- /training/data_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/training/data_preprocessing.py -------------------------------------------------------------------------------- /training/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/training/train.py -------------------------------------------------------------------------------- /yolo3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/yolo3/model.py -------------------------------------------------------------------------------- /yolo3/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAnkurGoswami/Human-Violence-Detection/HEAD/yolo3/yolo.py --------------------------------------------------------------------------------