├── .DS_Store ├── Models ├── .DS_Store ├── 12c │ ├── 12c.caffemodel │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── 12cal │ ├── 12cal.caffemodel │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── 24c │ ├── 24c.caffemodel │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── 24cal │ ├── .DS_Store │ ├── 24cal.caffemodel │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── 48c │ ├── 48c.caffemodel │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── 48cal │ ├── 48cal.caffemodel │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt └── imagenet_mean.binaryproto ├── README.md ├── detection ├── .DS_Store ├── CMakeLists.txt ├── CascadeCNN.cpp ├── CascadeCNN.h └── main.cpp ├── result ├── .DS_Store ├── 121_12105541@N05_4811548600_1 │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ └── 8.jpg ├── 4_Dancing_Dancing_4_33 │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── 901_9019583@N08_8032652775_0 │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ └── 8.jpg ├── FDDB_evaluation │ ├── .idea │ │ ├── FDDB_evaluation.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── CMakeLists.txt │ ├── FDDB-folds │ │ ├── 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 │ │ ├── DiscROC.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 │ ├── controc.png │ ├── discroc.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 │ │ ├── .idea │ │ ├── face_detection.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ │ ├── CMakeLists.txt │ │ ├── GenSample.cpp │ │ ├── GenSample.h │ │ ├── ellipse_transform.cpp │ │ ├── ellipse_transform.h │ │ ├── fddb_detection.cpp │ │ ├── fddb_detection.h │ │ └── main.cpp ├── MegaFace_evaluation │ ├── .idea │ │ ├── MegaFace_evaluation.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── CMakeLists.txt │ ├── extractor.py │ └── main.cpp ├── record-1.txt ├── record-cpu.txt ├── record-gpu.txt ├── record.txt ├── time_cost.png └── trump.jpg └── script ├── .DS_Store ├── PRCurve.py ├── plot_ROC_curve.py ├── time.py └── train_sh ├── train12c.sh ├── train12cal.sh ├── train24c.sh ├── train24cal.sh ├── train48c.sh ├── train48cal.sh └── trainModels.sh /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/.DS_Store -------------------------------------------------------------------------------- /Models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/.DS_Store -------------------------------------------------------------------------------- /Models/12c/12c.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/12c/12c.caffemodel -------------------------------------------------------------------------------- /Models/12c/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/12c/deploy.prototxt -------------------------------------------------------------------------------- /Models/12c/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/12c/solver.prototxt -------------------------------------------------------------------------------- /Models/12c/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/12c/train_val.prototxt -------------------------------------------------------------------------------- /Models/12cal/12cal.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/12cal/12cal.caffemodel -------------------------------------------------------------------------------- /Models/12cal/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/12cal/deploy.prototxt -------------------------------------------------------------------------------- /Models/12cal/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/12cal/solver.prototxt -------------------------------------------------------------------------------- /Models/12cal/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/12cal/train_val.prototxt -------------------------------------------------------------------------------- /Models/24c/24c.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/24c/24c.caffemodel -------------------------------------------------------------------------------- /Models/24c/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/24c/deploy.prototxt -------------------------------------------------------------------------------- /Models/24c/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/24c/solver.prototxt -------------------------------------------------------------------------------- /Models/24c/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/24c/train_val.prototxt -------------------------------------------------------------------------------- /Models/24cal/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/24cal/.DS_Store -------------------------------------------------------------------------------- /Models/24cal/24cal.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/24cal/24cal.caffemodel -------------------------------------------------------------------------------- /Models/24cal/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/24cal/deploy.prototxt -------------------------------------------------------------------------------- /Models/24cal/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/24cal/solver.prototxt -------------------------------------------------------------------------------- /Models/24cal/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/24cal/train_val.prototxt -------------------------------------------------------------------------------- /Models/48c/48c.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/48c/48c.caffemodel -------------------------------------------------------------------------------- /Models/48c/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/48c/deploy.prototxt -------------------------------------------------------------------------------- /Models/48c/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/48c/solver.prototxt -------------------------------------------------------------------------------- /Models/48c/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/48c/train_val.prototxt -------------------------------------------------------------------------------- /Models/48cal/48cal.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/48cal/48cal.caffemodel -------------------------------------------------------------------------------- /Models/48cal/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/48cal/deploy.prototxt -------------------------------------------------------------------------------- /Models/48cal/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/48cal/solver.prototxt -------------------------------------------------------------------------------- /Models/48cal/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/48cal/train_val.prototxt -------------------------------------------------------------------------------- /Models/imagenet_mean.binaryproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/Models/imagenet_mean.binaryproto -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/README.md -------------------------------------------------------------------------------- /detection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/detection/.DS_Store -------------------------------------------------------------------------------- /detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/detection/CMakeLists.txt -------------------------------------------------------------------------------- /detection/CascadeCNN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/detection/CascadeCNN.cpp -------------------------------------------------------------------------------- /detection/CascadeCNN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/detection/CascadeCNN.h -------------------------------------------------------------------------------- /detection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/detection/main.cpp -------------------------------------------------------------------------------- /result/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/.DS_Store -------------------------------------------------------------------------------- /result/121_12105541@N05_4811548600_1/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/121_12105541@N05_4811548600_1/0.jpg -------------------------------------------------------------------------------- /result/121_12105541@N05_4811548600_1/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/121_12105541@N05_4811548600_1/1.jpg -------------------------------------------------------------------------------- /result/121_12105541@N05_4811548600_1/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/121_12105541@N05_4811548600_1/2.jpg -------------------------------------------------------------------------------- /result/121_12105541@N05_4811548600_1/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/121_12105541@N05_4811548600_1/3.jpg -------------------------------------------------------------------------------- /result/121_12105541@N05_4811548600_1/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/121_12105541@N05_4811548600_1/4.jpg -------------------------------------------------------------------------------- /result/121_12105541@N05_4811548600_1/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/121_12105541@N05_4811548600_1/5.jpg -------------------------------------------------------------------------------- /result/121_12105541@N05_4811548600_1/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/121_12105541@N05_4811548600_1/6.jpg -------------------------------------------------------------------------------- /result/121_12105541@N05_4811548600_1/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/121_12105541@N05_4811548600_1/7.jpg -------------------------------------------------------------------------------- /result/121_12105541@N05_4811548600_1/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/121_12105541@N05_4811548600_1/8.jpg -------------------------------------------------------------------------------- /result/4_Dancing_Dancing_4_33/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/4_Dancing_Dancing_4_33/0.jpg -------------------------------------------------------------------------------- /result/4_Dancing_Dancing_4_33/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/4_Dancing_Dancing_4_33/1.jpg -------------------------------------------------------------------------------- /result/4_Dancing_Dancing_4_33/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/4_Dancing_Dancing_4_33/2.jpg -------------------------------------------------------------------------------- /result/4_Dancing_Dancing_4_33/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/4_Dancing_Dancing_4_33/3.jpg -------------------------------------------------------------------------------- /result/4_Dancing_Dancing_4_33/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/4_Dancing_Dancing_4_33/4.jpg -------------------------------------------------------------------------------- /result/4_Dancing_Dancing_4_33/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/4_Dancing_Dancing_4_33/5.jpg -------------------------------------------------------------------------------- /result/4_Dancing_Dancing_4_33/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/4_Dancing_Dancing_4_33/6.jpg -------------------------------------------------------------------------------- /result/4_Dancing_Dancing_4_33/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/4_Dancing_Dancing_4_33/7.jpg -------------------------------------------------------------------------------- /result/4_Dancing_Dancing_4_33/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/4_Dancing_Dancing_4_33/8.jpg -------------------------------------------------------------------------------- /result/4_Dancing_Dancing_4_33/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/4_Dancing_Dancing_4_33/9.jpg -------------------------------------------------------------------------------- /result/901_9019583@N08_8032652775_0/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/901_9019583@N08_8032652775_0/0.jpg -------------------------------------------------------------------------------- /result/901_9019583@N08_8032652775_0/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/901_9019583@N08_8032652775_0/1.jpg -------------------------------------------------------------------------------- /result/901_9019583@N08_8032652775_0/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/901_9019583@N08_8032652775_0/2.jpg -------------------------------------------------------------------------------- /result/901_9019583@N08_8032652775_0/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/901_9019583@N08_8032652775_0/3.jpg -------------------------------------------------------------------------------- /result/901_9019583@N08_8032652775_0/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/901_9019583@N08_8032652775_0/4.jpg -------------------------------------------------------------------------------- /result/901_9019583@N08_8032652775_0/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/901_9019583@N08_8032652775_0/5.jpg -------------------------------------------------------------------------------- /result/901_9019583@N08_8032652775_0/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/901_9019583@N08_8032652775_0/6.jpg -------------------------------------------------------------------------------- /result/901_9019583@N08_8032652775_0/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/901_9019583@N08_8032652775_0/7.jpg -------------------------------------------------------------------------------- /result/901_9019583@N08_8032652775_0/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/901_9019583@N08_8032652775_0/8.jpg -------------------------------------------------------------------------------- /result/FDDB_evaluation/.idea/FDDB_evaluation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/.idea/FDDB_evaluation.iml -------------------------------------------------------------------------------- /result/FDDB_evaluation/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/.idea/misc.xml -------------------------------------------------------------------------------- /result/FDDB_evaluation/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/.idea/modules.xml -------------------------------------------------------------------------------- /result/FDDB_evaluation/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/.idea/workspace.xml -------------------------------------------------------------------------------- /result/FDDB_evaluation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/CMakeLists.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-01-CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/HEAD/result/FDDB_evaluation/FDDB-folds/CascadeCNN/FDDB-fold-10-CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ContROC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ContROC.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/DiscROC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/FDDB-folds/DiscROC.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-01-ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/HEAD/result/FDDB_evaluation/FDDB-folds/ellipseList/FDDB-fold-10-ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/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/CascadeCNN/HEAD/result/FDDB_evaluation/FDDB-folds/fileList/FDDB-fold-10.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/FDDB-folds/merge_txt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/FDDB-folds/merge_txt.sh -------------------------------------------------------------------------------- /result/FDDB_evaluation/controc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/controc.png -------------------------------------------------------------------------------- /result/FDDB_evaluation/discroc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/discroc.png -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/CascadeCNN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/CascadeCNN.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/EllipseR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/EllipseR.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/EllipseR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/EllipseR.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/EllipsesSingleImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/EllipsesSingleImage.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/EllipsesSingleImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/EllipsesSingleImage.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Hungarian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/Hungarian.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Hungarian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/Hungarian.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/Makefile -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/MatchPair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/MatchPair.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/MatchPair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/MatchPair.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/Matching.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Matching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/Matching.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/OpenCVUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/OpenCVUtils.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/OpenCVUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/OpenCVUtils.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/README.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RectangleR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/RectangleR.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RectangleR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/RectangleR.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RectanglesSingleImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/RectanglesSingleImage.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RectanglesSingleImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/RectanglesSingleImage.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/Region.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/Region.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RegionsSingleImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/RegionsSingleImage.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/RegionsSingleImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/RegionsSingleImage.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/Results.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/Results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/Results.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/common.hpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/ellipseList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/ellipseList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/evaluate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/evaluate.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/fileList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/fileList.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/evaluation/runEvaluate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/evaluation/runEvaluate.pl -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/.idea/face_detection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/.idea/face_detection.iml -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/.idea/misc.xml -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/.idea/modules.xml -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/.idea/workspace.xml -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/CMakeLists.txt -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/GenSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/GenSample.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/GenSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/GenSample.h -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/ellipse_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/ellipse_transform.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/ellipse_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/ellipse_transform.h -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/fddb_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/fddb_detection.cpp -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/fddb_detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/fddb_detection.h -------------------------------------------------------------------------------- /result/FDDB_evaluation/face_detection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/FDDB_evaluation/face_detection/main.cpp -------------------------------------------------------------------------------- /result/MegaFace_evaluation/.idea/MegaFace_evaluation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/MegaFace_evaluation/.idea/MegaFace_evaluation.iml -------------------------------------------------------------------------------- /result/MegaFace_evaluation/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/MegaFace_evaluation/.idea/misc.xml -------------------------------------------------------------------------------- /result/MegaFace_evaluation/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/MegaFace_evaluation/.idea/modules.xml -------------------------------------------------------------------------------- /result/MegaFace_evaluation/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/MegaFace_evaluation/.idea/workspace.xml -------------------------------------------------------------------------------- /result/MegaFace_evaluation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/MegaFace_evaluation/CMakeLists.txt -------------------------------------------------------------------------------- /result/MegaFace_evaluation/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/MegaFace_evaluation/extractor.py -------------------------------------------------------------------------------- /result/MegaFace_evaluation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/MegaFace_evaluation/main.cpp -------------------------------------------------------------------------------- /result/record-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/record-1.txt -------------------------------------------------------------------------------- /result/record-cpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/record-cpu.txt -------------------------------------------------------------------------------- /result/record-gpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/record-gpu.txt -------------------------------------------------------------------------------- /result/record.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/record.txt -------------------------------------------------------------------------------- /result/time_cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/time_cost.png -------------------------------------------------------------------------------- /result/trump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/result/trump.jpg -------------------------------------------------------------------------------- /script/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/.DS_Store -------------------------------------------------------------------------------- /script/PRCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/PRCurve.py -------------------------------------------------------------------------------- /script/plot_ROC_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/plot_ROC_curve.py -------------------------------------------------------------------------------- /script/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/time.py -------------------------------------------------------------------------------- /script/train_sh/train12c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/train_sh/train12c.sh -------------------------------------------------------------------------------- /script/train_sh/train12cal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/train_sh/train12cal.sh -------------------------------------------------------------------------------- /script/train_sh/train24c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/train_sh/train24c.sh -------------------------------------------------------------------------------- /script/train_sh/train24cal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/train_sh/train24cal.sh -------------------------------------------------------------------------------- /script/train_sh/train48c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/train_sh/train48c.sh -------------------------------------------------------------------------------- /script/train_sh/train48cal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/train_sh/train48cal.sh -------------------------------------------------------------------------------- /script/train_sh/trainModels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreverYoungGitHub/CascadeCNN/HEAD/script/train_sh/trainModels.sh --------------------------------------------------------------------------------