Linux下python與C++使用dlib實(shí)現(xiàn)人臉檢測
python 與 C++ dlib人臉檢測結(jié)果對(duì)比,供大家參考,具體內(nèi)容如下
說明:
由于項(xiàng)目需求發(fā)現(xiàn)Linux下c++使用dlib進(jìn)行人臉檢測和python使用dlib檢測,得到的結(jié)果出入比較大,于是寫了測試用例,發(fā)現(xiàn)影響結(jié)果的原因有但不限于:
1.dlib版本不同(影響不大,幾個(gè)像素的差別)
2.dlib 人臉檢測中detector()第二個(gè)參數(shù)的設(shè)置測試結(jié)果如下:

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進(jìn)行人臉檢測
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)
#等待點(diǎn)擊
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, "請(qǐng)輸入正確參數(shù)\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;
}
}
項(xiàng)目編譯及運(yùn)行
python
運(yùn)行腳本 python PDlib.py G:\DlibTest\data\bush.jpg
C++
- 創(chuàng)建編譯文件夾 mkdir cbuild
- 切換到編譯目錄 cd cbuild
- 生成makefile文件 cmake ..
- 編譯項(xiàng)目 make
- 運(yùn)行可執(zhí)行文件 ./DlibTest G:\DlibTest\data\bush.jpg
Demo:點(diǎn)擊下載
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- python 基于dlib庫的人臉檢測的實(shí)現(xiàn)
- Python3利用Dlib實(shí)現(xiàn)攝像頭實(shí)時(shí)人臉檢測和平鋪顯示示例
- python 3利用Dlib 19.7實(shí)現(xiàn)攝像頭人臉檢測特征點(diǎn)標(biāo)定
- Python下應(yīng)用opencv 實(shí)現(xiàn)人臉檢測功能
- Python基于OpenCV實(shí)現(xiàn)人臉檢測并保存
- Python OpenCV利用筆記本攝像頭實(shí)現(xiàn)人臉檢測
- Python3.6.0+opencv3.3.0人臉檢測示例
- 50行Python代碼實(shí)現(xiàn)人臉檢測功能
- python使用dlib進(jìn)行人臉檢測和關(guān)鍵點(diǎn)的示例
相關(guān)文章
Python中的內(nèi)存管理之python list內(nèi)存使用詳解
這篇文章主要介紹了Python中的內(nèi)存管理之python list內(nèi)存使用詳解,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2021-09-09
解決python3中自定義wsgi函數(shù),make_server函數(shù)報(bào)錯(cuò)的問題
下面小編就為大家分享一篇解決python3中自定義wsgi函數(shù),make_server函數(shù)報(bào)錯(cuò)的問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2017-11-11
Python使用PyMySql增刪改查Mysql數(shù)據(jù)庫的實(shí)現(xiàn)
PyMysql是Python中用于連接MySQL數(shù)據(jù)庫的一個(gè)第三方庫,本文主要介紹了Python使用PyMySql增刪改查Mysql數(shù)據(jù)庫的實(shí)現(xiàn),具有一定的參考價(jià)值,感興趣的可以了解一下2024-01-01
Python3實(shí)現(xiàn)將文件歸檔到zip文件及從zip文件中讀取數(shù)據(jù)的方法
這篇文章主要介紹了Python3實(shí)現(xiàn)將文件歸檔到zip文件及從zip文件中讀取數(shù)據(jù)的方法,涉及Python針對(duì)zip文件操作的相關(guān)技巧,需要的朋友可以參考下2015-05-05
基于Python實(shí)現(xiàn)條形碼圖片識(shí)別程序
這篇文章主要為大家詳細(xì)介紹了如何基于Python實(shí)現(xiàn)一個(gè)簡單的條形碼圖片識(shí)別程序,可以視頻圖片中的條形碼,感興趣的小伙伴可以跟隨小編學(xué)習(xí)一下2023-09-09
opencv python 對(duì)指針儀表讀數(shù)識(shí)別的兩種方式
這篇文章主要介紹了opencv python 對(duì)指針儀表讀數(shù)識(shí)別的兩種方式,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2021-01-01
Python中PyQt5/PySide2的按鈕控件使用實(shí)例
這篇文章主要介紹了PyQt5/PySide2的按鈕控件使用實(shí)例,代碼簡單易懂,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-08-08
Django rstful登陸認(rèn)證并檢查session是否過期代碼實(shí)例
這篇文章主要介紹了Django rstful登陸認(rèn)證并檢查session是否過期代碼實(shí)例,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-08-08

