MTCNN实现流程
文章:https://arxiv.org/pdf/1604.02878.pdf
code:
1、mxnet上的实现:https://github.com/Seanlinx/mtcnn
2、tensorflow上的实现:https://github.com/AITTSMD/MTCNN-Tensorflow
3、pytorch上的实现: https://github.com/TropComplique/mtcnn-pytorch
4、caffe上的实现: https://github.com/CongWeilin/mtcnn-caffe
Tips: 个人建议在看这篇文章的时候,对照着pytorch的实现代码理解,尤其是里面的 try_mtcnn_step_by_step.ipynb
非常有助于理解整个文章的流程。