├── .gitignore ├── LICENSE ├── README.md ├── __pycache__ └── tiny_face_model.cpython-36.pyc ├── data └── videos │ └── Smoking & Driving.mp4 ├── doc ├── vlcsnap-2018-08-28-11h28m41s402.png └── vlcsnap-2018-08-28-11h29m33s930.png ├── requirements.txt ├── smokingdetection.py └── tiny_face_model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chok68/smoking-faces/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chok68/smoking-faces/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chok68/smoking-faces/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/tiny_face_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chok68/smoking-faces/HEAD/__pycache__/tiny_face_model.cpython-36.pyc -------------------------------------------------------------------------------- /data/videos/Smoking & Driving.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chok68/smoking-faces/HEAD/data/videos/Smoking & Driving.mp4 -------------------------------------------------------------------------------- /doc/vlcsnap-2018-08-28-11h28m41s402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chok68/smoking-faces/HEAD/doc/vlcsnap-2018-08-28-11h28m41s402.png -------------------------------------------------------------------------------- /doc/vlcsnap-2018-08-28-11h29m33s930.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chok68/smoking-faces/HEAD/doc/vlcsnap-2018-08-28-11h29m33s930.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | tensorflow 3 | numpy==1.14.5 4 | scipy 5 | matplotlib 6 | -------------------------------------------------------------------------------- /smokingdetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chok68/smoking-faces/HEAD/smokingdetection.py -------------------------------------------------------------------------------- /tiny_face_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chok68/smoking-faces/HEAD/tiny_face_model.py --------------------------------------------------------------------------------