face alignment dlib

face alignment dlib

  1. 代码:

  2.  
  3. void landmark(Mat face_img)

  4. {

  5. string modelfile = "C:\\WorkSpace\\SoftWare\\dlib-19.10\\models\\shape_predictor_68_face_landmarks.dat";

  6. // Load face detection and pose estimation models.

  7. frontal_face_detector detector = get_frontal_face_detector();

  8. shape_predictor pose_model;

  9. deserialize(modelfile) >> pose_model;

  10. // Detect faces

  11. cv_image cimg(face_img);

  12.  
  13.  
  14. std::vector faces = detector(cimg);

  15.  
  16.  
  17. // Find the pose of each face.

  18. std::vector shapes;

  19. for (unsigned long i = 0; i < faces.size(); ++i)

  20. {

  21. shapes.push_back(pose_model(cimg, faces[i]));

  22. Rect r;

  23. r.x = faces[i].left();

  24. r.y = faces[i].top();

  25. r.width = faces[i].width();

  26. r.height = faces[i].height();

  27. cv::rectangle(face_img, r, Scalar(0, 0, 255));

  28. }

  29.  
  30.  
  31. if (!shapes.empty()) {

  32. for (int i = 0; i < 68; i++) {

  33. circle(face_img, cvPoint(shapes[0].part(i).x(), shapes[0].part(i).y()), 3, cv::Scalar(0, 0, 255), -1);

  34. // shapes[0].part(i).x();//68个

  35. }

  36. }

  37. //Display it all on the screen

  38. imshow("Dlib特征点", face_img);

  39. waitKey(0);

  40. }

 

 

效果图:

face alignment dlib_第1张图片

 

提示:

1.严重性 代码 说明 项目 文件 行 禁止显示状态

错误 LNK2001 无法解析的外部符号 USER_ERROR__inconsistent_build_configuration__see_dlib_faq_2 cv_example C:\WorkSpace\Visual_studio\c_design\c_practice\cv_example\main.obj 1

如果出现这种 错误  请将 dlib\all\source.cpp 添加到工程目录下。

环境配置:

1. include 包含目录

face alignment dlib_第2张图片

2.库文件 dlib.lib 目录 

face alignment dlib_第3张图片

3.设置 输入 需要的库文件

face alignment dlib_第4张图片

4.设置支持文件

face alignment dlib_第5张图片

你可能感兴趣的:(face alignment dlib)