├── README.md ├── conf ├── config.yml └── config_birdview.yml ├── img ├── chemin_1.png ├── result.gif └── static_frame_from_video.jpg ├── models └── .gitkeep ├── output └── .gitkeep ├── requirements.txt ├── src ├── bird_view_transfo_functions.py ├── calibrate_with_mouse.py ├── colors.py ├── create_video.py ├── social_distanciation_video_detection.py └── tf_model_object_detection.py └── video └── PETS2009.avi /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/README.md -------------------------------------------------------------------------------- /conf/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/conf/config.yml -------------------------------------------------------------------------------- /conf/config_birdview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/conf/config_birdview.yml -------------------------------------------------------------------------------- /img/chemin_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/img/chemin_1.png -------------------------------------------------------------------------------- /img/result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/img/result.gif -------------------------------------------------------------------------------- /img/static_frame_from_video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/img/static_frame_from_video.jpg -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow==2.1.0 2 | numpy==1.18.3 3 | imutils==0.5.3 4 | -------------------------------------------------------------------------------- /src/bird_view_transfo_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/src/bird_view_transfo_functions.py -------------------------------------------------------------------------------- /src/calibrate_with_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/src/calibrate_with_mouse.py -------------------------------------------------------------------------------- /src/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/src/colors.py -------------------------------------------------------------------------------- /src/create_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/src/create_video.py -------------------------------------------------------------------------------- /src/social_distanciation_video_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/src/social_distanciation_video_detection.py -------------------------------------------------------------------------------- /src/tf_model_object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/src/tf_model_object_detection.py -------------------------------------------------------------------------------- /video/PETS2009.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basileroth75/covid-social-distancing-detection/HEAD/video/PETS2009.avi --------------------------------------------------------------------------------