├── README.md ├── __init__.py ├── config.py ├── driver ├── __init__.py ├── __init__.pyc ├── cam.py ├── cam.pyc ├── face_search.py ├── face_search.pyc └── haarcascade_frontalface_alt.xml ├── font └── fzyy.TTF ├── images ├── black.jpg ├── mark.jpg ├── mask.jpg └── yellow.png ├── models ├── cnn_deploy.prototxt └── cnn_iter_3560000.caffemodel ├── tmp └── buffer └── ui ├── __init__.py ├── frame.py ├── frame.pyc ├── frame.ui ├── launcher.py ├── launcher_sing_face.py ├── save_face.py ├── save_face.pyc ├── save_face.ui ├── sign_face.py ├── sign_face.pyc └── sign_face.ui /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/config.py -------------------------------------------------------------------------------- /driver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /driver/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/driver/__init__.pyc -------------------------------------------------------------------------------- /driver/cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/driver/cam.py -------------------------------------------------------------------------------- /driver/cam.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/driver/cam.pyc -------------------------------------------------------------------------------- /driver/face_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/driver/face_search.py -------------------------------------------------------------------------------- /driver/face_search.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/driver/face_search.pyc -------------------------------------------------------------------------------- /driver/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/driver/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /font/fzyy.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/font/fzyy.TTF -------------------------------------------------------------------------------- /images/black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/images/black.jpg -------------------------------------------------------------------------------- /images/mark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/images/mark.jpg -------------------------------------------------------------------------------- /images/mask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/images/mask.jpg -------------------------------------------------------------------------------- /images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/images/yellow.png -------------------------------------------------------------------------------- /models/cnn_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/models/cnn_deploy.prototxt -------------------------------------------------------------------------------- /models/cnn_iter_3560000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/models/cnn_iter_3560000.caffemodel -------------------------------------------------------------------------------- /tmp/buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/tmp/buffer -------------------------------------------------------------------------------- /ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/frame.py -------------------------------------------------------------------------------- /ui/frame.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/frame.pyc -------------------------------------------------------------------------------- /ui/frame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/frame.ui -------------------------------------------------------------------------------- /ui/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/launcher.py -------------------------------------------------------------------------------- /ui/launcher_sing_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/launcher_sing_face.py -------------------------------------------------------------------------------- /ui/save_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/save_face.py -------------------------------------------------------------------------------- /ui/save_face.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/save_face.pyc -------------------------------------------------------------------------------- /ui/save_face.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/save_face.ui -------------------------------------------------------------------------------- /ui/sign_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/sign_face.py -------------------------------------------------------------------------------- /ui/sign_face.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/sign_face.pyc -------------------------------------------------------------------------------- /ui/sign_face.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reece15/cnn_face_detection/HEAD/ui/sign_face.ui --------------------------------------------------------------------------------