├── .gitignore ├── LICENSE ├── README.md ├── cctv_output.avi ├── head_detection_main.py ├── head_detection_main_v2.py ├── models └── HEAD_DETECTION_300x300_ssd_mobilenetv2.pb ├── myFROZEN_GRAPH_HEAD.py └── outputs ├── Test Video 1.gif └── Test Video 2.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varat7v2/Human-Head-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varat7v2/Human-Head-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varat7v2/Human-Head-Detection/HEAD/README.md -------------------------------------------------------------------------------- /cctv_output.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varat7v2/Human-Head-Detection/HEAD/cctv_output.avi -------------------------------------------------------------------------------- /head_detection_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varat7v2/Human-Head-Detection/HEAD/head_detection_main.py -------------------------------------------------------------------------------- /head_detection_main_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varat7v2/Human-Head-Detection/HEAD/head_detection_main_v2.py -------------------------------------------------------------------------------- /models/HEAD_DETECTION_300x300_ssd_mobilenetv2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varat7v2/Human-Head-Detection/HEAD/models/HEAD_DETECTION_300x300_ssd_mobilenetv2.pb -------------------------------------------------------------------------------- /myFROZEN_GRAPH_HEAD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varat7v2/Human-Head-Detection/HEAD/myFROZEN_GRAPH_HEAD.py -------------------------------------------------------------------------------- /outputs/Test Video 1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varat7v2/Human-Head-Detection/HEAD/outputs/Test Video 1.gif -------------------------------------------------------------------------------- /outputs/Test Video 2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varat7v2/Human-Head-Detection/HEAD/outputs/Test Video 2.gif --------------------------------------------------------------------------------