Linux下python与C++使用dlib实现人脸检测


Posted in Python onJune 29, 2018

python 与 C++ dlib人脸检测结果对比,供大家参考,具体内容如下

说明:

由于项目需求发现Linux下c++使用dlib进行人脸检测和python使用dlib检测,得到的结果出入比较大,于是写了测试用例,发现影响结果的原因有但不限于:

1.dlib版本不同(影响不大,几个像素的差别)
2.dlib 人脸检测中detector()第二个参数的设置测试结果如下:

Linux下python与C++使用dlib实现人脸检测

python

PDlib.py:

# -*- coding: utf-8 -*-

import sys
import cv2 
import dlib

from skimage import io
detector = dlib.get_frontal_face_detector()
win = dlib.image_window()

for f in sys.argv[1:]: 
  img = io.imread(f)

  dets = detector(img,1) #使用detector进行人脸检测

  for i, d in enumerate(dets):
    x = d.left()
    y = d.top()
    w = d.right()
    h = d.bottom()   
    cv2.rectangle(img, (x, y), (w, h), (0, 255, 0))
    print("({},{},{},{})".format( x, y, (w-x), (h-y)))

  win.set_image(img)
  io.imsave('./P_Dlib_test.jpg',img)

  #等待点击
  dlib.hit_enter_to_continue()

C++

CDlib.cpp:

#include <dlib/image_processing/frontal_face_detector.h>
#include <dlib/opencv.h>
#include "opencv2/opencv.hpp"
#include <iostream>

using namespace dlib;
using namespace std;

cv::Rect Detect(cv::Mat im)
{
  cv::Rect R;
  frontal_face_detector detector = get_frontal_face_detector();
  array2d<bgr_pixel> img; 
  assign_image(img, cv_image<uchar>(im));
  std::vector<rectangle> dets = detector(img);//检测人脸

  //查找最大脸
  if (dets.size() != 0)
  {
    int Max = 0;
    int area = 0;
    for (unsigned long t = 0; t < dets.size(); ++t)
    {      
      if (area < dets[t].width()*dets[t].height())
      {
        area = dets[t].width()*dets[t].height();
        Max = t;
      }
    }

    R.x = dets[Max].left();
    R.y = dets[Max].top();
    R.width = dets[Max].width();
    R.height = dets[Max].height();
    cout<<"("<<R.x<<","<<R.y<<","<<R.width<<","<<R.height<<")"<<endl;
  }
  return R;
}

int main(int argc, char** argv)
{
  if (argc != 2) {
    fprintf(stderr, "请输入正确参数\n");
    return 1;
  }  
  string path = argv[1];
  try
  {    
    cv::Mat src, dec;
    src = cv::imread(path);
    src.copyTo(dec);
    cv::cvtColor(dec, dec, CV_BGR2GRAY);
    cv::Rect box;
    box = Detect(dec);
    cv::rectangle(src, box, cv::Scalar(0, 0, 255), 1, 1, 0);    
    cv::imshow("frame", src);
    cv::imwrite("./C_Dlib_test.jpg", src);
    cv::waitKey(0);//等待建入 
  }
  catch (exception& e)
  {
    cout << e.what() << endl;
  }
}

项目编译及运行

python

运行脚本 python PDlib.py G:\DlibTest\data\bush.jpg

C++

  • 创建编译文件夹 mkdir cbuild
  • 切换到编译目录 cd cbuild
  • 生成makefile文件 cmake ..
  • 编译项目 make
  • 运行可执行文件 ./DlibTest G:\DlibTest\data\bush.jpg

Demo:点击下载

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python压缩和解压缩zip文件
Feb 14 Python
在Python中使用zlib模块进行数据压缩的教程
Jun 26 Python
详解Python中 __get__和__getattr__和__getattribute__的区别
Jun 16 Python
python 读写中文json的实例详解
Oct 29 Python
Python基于OpenCV实现视频的人脸检测
Jan 23 Python
Python之pandas读写文件乱码的解决方法
Apr 20 Python
Django中的ajax请求
Oct 19 Python
Python Django中间件,中间件函数,全局异常处理操作示例
Nov 08 Python
Python运行DLL文件的方法
Jan 17 Python
完美解决pycharm 不显示代码提示问题
Jun 02 Python
python 日志模块logging的使用场景及示例
Jan 04 Python
python编程项目中线上问题排查与解决
Nov 01 Python
对python中两种列表元素去重函数性能的比较方法
Jun 29 #Python
Python数据持久化shelve模块用法分析
Jun 29 #Python
python 统计列表中不同元素的数量方法
Jun 29 #Python
python计算两个数的百分比方法
Jun 29 #Python
python统计字母、空格、数字等字符个数的实例
Jun 29 #Python
python中计算一个列表中连续相同的元素个数方法
Jun 29 #Python
Python使用ConfigParser模块操作配置文件的方法
Jun 29 #Python
You might like
php获取url字符串截取路径的文件名和扩展名的函数
2010/01/22 PHP
thinkphp3.0输出重复两次的解决方法
2014/12/19 PHP
PHP守护进程化在C和PHP环境下的实现
2017/11/21 PHP
php获得刚插入数据的id 的几种方法总结
2018/05/31 PHP
js 获取服务器控件值的代码
2010/03/05 Javascript
javascript中的关于类型转换的性能优化
2010/12/14 Javascript
js中switch case循环实例代码
2013/12/30 Javascript
js实现网页抽奖实例
2015/08/05 Javascript
详谈angularjs中路由页面强制更新的问题
2017/04/24 Javascript
react脚手架如何配置less和ant按需加载的方法步骤
2018/11/28 Javascript
详解vue中this.$emit()的返回值是什么
2019/04/07 Javascript
Vue发布项目实例讲解
2019/07/17 Javascript
在vue中使用回调函数,this调用无效的解决
2020/08/11 Javascript
[02:04]2020年夜魇暗潮预告片
2020/10/30 DOTA
django之常用命令详解
2016/06/30 Python
django admin组件使用方法详解
2019/07/19 Python
python 解决mysql where in 对列表(list,,array)问题
2020/06/06 Python
Java如何基于wsimport调用wcf接口
2020/06/17 Python
浅析Python 简单工厂模式和工厂方法模式的优缺点
2020/07/13 Python
利用CSS3的线性渐变linear-gradient制作边框的示例
2016/06/02 HTML / CSS
LORAC官网:美国彩妆品牌
2019/08/27 全球购物
安全员岗位职责
2013/11/11 职场文书
七年级生物教学反思
2014/01/30 职场文书
会计毕业生自荐书
2014/06/12 职场文书
求职简历自荐信
2014/06/18 职场文书
商务专员岗位职责范本
2014/06/29 职场文书
党的群众路线教育实践活动整改落实情况自查报告
2014/10/28 职场文书
罚站检讨书
2015/01/29 职场文书
2015年综治宣传月活动总结
2015/03/25 职场文书
2015年班组长工作总结
2015/04/10 职场文书
英语投诉信范文
2015/07/03 职场文书
2015年挂职锻炼个人总结
2015/10/22 职场文书
2016年党员公开承诺书格式范文
2016/03/24 职场文书
《和时间赛跑》读后感3篇
2019/12/16 职场文书
原生CSS实现文字无限轮播的通用方法
2021/03/30 HTML / CSS
Android在Sqlite3中的应用及多线程使用数据库的建议
2022/04/24 Java/Android