├── demo.gif ├── face_detector ├── deploy.prototxt └── res10_300x300_ssd_iter_140000.caffemodel ├── le.pickle ├── readme.md ├── requirements.txt ├── smoking.model └── smoking_demo.py /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitfarhan/smoking_detector_demo/HEAD/demo.gif -------------------------------------------------------------------------------- /face_detector/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitfarhan/smoking_detector_demo/HEAD/face_detector/deploy.prototxt -------------------------------------------------------------------------------- /face_detector/res10_300x300_ssd_iter_140000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitfarhan/smoking_detector_demo/HEAD/face_detector/res10_300x300_ssd_iter_140000.caffemodel -------------------------------------------------------------------------------- /le.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitfarhan/smoking_detector_demo/HEAD/le.pickle -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitfarhan/smoking_detector_demo/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow 2 | opencv-python 3 | imutils 4 | numpy -------------------------------------------------------------------------------- /smoking.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitfarhan/smoking_detector_demo/HEAD/smoking.model -------------------------------------------------------------------------------- /smoking_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitfarhan/smoking_detector_demo/HEAD/smoking_demo.py --------------------------------------------------------------------------------