• 大小: 8KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: C/C++
  • 标签: qt  arm  人脸登录  

资源简介

qt, arm, facial recognition, mini2440

资源截图

代码片段和文件信息

#include “widget.h“
#include “ui_widget.h“
#include 
#include 

#ifndef PROPERTY
#define PROPERTY

#define image_width 320 //图片显示宽度
#define image_height 240    //图片显示高度
#define image_Format QImage::Format_RGB888 //图片显示格式
#define cameraDevice “/dev/video0“  //摄像头设备
#define haarxml “./data/haarcascade_frontalface_alt2.xml“   //人脸模型级联分类器文件
#define imgSizeScaleSmall 0.5    //图像防缩比例
#define imgSizeScaleBig 2    //图像防缩比例

#endif  //PROPERTY

Widget::Widget(QWidget *parent) :
    QWidget(parent)
    ui(new Ui::Widget)
{
    ui->setupUi(this);

    imgBuf = (unsigned char *)malloc(image_width * image_height/*QWidget::width()*QWidget::height()*/* 3 * sizeof(char));
    frame = new QImage(imgBufimage_widthimage_heightimage_Format);   //根据存储空间开辟QImage图像
    m_camera = new VideoD

评论

共有 条评论