├── .gitignore ├── README.md ├── helper.py ├── main.py ├── model ├── det1-0001.params ├── det1-symbol.json ├── det1.caffemodel ├── det1.prototxt ├── det2-0001.params ├── det2-symbol.json ├── det2.caffemodel ├── det2.prototxt ├── det3-0001.params ├── det3-symbol.json ├── det3.caffemodel ├── det3.prototxt ├── det4-0001.params ├── det4-symbol.json ├── det4.caffemodel └── det4.prototxt ├── mtcnn_detector.py ├── oscar1.jpg ├── test.jpg └── test2.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | caffe_converter 3 | .idea 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/README.md -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/helper.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/main.py -------------------------------------------------------------------------------- /model/det1-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det1-0001.params -------------------------------------------------------------------------------- /model/det1-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det1-symbol.json -------------------------------------------------------------------------------- /model/det1.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det1.caffemodel -------------------------------------------------------------------------------- /model/det1.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det1.prototxt -------------------------------------------------------------------------------- /model/det2-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det2-0001.params -------------------------------------------------------------------------------- /model/det2-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det2-symbol.json -------------------------------------------------------------------------------- /model/det2.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det2.caffemodel -------------------------------------------------------------------------------- /model/det2.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det2.prototxt -------------------------------------------------------------------------------- /model/det3-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det3-0001.params -------------------------------------------------------------------------------- /model/det3-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det3-symbol.json -------------------------------------------------------------------------------- /model/det3.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det3.caffemodel -------------------------------------------------------------------------------- /model/det3.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det3.prototxt -------------------------------------------------------------------------------- /model/det4-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det4-0001.params -------------------------------------------------------------------------------- /model/det4-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det4-symbol.json -------------------------------------------------------------------------------- /model/det4.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det4.caffemodel -------------------------------------------------------------------------------- /model/det4.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/model/det4.prototxt -------------------------------------------------------------------------------- /mtcnn_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/mtcnn_detector.py -------------------------------------------------------------------------------- /oscar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/oscar1.jpg -------------------------------------------------------------------------------- /test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/test.jpg -------------------------------------------------------------------------------- /test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYuanAnyVision/mxnet_mtcnn_face_detection/HEAD/test2.jpg --------------------------------------------------------------------------------