使用Dlib库进行68个人脸特征点检测

本文介绍了如何使用Dlib库进行68个人脸特征点的检测。通过官方示例代码的改写,配合Dlib提供的预训练模型`shape_predictor_68_face_landmarks.dat`,可以实现精确的人脸特征定位。实测结果显示,该方法能够有效检测出68个关键点。
摘要由CSDN通过智能技术生成

dlib人脸检测共可检测出68个检测点
官网上的例子:http://dlib.net/face_landmark_detection_ex.cpp.html
进行适当的改写。
其中:D:\OpenCV\shape_predictor_68_face_landmarks.dat
是从 http://dlib.net/files/shape_predictor_68_face_landmarks.dat.bz2 下载的

#include <dlib/image_processing/frontal_face_detector.h>
#include <dlib/image_processing/render_face_detections.h>
#include <dlib/image_processing.h>
#include <dlib/gui_widgets.h>
#include <dlib/image_io.h>
#include <iostream>

using namespace dlib;
using namespace std;

int main(int argc, char** argv)
{
    try
    {
        // This example takes in a shape model file and then a list of images to
        // process.  We will take these filenames in as command line arguments.
        // Dlib comes with example images in the examples/faces folder so give
        // those as arguments to this program.
        // 这个例子需
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值