├── .DS_Store ├── .gitignore ├── CMakeLists.txt ├── README.md ├── bad_case.png ├── detect.png ├── example ├── helen_test_config_images_with_ground_truth.txt ├── helen_test_config_images_without_ground_truth.txt ├── helen_test_images_list_with_ground_truth.txt ├── helen_test_images_list_without_ground_truth.txt ├── helen_train_config.txt └── helen_train_images_list.txt ├── final.png ├── haarcascade_frontalface_alt2.xml ├── headers.h ├── initial.png ├── liblinear ├── CMakeLists.txt ├── blas.h ├── blas │ ├── blas.h │ ├── blasp.h │ ├── daxpy.c │ ├── ddot.c │ ├── dnrm2.c │ └── dscal.c ├── blasp.h ├── daxpy.c ├── ddot.c ├── dnrm2.c ├── dscal.c ├── linear.cpp ├── linear.h ├── tron.cpp └── tron.h ├── main.cpp ├── randomforest.cpp ├── randomforest.h ├── regressor.cpp ├── regressor.h ├── tang.jpg ├── utils.cpp └── utils.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/README.md -------------------------------------------------------------------------------- /bad_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/bad_case.png -------------------------------------------------------------------------------- /detect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/detect.png -------------------------------------------------------------------------------- /example/helen_test_config_images_with_ground_truth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/example/helen_test_config_images_with_ground_truth.txt -------------------------------------------------------------------------------- /example/helen_test_config_images_without_ground_truth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/example/helen_test_config_images_without_ground_truth.txt -------------------------------------------------------------------------------- /example/helen_test_images_list_with_ground_truth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/example/helen_test_images_list_with_ground_truth.txt -------------------------------------------------------------------------------- /example/helen_test_images_list_without_ground_truth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/example/helen_test_images_list_without_ground_truth.txt -------------------------------------------------------------------------------- /example/helen_train_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/example/helen_train_config.txt -------------------------------------------------------------------------------- /example/helen_train_images_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/example/helen_train_images_list.txt -------------------------------------------------------------------------------- /final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/final.png -------------------------------------------------------------------------------- /haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/headers.h -------------------------------------------------------------------------------- /initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/initial.png -------------------------------------------------------------------------------- /liblinear/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/CMakeLists.txt -------------------------------------------------------------------------------- /liblinear/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/blas.h -------------------------------------------------------------------------------- /liblinear/blas/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/blas/blas.h -------------------------------------------------------------------------------- /liblinear/blas/blasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/blas/blasp.h -------------------------------------------------------------------------------- /liblinear/blas/daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/blas/daxpy.c -------------------------------------------------------------------------------- /liblinear/blas/ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/blas/ddot.c -------------------------------------------------------------------------------- /liblinear/blas/dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/blas/dnrm2.c -------------------------------------------------------------------------------- /liblinear/blas/dscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/blas/dscal.c -------------------------------------------------------------------------------- /liblinear/blasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/blasp.h -------------------------------------------------------------------------------- /liblinear/daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/daxpy.c -------------------------------------------------------------------------------- /liblinear/ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/ddot.c -------------------------------------------------------------------------------- /liblinear/dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/dnrm2.c -------------------------------------------------------------------------------- /liblinear/dscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/dscal.c -------------------------------------------------------------------------------- /liblinear/linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/linear.cpp -------------------------------------------------------------------------------- /liblinear/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/linear.h -------------------------------------------------------------------------------- /liblinear/tron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/tron.cpp -------------------------------------------------------------------------------- /liblinear/tron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/liblinear/tron.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/main.cpp -------------------------------------------------------------------------------- /randomforest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/randomforest.cpp -------------------------------------------------------------------------------- /randomforest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/randomforest.h -------------------------------------------------------------------------------- /regressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/regressor.cpp -------------------------------------------------------------------------------- /regressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/regressor.h -------------------------------------------------------------------------------- /tang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/tang.jpg -------------------------------------------------------------------------------- /utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/utils.cpp -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freesouls/face-alignment-at-3000fps/HEAD/utils.h --------------------------------------------------------------------------------