├── .gitattributes ├── .gitignore ├── LBF.cpp ├── LBF.h ├── LBF.vcxproj ├── LBF.vcxproj.filters ├── LBFRegressor.cpp ├── LBFRegressor.h ├── OpenCV_debug_property.props ├── README.md ├── RandomForest.cpp ├── RandomForest.h ├── TestDemo.cpp ├── TrainDemo.cpp ├── Tree.cpp ├── Tree.h ├── Utils.cpp ├── blas.h ├── blasp.h ├── daxpy.c ├── ddot.c ├── dnrm2.c ├── dscal.c ├── facedetect.cpp ├── linear.cpp ├── linear.h ├── tron.cpp └── tron.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /LBF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/LBF.cpp -------------------------------------------------------------------------------- /LBF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/LBF.h -------------------------------------------------------------------------------- /LBF.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/LBF.vcxproj -------------------------------------------------------------------------------- /LBF.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/LBF.vcxproj.filters -------------------------------------------------------------------------------- /LBFRegressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/LBFRegressor.cpp -------------------------------------------------------------------------------- /LBFRegressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/LBFRegressor.h -------------------------------------------------------------------------------- /OpenCV_debug_property.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/OpenCV_debug_property.props -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/README.md -------------------------------------------------------------------------------- /RandomForest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/RandomForest.cpp -------------------------------------------------------------------------------- /RandomForest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/RandomForest.h -------------------------------------------------------------------------------- /TestDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/TestDemo.cpp -------------------------------------------------------------------------------- /TrainDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/TrainDemo.cpp -------------------------------------------------------------------------------- /Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/Tree.cpp -------------------------------------------------------------------------------- /Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/Tree.h -------------------------------------------------------------------------------- /Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/Utils.cpp -------------------------------------------------------------------------------- /blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/blas.h -------------------------------------------------------------------------------- /blasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/blasp.h -------------------------------------------------------------------------------- /daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/daxpy.c -------------------------------------------------------------------------------- /ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/ddot.c -------------------------------------------------------------------------------- /dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/dnrm2.c -------------------------------------------------------------------------------- /dscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/dscal.c -------------------------------------------------------------------------------- /facedetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/facedetect.cpp -------------------------------------------------------------------------------- /linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/linear.cpp -------------------------------------------------------------------------------- /linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/linear.h -------------------------------------------------------------------------------- /tron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/tron.cpp -------------------------------------------------------------------------------- /tron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyhx/JointCascadeFaceDetection/HEAD/tron.h --------------------------------------------------------------------------------