-
Notifications
You must be signed in to change notification settings - Fork 7
/
mainwindow.cpp
42 lines (37 loc) · 976 Bytes
/
mainwindow.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
#include <QPushButton>
#include <QLabel>
#include "utils.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
connect(ui->show_ptn,SIGNAL(clicked()),this,SLOT(start_thread()));
connect(ui->stop_ptn,SIGNAL(clicked()),this,SLOT(stop_thread()));
connect(ui->quit_ptn,SIGNAL(clicked()),this,SLOT(close()));
haar = new haar_cascade(utils::haar_path,utils::csv_path);
haar->train();
}
void MainWindow::start_thread()
{
video = new video_thread();
video->start();
video->setHaar(haar);
connect(video,SIGNAL(image_data(const QImage &)),this,SLOT(show_picture(const QImage &)));
}
void MainWindow::show_picture(const QImage &img)
{
ui->show_label->setPixmap(QPixmap::fromImage(img));
}
void MainWindow::stop_thread()
{
delete video;
}
MainWindow::~MainWindow()
{
delete ui;
delete haar;
}