-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.cpp
196 lines (174 loc) · 7.43 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
//
// Created by abdallah drwesh on 4/3/21.
//
// You may need to build the project (run Qt uic code generator) to get "ui_MainWindow.h" resolved
#include <QGraphicsPixmapItem>
#include "MainWindow.h"
#include "ui_MainWindow.h"
#include <QChart>
#include <QChartView>
#include <QLineSeries>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent), ui(new Ui::MainWindow) {
ui->setupUi(this);
// ImageDisplay = new QCPItemPixmap( ui->snake);
roc = ui->widget_5->addGraph();
points = ui->snake->addGraph();
ui->widget_5->xAxis->setRange(0.0,1.5);
ui->widget_5->yAxis->setRange(0.0,1.5);
ui->snake->xAxis->setVisible(false);
ui->snake->yAxis->setVisible(false);
ui->snake->xAxis->setRange(0.0, 5.0);
ui->snake->yAxis->setRange(0.0, 5.0);
ui->snake->setAutoFillBackground(true);
ui->snake->replot();
ui->snake->installEventFilter(this);
imageMatchPoints1 = ui->imageMatch_1->addGraph();
ui->imageMatch_1->xAxis->setVisible(false);
ui->imageMatch_1->yAxis->setVisible(false);
ui->imageMatch_1->xAxis->setRange(0.0, 5.0);
ui->imageMatch_1->yAxis->setRange(0.0, 5.0);
ui->imageMatch_1->setAutoFillBackground(true);
ui->imageMatch_1->replot();
imageMatchPoints2 = ui->imageMatch_2->addGraph();
ui->imageMatch_2->xAxis->setVisible(false);
ui->imageMatch_2->yAxis->setVisible(false);
ui->imageMatch_2->xAxis->setRange(0.0, 5.0);
ui->imageMatch_2->yAxis->setRange(0.0, 5.0);
ui->imageMatch_2->setAutoFillBackground(true);
ui->imageMatch_2->replot();
// imageMatchPoints2 = ui->imageMatch_2->addGraph();
ui->resultMatch->xAxis->setVisible(false);
ui->resultMatch->yAxis->setVisible(false);
ui->resultMatch->xAxis->setRange(0.0, 5.0);
ui->resultMatch->yAxis->setRange(0.0, 5.0);
ui->resultMatch->setAutoFillBackground(true);
ui->resultMatch->replot();
regionGrowing = ui->segmentImg->addGraph();
ui->segmentImg->xAxis->setVisible(false);
ui->segmentImg->yAxis->setVisible(false);
ui->segmentImg->xAxis->setRange(0.0, 5.0);
ui->segmentImg->yAxis->setRange(0.0, 5.0);
ui->segmentImg->setAutoFillBackground(true);
ui->segmentImg->replot();
ui->segmentImg->installEventFilter(this);
}
void MainWindow::loadImage(std::string filepath, Image *&image, int numChannels) {
if (image != nullptr) {
delete image;
}
image = new Image(filepath, numChannels);
}
void MainWindow::displayRGBImage(Image *image, QLabel *label) {
QImage qImage(image->width, image->height, QImage::Format_RGB16);
QRgb rgb;
for (int j = 0; j < image->width; ++j) {
for (int i = 0; i < image->height; ++i) {
rgb = qRgb((*image)(i, j, 0), (*image)(i, j, 1), (*image)(i, j, 2));
// printf("%i %i %i \n",inputImage->data[i][j][0],inputImage->data[i][j][1],inputImage->data[i][j][2]);
qImage.setPixel(j, i, rgb);
}
}
int width = label->width();
int height = label->height();
label->setPixmap(QPixmap::fromImage(qImage).scaled(width, height));
}
void MainWindow::displayGrayscaleImage(Image *image, QLabel *label) {
QImage qImage(image->width, image->height, QImage::Format_RGB16);
QRgb rgb;
for (int j = 0; j < image->width; ++j) {
for (int i = 0; i < image->height; ++i) {
rgb = qRgb((*image)(i, j), (*image)(i, j), (*image)(i, j));
// printf("%i %i %i \n",inputImage->data[i][j][0],inputImage->data[i][j][1],inputImage->data[i][j][2]);
qImage.setPixel(j, i, rgb);
}
}
int width = label->width();
int height = label->height();
label->clear();
label->setPixmap(QPixmap::fromImage(qImage).scaled(width, height));
}
bool MainWindow::eventFilter(QObject *obj, QEvent *event) {
if (obj == ui->snake && snakeImage != nullptr) {
if (event->type() == QEvent::MouseButtonPress) {
QMouseEvent *mouseEvent = static_cast<QMouseEvent *>(event);
int x = ceil(((float) mouseEvent->x() / ui->snake->background().rect().width()) * snakeImage->width);
int y = ceil(((float) mouseEvent->y() / ui->snake->background().rect().height()) *
snakeImage->height); //qDebug()
if (centerX == 0) {
centerX = x;
centerY = y;
} else if (raduis == 0) {
raduis = sqrt(pow(x - centerX, 2) + pow(y - centerY, 2));
}
if (raduis != 0) {
qDebug() << "start drawing";
float step = 2 * 3.14 / pointsCount;
for (int i = 0; i < pointsCount; i++) {
arrayOfPointsX[i] = centerX + cos(step * i) * raduis;
arrayOfPointsY[i] = centerY + sin(step * i) * raduis;
int xCoordinate = ceil(
(arrayOfPointsX[i] / (float) snakeImage->width) * ui->snake->background().rect().width());
int yCoordinate = ceil(
(arrayOfPointsY[i] / (float) snakeImage->height) * ui->snake->background().rect().height());
xData->append(ui->snake->xAxis->pixelToCoord(xCoordinate));
yData->append(ui->snake->yAxis->pixelToCoord(yCoordinate));
}
qDebug() << "start drawing";
points->setData(*xData, *yData);
qDebug() << "start drawing";
points->setLineStyle((QCPGraph::LineStyle) QCPGraph::lsNone);
points->setScatterStyle(QCPScatterStyle(QCPScatterStyle::ssDisc, 3));
points->setPen(QPen(QColor(0, 0, 255), 2));
ui->snake->replot();
}
return QObject::eventFilter(obj, event);
}
}else if( obj == ui->segmentImg && this->segmentationImage != nullptr) {
if (event->type() == QEvent::MouseButtonPress) {
qDebug()<< "here";
QMouseEvent *mouseEvent = static_cast<QMouseEvent *>(event);
int x = ceil(((double) mouseEvent->x() / ui->segmentImg->background().rect().width()) * segmentationImage->width);
int y = ceil(((double) mouseEvent->y() / ui->segmentImg->background().rect().height()) *
segmentationImage->height);
point xy{x, y};
DataRG.push_back(xy);
double xCoordinate = ui->segmentImg->xAxis->pixelToCoord(mouseEvent->x());
double yCoordinate = ui->segmentImg->yAxis->pixelToCoord(mouseEvent->y());
regionGrowing->addData(xCoordinate, yCoordinate);
regionGrowing->setLineStyle((QCPGraph::LineStyle) QCPGraph::lsNone);
regionGrowing->setScatterStyle(QCPScatterStyle(QCPScatterStyle::ssDisc, 10));
regionGrowing->setPen(QPen(QColor(0, 0, 255), 2));
ui->segmentImg->replot();
return QObject::eventFilter(obj, event);
}
}
}
MainWindow::~MainWindow() {
delete ui;
delete inputImage;
delete noiseImage;
delete imageA;
delete imageB;
delete inputImage_1;
delete outputImage;
delete outputImage_1;
delete inputFreqImage;
delete snakeImage;
delete imageMatch_1;
delete imageMatch_2;
delete ImageDisplay;
delete points;
delete xData;
delete yData;
delete xDataMatching_1;
delete xDataMatching_2;
delete yDataMatching_1;
delete yDataMatching_2;
delete imageMatchPoints1;
delete imageMatchPoints2;
delete segmentationImage;
delete segmentationOutputImage;
delete regionGrowing;
delete roc;
}