├── .gitignore ├── LICENSE ├── _init_paths.py ├── _init_paths.pyc ├── demo.py ├── imglist.txt ├── model ├── det1.caffemodel ├── det1.png ├── det1.prototxt ├── det2.caffemodel ├── det2.png ├── det2.prototxt ├── det3.caffemodel ├── det3.png └── det3.prototxt ├── python_wrapper.py ├── python_wrapper.pyc ├── readme.md ├── run ├── script.m ├── test1.jpg └── test2.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | positive 2 | mtcnn 3 | MTCNN_face_detection_alignment_master 4 | *.swp 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/LICENSE -------------------------------------------------------------------------------- /_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/_init_paths.py -------------------------------------------------------------------------------- /_init_paths.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/_init_paths.pyc -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/demo.py -------------------------------------------------------------------------------- /imglist.txt: -------------------------------------------------------------------------------- 1 | test2.jpg 2 | -------------------------------------------------------------------------------- /model/det1.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/model/det1.caffemodel -------------------------------------------------------------------------------- /model/det1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/model/det1.png -------------------------------------------------------------------------------- /model/det1.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/model/det1.prototxt -------------------------------------------------------------------------------- /model/det2.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/model/det2.caffemodel -------------------------------------------------------------------------------- /model/det2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/model/det2.png -------------------------------------------------------------------------------- /model/det2.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/model/det2.prototxt -------------------------------------------------------------------------------- /model/det3.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/model/det3.caffemodel -------------------------------------------------------------------------------- /model/det3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/model/det3.png -------------------------------------------------------------------------------- /model/det3.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/model/det3.prototxt -------------------------------------------------------------------------------- /python_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/python_wrapper.py -------------------------------------------------------------------------------- /python_wrapper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/python_wrapper.pyc -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/readme.md -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- 1 | GLOG_minloglevel=1 ./demo.py 2 | -------------------------------------------------------------------------------- /script.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/script.m -------------------------------------------------------------------------------- /test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/test1.jpg -------------------------------------------------------------------------------- /test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuinoDu/mtcnn/HEAD/test2.jpg --------------------------------------------------------------------------------