• 大小: 2KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-06-03
  • 语言: C/C++
  • 标签: matlab  face_landmar  dlib  

资源简介

本人编写的matlab实现调用dlib中人脸landmark提取的接口,具体可参考我的博客

资源截图

代码片段和文件信息

#include “dlib/matrix.h“
#include 
#include 
#include 
#include 
//#include 
#include “call_matlab.h“
using namespace dlib;
using namespace std;
void mex_function(
const matrix& img_r
const matrix& img_g
const matrix& img_b
matrix& bboxes
matrix& shape

{
matrix img(img_r.nr()img_r.nc());
rgb_pixel PIXEL;
for (long r = 0; r < img_r.nr(); ++r)
{
// loop over all the columns
for (long c = 0; c < img_r.nc(); ++c)
{
PIXEL.red = img_r(r c);
PIXEL.green = img_g(r c);
PIXEL.blue = img_b(r c);
img(r c) = PIXEL;
}
}

/*image_window win;*/
frontal_face_detector detector = ge

评论

共有 条评论