-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmainwindow.cpp
195 lines (168 loc) · 5.85 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
#include "mainwindow.h"
#include "ui_mainwindow.h"
typedef itk::RGBPixel<unsigned char> RGBPixelType;
typedef itk::Image<RGBPixelType, 2>ImageType;
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
//this->setWindowState(Qt::WindowMaximized);
//open image
connect(
ui->actionOpen_image,SIGNAL(triggered()),
this,
SLOT(OnShowImageCliked())
);
//Histogramwindow histogramwindow;
connect(
ui->HistogramButton,SIGNAL(clicked()),
this, SLOT(OnShowHistogramClicked())
);
//Thresholding
connect(
ui->ThresholdingButton,SIGNAL(clicked()),
this,SLOT(OnShowThresholdClicked())
);
//Thresholding slider
connect(
ui->thresholdingSlider,SIGNAL(valueChanged(int)),
this, SLOT(OnShowThresholdClicked())
);
//Sobel
connect(
ui->SobelButton, SIGNAL(clicked()),
this, SLOT(OnShowSobelClicked())
);
//Edge Detection
connect(
ui->EdgeDectectionButton,SIGNAL(clicked()),
this,SLOT(OnShowCannyEdgeDetectorClicked())
);
//Noise Reduction
connect(
ui->NoiseReductionButton,SIGNAL(clicked()),
this,SLOT(OnShowNoiseReductionClicked())
);
//connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowNoiseReductionClicked())
// );
//Dilation
connect(
ui->DilationpushButton, SIGNAL(clicked()),
this, SLOT(OnShowDilationBinaryClicked())
);
//connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowDilationClicked())
// );
//Erosion
connect(
ui->ErosionpushButton,SIGNAL(clicked()),
this, SLOT(OnShowErosionBinaryClicked())
);
//connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowErosionClicked())
// );
//opening and closing(Morphological operation)
connect(
ui->OpenpushButton,SIGNAL(clicked()),
this,SLOT(OnShowOpeningBinaryClicked())
);
//connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowOpeningClicked())
// );
connect(
ui->ClosingpushButton,SIGNAL(clicked()),
this,SLOT(OnShowClosingBinaryClicked())
);
//connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowClosingClicked())
// );
//Morphological city distance transform
connect(
ui->MorphologicalDistancepushButton,SIGNAL(clicked()),
this,SLOT(OnShowMorphologicalDistanceTransformClicked())
);
//Morphological skeleton
connect(
ui->MorphologicalSkeletonpushButton,SIGNAL(clicked()),
this,SLOT(OnShowMorphologicalSkeletonClicked())
);
//Binary Dilation on grayscale
connect(
ui->DilationGraypushButton,SIGNAL(clicked()),
this,SLOT(OnShowDilationGrayscaleClicked())
);
// connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowDilationGrayscaleClicked())
// );
//Binary Erosion on grayscale
connect(
ui->ErosionGraypushButton,SIGNAL(clicked()),
this,SLOT(OnShowErosionGrayscaleClicked())
);
//connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowErosionGrayscaleClicked())
// );
//Opening on grayscale
connect(
ui->OpenGraypushButton,SIGNAL(clicked()),
this,SLOT(OnShowOpeningGrayscaleClicked())
);
//connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowOpeningGrayscaleClicked())
// );
//Closing on grayscale
connect(
ui->CloseGraypushButton,SIGNAL(clicked()),
this,SLOT(OnShowClosingGrayscaleClicked())
);
//connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowClosingGrayscaleClicked())
// );
//Morphological edge detection
connect(
ui->MorphEdgeDetectionpushButton,SIGNAL(clicked()),
this,SLOT(OnShowMorphologicalEdgeDetectionClicked())
);
//connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowMorphologicalEdgeDetectionClicked())
// );
//Morphological Gradient
connect(
ui->MorphGradientpushButton,SIGNAL(clicked()),
this,SLOT(OnShowMorphologicalGradientClicked())
);
//connect(
// ui->radiusSlider,SIGNAL(valueChanged(int)),
// this,SLOT(OnShowMorphologicalGradientClicked())
// );
//Morphological skeleton restoration
connect(
ui->MorphologicalSkeletonRestorationpushButton,SIGNAL(clicked()),
this,SLOT(OnShowMorphologicalSkeletonRestorationClicked())
);
//Morphological Grayscale Reconstruction
connect(
ui->MorphReconstructionpushButton,SIGNAL(clicked()),
this,SLOT(OnShowMorphologicalGrayscaleReconstructionClicked())
);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::slotExit()
{
qApp->exit();
}