├── .gitignore ├── 3rdparty └── liblinear │ ├── COPYRIGHT │ ├── blas.h │ ├── blasp.h │ ├── daxpy.c │ ├── ddot.c │ ├── dnrm2.c │ ├── dscal.c │ ├── liblinear.cmake │ ├── linear.cpp │ ├── linear.h │ ├── tron.cpp │ └── tron.h ├── CMakeLists.txt ├── LICENSE ├── README.md ├── data └── .gitkeep ├── images ├── res1.png ├── res2.png ├── res3.png └── res4.png ├── include └── lbf │ ├── common.hpp │ ├── lbf.hpp │ └── rf.hpp ├── lib3000fps.cmake ├── model └── haarcascade_frontalface_alt.xml └── src ├── lbf ├── common.cpp ├── lbf.cpp └── rf.cpp ├── main.cpp ├── prepare.cpp ├── test.cpp └── train.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/liblinear/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/COPYRIGHT -------------------------------------------------------------------------------- /3rdparty/liblinear/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/blas.h -------------------------------------------------------------------------------- /3rdparty/liblinear/blasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/blasp.h -------------------------------------------------------------------------------- /3rdparty/liblinear/daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/daxpy.c -------------------------------------------------------------------------------- /3rdparty/liblinear/ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/ddot.c -------------------------------------------------------------------------------- /3rdparty/liblinear/dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/dnrm2.c -------------------------------------------------------------------------------- /3rdparty/liblinear/dscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/dscal.c -------------------------------------------------------------------------------- /3rdparty/liblinear/liblinear.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/liblinear.cmake -------------------------------------------------------------------------------- /3rdparty/liblinear/linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/linear.cpp -------------------------------------------------------------------------------- /3rdparty/liblinear/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/linear.h -------------------------------------------------------------------------------- /3rdparty/liblinear/tron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/tron.cpp -------------------------------------------------------------------------------- /3rdparty/liblinear/tron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/3rdparty/liblinear/tron.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/res1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/images/res1.png -------------------------------------------------------------------------------- /images/res2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/images/res2.png -------------------------------------------------------------------------------- /images/res3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/images/res3.png -------------------------------------------------------------------------------- /images/res4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/images/res4.png -------------------------------------------------------------------------------- /include/lbf/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/include/lbf/common.hpp -------------------------------------------------------------------------------- /include/lbf/lbf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/include/lbf/lbf.hpp -------------------------------------------------------------------------------- /include/lbf/rf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/include/lbf/rf.hpp -------------------------------------------------------------------------------- /lib3000fps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/lib3000fps.cmake -------------------------------------------------------------------------------- /model/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/model/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /src/lbf/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/src/lbf/common.cpp -------------------------------------------------------------------------------- /src/lbf/lbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/src/lbf/lbf.cpp -------------------------------------------------------------------------------- /src/lbf/rf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/src/lbf/rf.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/prepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/src/prepare.cpp -------------------------------------------------------------------------------- /src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/src/test.cpp -------------------------------------------------------------------------------- /src/train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/face-alignment-at-3000fps/HEAD/src/train.cpp --------------------------------------------------------------------------------