superviseddescent
0.4.0
|
superviseddescent is a C++11 implementation of the supervised descent method, which is a generic algorithm to perform optimisation of arbitrary functions.
The library contains an implementation of the Robust Cascaded Regression facial landmark detection and features a pre-trained detection model.
There are two main advantages compared to traditional optimisation algorithms like gradient descent, L-BFGS and the like:
The theory is based on the idea of Supervised Descent Method and Its Applications to Face Alignment, from X. Xiong & F. De la Torre, CVPR 2013 (http://ieeexplore.ieee.org/xpl/articleDetails.jsp?tp=&arnumber=6618919)
It is a header only library, and can thus be included directly into your project by just adding superviseddescent/include
and 3rdparty/cereal-1.1.1/include
to your project's include directory.
While the method and this library can be used to approximate arbitrary functions, its prime example is facial landmark detection. The library contains an implementation of the Robust Cascaded Regression landmark detection and a pre-trained model. Running it is as simple as:
rcr::detection_model rcr_model = rcr::load_detection_model("face_landmarks_model_rcr_22.bin"); cv::Rect facebox = ...; // has to be detected by e.g. V&J LandmarkCollection<cv::Vec2f> landmarks = rcr_model.detect(image, facebox);
The full example is at apps/rcr/rcr-detect.cpp and it is built with the library.
The following examples describe using simple hello-world example how to use the library for generic function optimisation (for example for other computer vision tasks). We'll start with a simple function, sin(x)
. Define a function:
auto h = [](Mat value, size_t, int) { return std::sin(value.at<float>(0)); };
Generate training data (see examples/simple_function.cpp
for the (in this case boring) code):
y_tr
in the interval [-1:0.2:1]x_tr
x0
(a constant value in this case).Construct and train the model, and (optionally) specify a callback function that prints the residual after each learned regressor:
The model can be tested on test data like so:
Predictions on new data can similarly be made with:
which returns the prediction result.
Using the SupervisedDescentOptimiser
for 3D pose estimation from 2D landmarks works exactly in the same way.
h
is the projection function that projects the 3D model to 2D coordinates, given the current parametersy
are the 2D landmarks, known (or detected) at training and testing timex
are the rotation and translation parameters (the 6 DOF of the model)x0
are all set to 0, with the exception of t_z being -2000.Testing and prediction work analogous.
For the documented full working example, see examples/landmark_detection.cpp
.
In contrast to the RCR, this is a simple-as-possible hello-world example to understand how the library works and to build your own applications.
The SupervisedDescentOptimiser
can be used in the same way as before for landmark detection. In this case,
h
is a feature transform that extracts image features like HOG or SIFT from the image (we thus make it a function object, to store the images)y
values (the so called template) to train, because at testing, the HoG descriptors differ for each person (i.e. each persons face looks different)x
are the current 2D landmark locationsx0
are computed by aligning the mean landmark to a detected face box.Training the model is the same, except we pass an empty cv::Mat
instead of y
values:
Testing and prediction work analogous.
For the documented full working example, see examples/landmark_detection.cpp
.
Building of the examples and tests requires CMake>=2.8.11, OpenCV (core, imgproc, highgui, objdetect) and Boost (system, filesystem, program_options).
initial_cache.cmake.template
to initial_cache.cmake
, edit the necessary pathssuperviseddescent
folder: mkdir build; cd build
cmake -C ../superviseddescent/initial_cache.cmake -G "\<your favourite generator\>" ../superviseddescent -DCMAKE_INSTALL_PREFIX=install/
make; make install
or open the solution in Visual Studio.Doxygen: http://patrikhuber.github.io/superviseddescent/doc/
The examples and the Class List in doxygen are a good place to start.
This code is licensed under the Apache License, Version 2.0
Contributions are very welcome! (best in the form of pull requests.) Please use Github issues for any bug reports, ideas, and discussions.
If you use this code in your own work, please cite the following paper: Fitting 3D Morphable Models using Local Features, P. Huber, Z. Feng, W. Christmas, J. Kittler, M. Rätsch, IEEE International Conference on Image Processing (ICIP) 2015, Québec City, Canada (http://arxiv.org/abs/1503.02330).