├── .DS_Store ├── README.md ├── detection ├── .DS_Store ├── CMakeLists.txt ├── MTCNN.cpp ├── MTCNN.h ├── main.cpp └── main.cpp.new ├── model ├── det1.caffemodel ├── det1.prototxt ├── det2.caffemodel ├── det2.prototxt ├── det3.caffemodel ├── det3.prototxt ├── det4.caffemodel └── det4.prototxt ├── result ├── .DS_Store ├── FDDB_evaluation │ ├── .DS_Store │ ├── CMakeLists.txt │ ├── FDDB-folds │ │ ├── .DS_Store │ │ ├── CascadeCNN.txt │ │ ├── CascadeCNN │ │ │ ├── FDDB-fold-01-CascadeCNN.txt │ │ │ ├── FDDB-fold-02-CascadeCNN.txt │ │ │ ├── FDDB-fold-03-CascadeCNN.txt │ │ │ ├── FDDB-fold-04-CascadeCNN.txt │ │ │ ├── FDDB-fold-05-CascadeCNN.txt │ │ │ ├── FDDB-fold-06-CascadeCNN.txt │ │ │ ├── FDDB-fold-07-CascadeCNN.txt │ │ │ ├── FDDB-fold-08-CascadeCNN.txt │ │ │ ├── FDDB-fold-09-CascadeCNN.txt │ │ │ └── FDDB-fold-10-CascadeCNN.txt │ │ ├── ContROC.txt │ │ ├── ContROC_MTCNN.txt │ │ ├── ContROC_MTCNN_20.txt │ │ ├── DiscROC.txt │ │ ├── DiscROC_MTCNN.txt │ │ ├── DiscROC_MTCNN_20.txt │ │ ├── MTCNN.txt │ │ ├── MTCNN │ │ │ ├── FDDB-fold-01-MTCNN.txt │ │ │ ├── FDDB-fold-02-MTCNN.txt │ │ │ ├── FDDB-fold-03-MTCNN.txt │ │ │ ├── FDDB-fold-04-MTCNN.txt │ │ │ ├── FDDB-fold-05-MTCNN.txt │ │ │ ├── FDDB-fold-06-MTCNN.txt │ │ │ ├── FDDB-fold-07-MTCNN.txt │ │ │ ├── FDDB-fold-08-MTCNN.txt │ │ │ ├── FDDB-fold-09-MTCNN.txt │ │ │ └── FDDB-fold-10-MTCNN.txt │ │ ├── MTCNN_20.txt │ │ ├── MTCNN_20 │ │ │ ├── FDDB-fold-01-MTCNN.txt │ │ │ ├── FDDB-fold-02-MTCNN.txt │ │ │ ├── FDDB-fold-03-MTCNN.txt │ │ │ ├── FDDB-fold-04-MTCNN.txt │ │ │ ├── FDDB-fold-05-MTCNN.txt │ │ │ ├── FDDB-fold-06-MTCNN.txt │ │ │ ├── FDDB-fold-07-MTCNN.txt │ │ │ ├── FDDB-fold-08-MTCNN.txt │ │ │ ├── FDDB-fold-09-MTCNN.txt │ │ │ └── FDDB-fold-10-MTCNN.txt │ │ ├── ellipseList.txt │ │ ├── ellipseList │ │ │ ├── FDDB-fold-01-ellipseList.txt │ │ │ ├── FDDB-fold-02-ellipseList.txt │ │ │ ├── FDDB-fold-03-ellipseList.txt │ │ │ ├── FDDB-fold-04-ellipseList.txt │ │ │ ├── FDDB-fold-05-ellipseList.txt │ │ │ ├── FDDB-fold-06-ellipseList.txt │ │ │ ├── FDDB-fold-07-ellipseList.txt │ │ │ ├── FDDB-fold-08-ellipseList.txt │ │ │ ├── FDDB-fold-09-ellipseList.txt │ │ │ └── FDDB-fold-10-ellipseList.txt │ │ ├── fileList.txt │ │ ├── fileList │ │ │ ├── FDDB-fold-01.txt │ │ │ ├── FDDB-fold-02.txt │ │ │ ├── FDDB-fold-03.txt │ │ │ ├── FDDB-fold-04.txt │ │ │ ├── FDDB-fold-05.txt │ │ │ ├── FDDB-fold-06.txt │ │ │ ├── FDDB-fold-07.txt │ │ │ ├── FDDB-fold-08.txt │ │ │ ├── FDDB-fold-09.txt │ │ │ └── FDDB-fold-10.txt │ │ └── merge_txt.sh │ ├── compare │ │ ├── .DS_Store │ │ ├── CMakeLists.txt │ │ ├── compare.cpp │ │ ├── compare.h │ │ └── main.cpp │ ├── controc_Cascade.png │ ├── controc_MTCNN.png │ ├── controc_MTCNN_20.png │ ├── controc_MTCNN_num.png │ ├── discroc_Cascade.png │ ├── discroc_MTCNN.png │ ├── discroc_MTCNN_20.png │ ├── discroc_MTCNN_num.png │ ├── evaluation │ │ ├── CascadeCNN.txt │ │ ├── EllipseR.cpp │ │ ├── EllipseR.hpp │ │ ├── EllipsesSingleImage.cpp │ │ ├── EllipsesSingleImage.hpp │ │ ├── Hungarian.cpp │ │ ├── Hungarian.hpp │ │ ├── Makefile │ │ ├── MatchPair.cpp │ │ ├── MatchPair.hpp │ │ ├── Matching.cpp │ │ ├── Matching.hpp │ │ ├── OpenCVUtils.cpp │ │ ├── OpenCVUtils.hpp │ │ ├── README.txt │ │ ├── RectangleR.cpp │ │ ├── RectangleR.hpp │ │ ├── RectanglesSingleImage.cpp │ │ ├── RectanglesSingleImage.hpp │ │ ├── Region.cpp │ │ ├── Region.hpp │ │ ├── RegionsSingleImage.cpp │ │ ├── RegionsSingleImage.hpp │ │ ├── Results.cpp │ │ ├── Results.hpp │ │ ├── common.hpp │ │ ├── ellipseList.txt │ │ ├── evaluate.cpp │ │ ├── fileList.txt │ │ └── runEvaluate.pl │ └── face_detection │ │ ├── .DS_Store │ │ ├── CMakeLists.txt │ │ ├── GenSample.cpp │ │ ├── GenSample.h │ │ ├── ellipse_transform.cpp │ │ ├── ellipse_transform.h │ │ ├── fddb_detection.cpp │ │ ├── fddb_detection.h │ │ └── main.cpp ├── img_838-compare.jpg ├── img_906-compare.jpg ├── normal.bmp ├── record_gpu_1.txt ├── record_gpu_2.txt ├── result_gpu_1.png ├── result_gpu_2.png └── trump.jpg └── script ├── .DS_Store ├── PRCurve.py ├── plot_ROC_curve.py ├── test_time.py ├── train_process.png └── train_sh ├── .DS_Store ├── ONet_solver.prototxt ├── ONet_train.prototxt ├── ONet_train.sh ├── PNet_solver.prototxt ├── PNet_train.prototxt ├── PNet_train.sh ├── RNet_solver.prototxt ├── RNet_train.prototxt ├── RNet_train.sh ├── celeba_crop ├── .DS_Store ├── CMakeLists.txt ├── celeba_crop.cpp ├── celeba_crop.h └── main.cpp ├── generate_hdf5.py ├── test_24.txt └── train_24.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/README.md -------------------------------------------------------------------------------- /detection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/detection/.DS_Store -------------------------------------------------------------------------------- /detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/detection/CMakeLists.txt -------------------------------------------------------------------------------- /detection/MTCNN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/detection/MTCNN.cpp -------------------------------------------------------------------------------- /detection/MTCNN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/detection/MTCNN.h -------------------------------------------------------------------------------- /detection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/detection/main.cpp -------------------------------------------------------------------------------- /detection/main.cpp.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/detection/main.cpp.new -------------------------------------------------------------------------------- /model/det1.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/model/det1.caffemodel -------------------------------------------------------------------------------- /model/det1.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/model/det1.prototxt -------------------------------------------------------------------------------- /model/det2.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/model/det2.caffemodel -------------------------------------------------------------------------------- /model/det2.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/model/det2.prototxt -------------------------------------------------------------------------------- /model/det3.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/model/det3.caffemodel -------------------------------------------------------------------------------- /model/det3.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/model/det3.prototxt -------------------------------------------------------------------------------- /model/det4.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/model/det4.caffemodel -------------------------------------------------------------------------------- /model/det4.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/model/det4.prototxt -------------------------------------------------------------------------------- /result/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/.DS_Store -------------------------------------------------------------------------------- /result/FDDB_evaluation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/.DS_Store -------------------------------------------------------------------------------- /result/FDDB_evaluation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/CMakeLists.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/.DS_Store -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-01-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-01-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-02-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-02-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-03-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-03-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-04-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-04-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-05-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-05-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-06-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-06-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-07-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-07-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-08-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-08-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-09-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-09-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-10-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-10-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ContROC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ContROC.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ContROC_MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ContROC_MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ContROC_MTCNN_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ContROC_MTCNN_20.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/DiscROC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/DiscROC.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/DiscROC_MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/DiscROC_MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/DiscROC_MTCNN_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/DiscROC_MTCNN_20.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-01-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-01-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-02-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-02-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-03-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-03-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-04-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-04-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-05-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-05-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-06-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-06-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-07-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-07-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-08-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-08-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-09-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-09-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-10-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN/FDDB-fold-10-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-01-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-01-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-02-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-02-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-03-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-03-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-04-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-04-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-05-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-05-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-06-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-06-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-07-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-07-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-08-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-08-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-09-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-09-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-10-MTCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/MTCNN_20/FDDB-fold-10-MTCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-01-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-01-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-02-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-02-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-03-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-03-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-04-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-04-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-05-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-05-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-06-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-06-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-07-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-07-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-08-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-08-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-09-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-09-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-10-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-10-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-01.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-02.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-03.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-04.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-05.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-06.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-07.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-08.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-09.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-10.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/merge_txt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/FDDB-folds/merge_txt.sh -------------------------------------------------------------------------------- /result/FDDB_evaluation/compare/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/compare/.DS_Store -------------------------------------------------------------------------------- /result/FDDB_evaluation/compare/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/compare/CMakeLists.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/compare/compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/compare/compare.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/compare/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/compare/compare.h -------------------------------------------------------------------------------- /result/FDDB_evaluation/compare/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/compare/main.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/controc_Cascade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/controc_Cascade.png -------------------------------------------------------------------------------- /result/FDDB_evaluation/controc_MTCNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/controc_MTCNN.png -------------------------------------------------------------------------------- /result/FDDB_evaluation/controc_MTCNN_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/controc_MTCNN_20.png -------------------------------------------------------------------------------- /result/FDDB_evaluation/controc_MTCNN_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/controc_MTCNN_num.png -------------------------------------------------------------------------------- /result/FDDB_evaluation/discroc_Cascade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/discroc_Cascade.png -------------------------------------------------------------------------------- /result/FDDB_evaluation/discroc_MTCNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/discroc_MTCNN.png -------------------------------------------------------------------------------- /result/FDDB_evaluation/discroc_MTCNN_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/discroc_MTCNN_20.png -------------------------------------------------------------------------------- /result/FDDB_evaluation/discroc_MTCNN_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/discroc_MTCNN_num.png -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/EllipseR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/EllipseR.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/EllipseR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/EllipseR.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/EllipsesSingleImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/EllipsesSingleImage.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/EllipsesSingleImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/EllipsesSingleImage.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Hungarian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/Hungarian.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Hungarian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/Hungarian.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/Makefile -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/MatchPair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/MatchPair.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/MatchPair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/MatchPair.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/Matching.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Matching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/Matching.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/OpenCVUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/OpenCVUtils.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/OpenCVUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/OpenCVUtils.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/README.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RectangleR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/RectangleR.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RectangleR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/RectangleR.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RectanglesSingleImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/RectanglesSingleImage.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RectanglesSingleImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/RectanglesSingleImage.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/Region.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/Region.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RegionsSingleImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/RegionsSingleImage.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RegionsSingleImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/RegionsSingleImage.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/Results.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/Results.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/common.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/evaluate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/evaluate.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/fileList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/fileList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/runEvaluate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/evaluation/runEvaluate.pl -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/face_detection/.DS_Store -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/face_detection/CMakeLists.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/GenSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/face_detection/GenSample.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/GenSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/face_detection/GenSample.h -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/ellipse_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/face_detection/ellipse_transform.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/ellipse_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/face_detection/ellipse_transform.h -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/fddb_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/face_detection/fddb_detection.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/fddb_detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/face_detection/fddb_detection.h -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/FDDB_evaluation/face_detection/main.cpp -------------------------------------------------------------------------------- /result/img_838-compare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/img_838-compare.jpg -------------------------------------------------------------------------------- /result/img_906-compare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/img_906-compare.jpg -------------------------------------------------------------------------------- /result/normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/normal.bmp -------------------------------------------------------------------------------- /result/record_gpu_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/record_gpu_1.txt -------------------------------------------------------------------------------- /result/record_gpu_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/record_gpu_2.txt -------------------------------------------------------------------------------- /result/result_gpu_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/result_gpu_1.png -------------------------------------------------------------------------------- /result/result_gpu_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/result_gpu_2.png -------------------------------------------------------------------------------- /result/trump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/result/trump.jpg -------------------------------------------------------------------------------- /script/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/.DS_Store -------------------------------------------------------------------------------- /script/PRCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/PRCurve.py -------------------------------------------------------------------------------- /script/plot_ROC_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/plot_ROC_curve.py -------------------------------------------------------------------------------- /script/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/test_time.py -------------------------------------------------------------------------------- /script/train_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_process.png -------------------------------------------------------------------------------- /script/train_sh/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/.DS_Store -------------------------------------------------------------------------------- /script/train_sh/ONet_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/ONet_solver.prototxt -------------------------------------------------------------------------------- /script/train_sh/ONet_train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/ONet_train.prototxt -------------------------------------------------------------------------------- /script/train_sh/ONet_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/ONet_train.sh -------------------------------------------------------------------------------- /script/train_sh/PNet_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/PNet_solver.prototxt -------------------------------------------------------------------------------- /script/train_sh/PNet_train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/PNet_train.prototxt -------------------------------------------------------------------------------- /script/train_sh/PNet_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/PNet_train.sh -------------------------------------------------------------------------------- /script/train_sh/RNet_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/RNet_solver.prototxt -------------------------------------------------------------------------------- /script/train_sh/RNet_train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/RNet_train.prototxt -------------------------------------------------------------------------------- /script/train_sh/RNet_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/RNet_train.sh -------------------------------------------------------------------------------- /script/train_sh/celeba_crop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/celeba_crop/.DS_Store -------------------------------------------------------------------------------- /script/train_sh/celeba_crop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/celeba_crop/CMakeLists.txt -------------------------------------------------------------------------------- /script/train_sh/celeba_crop/celeba_crop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/celeba_crop/celeba_crop.cpp -------------------------------------------------------------------------------- /script/train_sh/celeba_crop/celeba_crop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/celeba_crop/celeba_crop.h -------------------------------------------------------------------------------- /script/train_sh/celeba_crop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/celeba_crop/main.cpp -------------------------------------------------------------------------------- /script/train_sh/generate_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/MTCNN/HEAD/script/train_sh/generate_hdf5.py -------------------------------------------------------------------------------- /script/train_sh/test_24.txt: -------------------------------------------------------------------------------- 1 | ../dataset/test_24.hd5 -------------------------------------------------------------------------------- /script/train_sh/train_24.txt: -------------------------------------------------------------------------------- 1 | ../dataset/train_24.hd5 --------------------------------------------------------------------------------