国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C++ > 正文

Linux下python 與 C++ dlib人臉檢測

2019-11-08 03:23:21
字體:
來源:轉載
供稿:網友

python 與 C++ dlib人臉檢測結果對比


說明:

由于項目需求發現linux下c++使用dlib進行人臉檢測和python使用dlib檢測,得到的結果出入比較大,于是寫了測試用例,發現影響結果的原因有但不限于:

dlib版本不同(影響不大,幾個像素的差別)dlib 人臉檢測中detector()第二個參數的設置測試結果如下:
語言/參數 0 1
python (190,190,258,258) (196,196,267,268)
c++ (194,194,259,259) (194,194,259,259)

python

PDlib.py:

# -*- coding: utf-8 -*-import sysimport cv2 import dlibfrom skimage import iodetector = 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)) 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:點擊下載


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 双流县| 唐河县| 五大连池市| 延边| 峡江县| 宾川县| 兴隆县| 志丹县| 天祝| 响水县| 通海县| 彭水| 涿州市| 内丘县| 加查县| 黄陵县| 古交市| 澄江县| 龙口市| 缙云县| 临洮县| 新干县| 屯门区| 鞍山市| 吴川市| 兴安盟| 萍乡市| 满城县| 西乡县| 肇庆市| 扬州市| 阿克陶县| 嘉祥县| 鄂伦春自治旗| 临泉县| 吉木乃县| 长治市| 张家口市| 从化市| 太湖县| 丘北县|