Created
March 5, 2019 02:04
-
-
Save treyhuffine/f4c8ec8e6656b487fe837e1d073a0a48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <opencv2/face.hpp> | |
using namespace cv::face; | |
// ... | |
const string facemark_filename = "data/lbfmodel.yaml"; | |
Ptr<Facemark> facemark = createFacemarkLBF(); | |
facemark->loadModel(facemark_filename); | |
cout << "Loaded facemark LBF model" << endl; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment