├── CMakeLists.txt ├── MTCNN.cpp ├── MTCNN.h ├── README.md ├── models ├── det1.bin ├── det1.param ├── det2.bin ├── det2.param ├── det3.bin └── det3.param ├── result.jpg └── sample.jpg /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /MTCNN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/MTCNN.cpp -------------------------------------------------------------------------------- /MTCNN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/MTCNN.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/README.md -------------------------------------------------------------------------------- /models/det1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/models/det1.bin -------------------------------------------------------------------------------- /models/det1.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/models/det1.param -------------------------------------------------------------------------------- /models/det2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/models/det2.bin -------------------------------------------------------------------------------- /models/det2.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/models/det2.param -------------------------------------------------------------------------------- /models/det3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/models/det3.bin -------------------------------------------------------------------------------- /models/det3.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/models/det3.param -------------------------------------------------------------------------------- /result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/result.jpg -------------------------------------------------------------------------------- /sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longqi-S/ncnn-mtcnn/HEAD/sample.jpg --------------------------------------------------------------------------------