-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.cpp
71 lines (57 loc) · 2.28 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include "MainWindow.h"
#include "ui_MainWindow.h"
#include <QColor>
#include <QDebug>
#include <QRgb>
#include <QStatusBar>
#include "BitmapForm.h"
#include "Perceptron.h"
#include "Letter.h"
#include "WeightsModel.h"
#include "NeuralNetwork.h"
#include "DummyNeuralNetworkFactory.h"
#include "Utils.h"
namespace irec
{
MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent), _ui(new Ui::MainWindow), _statusBar(nullptr), _neuralNetwork(nullptr)
{
_ui->setupUi(this);
_statusBar = new QStatusBar(this);
setStatusBar(_statusBar);
_ui->tableView->horizontalHeader()->setStretchLastSection(QHeaderView::Stretch);
_ui->sampleBmpForm->openImage("blank.bmp");
DummyNeuralNetworkFactory factory;
_neuralNetwork = factory.createInstance();
_neuralNetwork->initialize(_ui->epochSpinBox->value(), _ui->speedSpinBox->value());
foreach (Letter letter, _neuralNetwork->letters())
_ui->symbolComboBox->addItem(letter.name);
}
MainWindow::~MainWindow()
{
delete _ui;
delete _neuralNetwork;
}
void MainWindow::on_symbolComboBox_currentIndexChanged(int index)
{
_ui->protoBmpForm->openImage(_neuralNetwork->letters().at(index).imageFile);
_ui->tableView->setModel(new WeightsModel(_neuralNetwork->perceptrons().at(index).weights()));
_ui->tableView->resizeColumnsToContents();
}
void MainWindow::on_recognisePushButton_clicked()
{
QString letter = _neuralNetwork->recognizeLetter(getImageMatrix(_ui->sampleBmpForm->getImage()));
_statusBar->showMessage(QString("The symbol is %1").arg(letter), 5000);
}
void MainWindow::on_learnPushButton_clicked()
{
_neuralNetwork->clear();
_neuralNetwork->initialize(_ui->epochSpinBox->value(), _ui->speedSpinBox->value());
}
void MainWindow::on_updateRefPushButton_clicked()
{
_ui->protoBmpForm->getImage().save(_neuralNetwork->letters().at(_ui->symbolComboBox->currentIndex()).imageFile);
_neuralNetwork->clear();
_neuralNetwork->initialize(_ui->epochSpinBox->value(), _ui->speedSpinBox->value());
_ui->tableView->setModel(new WeightsModel(_neuralNetwork->perceptrons().at(_ui->symbolComboBox->currentIndex()).weights()));
}
}