forked from my3rs/ImageQt
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhistogram.cpp
More file actions
executable file
·408 lines (290 loc) · 10.7 KB
/
histogram.cpp
File metadata and controls
executable file
·408 lines (290 loc) · 10.7 KB
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
#include "histogram.h"
#include <sstream>
#include <iostream>
Histogram::Histogram(QWidget * parent) : QLabel(parent)
{
for(int i = 0;i<256;i++)
{
bwHstgrm[i] = 0;
redHstgrm[i] = 0;
greenHstgrm[i] = 0;
blueHstgrm[i] = 0;
}
bwHstgrm[256] = -1;
redHstgrm[256] = -1;
greenHstgrm[256] = -1;
blueHstgrm[256] = -1;
redHstgrm[257] = 0;
greenHstgrm[257] = 0;
blueHstgrm[257] = 0;
bwHstgrm[257] = 0;
bwHstgrm[258] = 0;
}
Histogram::Histogram(QWidget * parent, Histogram * hstgrm) : QLabel(parent)
{
for(int i = 0;i<258;i++)
{
bwHstgrm[i] = hstgrm->bwHstgrm[i];
redHstgrm[i] = hstgrm->redHstgrm[i];
greenHstgrm[i] = hstgrm->greenHstgrm[i];
blueHstgrm[i] = hstgrm->blueHstgrm[i];
}
bwHstgrm[258] = hstgrm->bwHstgrm[258];
}
void Histogram::computeHstgrm(QImage img)
{
if (!img.isNull())
{
for(int i = 0;i<img.height();i++)
{
for(int j = 0;j<img.width();j++)
{
int bwValue = qGray(img.pixel(j, i));
int redValue = qRed(img.pixel(j, i));
int greenValue = qGreen(img.pixel(j, i));
int blueValue = qBlue(img.pixel(j, i));
bwHstgrm[bwValue]++;
redHstgrm[redValue]++;
greenHstgrm[greenValue]++;
blueHstgrm[blueValue]++;
}
}
for(int i = 0;i<256;i++)
{
// maximum values
if (bwHstgrm[256] < bwHstgrm[i])
bwHstgrm[256] = bwHstgrm[i];
if (redHstgrm[256] < redHstgrm[i])
redHstgrm[256] = redHstgrm[i];
if (greenHstgrm[256] < greenHstgrm[i])
greenHstgrm[256] = greenHstgrm[i];
if (blueHstgrm[256] < blueHstgrm[i])
blueHstgrm[256] = blueHstgrm[i];
// values of colour components
redHstgrm[257] += i*redHstgrm[i];
greenHstgrm[257] += i*greenHstgrm[i];
blueHstgrm[257] += i*blueHstgrm[i];
// values of dark and light component
if (i <= 127)
bwHstgrm[257] += (127-i)*bwHstgrm[i];
else
bwHstgrm[258] += (i-127)*bwHstgrm[i];
}
}
}
void Histogram::paintEvent(QPaintEvent * event)
{
Q_UNUSED(event);
int step = 100; // distance between histograms
int height = 255+10; // histograms height
int xBase = 99; // x coordinate of the first histogram origin
int yBase = 30+height+1; // y coordinate of the first histogram origin
QPainter painter(this);
painter.setPen(Qt::black);
// 显示在第一行
// bw hstgrm
if (bwHstgrm[256] != -1)
drawBwHstgrm(xBase, yBase, height);
else
painter.drawText(xBase, yBase-height/2+5, tr("Can't load the gray levels histogram."));
// red hstgrm
if (redHstgrm[256] != -1)
drawRedHstgrm(xBase+step+height, yBase, height);
else
painter.drawText(xBase+step+height+1-height/2+5, yBase, tr("Can't load the red component histogram."));
// 显示在第二行
// green hstgrm
if (greenHstgrm[256] != -1)
drawGreenHstgrm(xBase, yBase+step+height+1, height);
else
painter.drawText(xBase, yBase+(step+height+1), tr("Can't load the green component histogram."));
// blue hstgrm
if (blueHstgrm[256] != -1)
drawBlueHstgrm(xBase+step+height, yBase+step+height+1, height);
else
painter.drawText(xBase+step+height, yBase+step+height+1, tr("Can't load the blue component histogram."));
}
void Histogram::drawBwHstgrm(int xBase, int yBase, int height)
{
QPainter painter(this);
painter.setPen(Qt::darkGray);
float max = bwHstgrm[256];
if (max < redHstgrm[256])
max = redHstgrm[256];
if (max < greenHstgrm[256])
max = greenHstgrm[256];
if (max < blueHstgrm[256])
max = blueHstgrm[256];
// drawing the histogram
for(int i = 0;i<256;i++)
{
painter.drawLine(xBase+1+i, yBase, xBase+1+i,
yBase-(float)(256./max)*(float)bwHstgrm[i]);
}
painter.drawText(xBase, yBase+25, tr("black"));
painter.drawText(xBase+220, yBase+25, tr("white"));
painter.setPen(Qt::black);
painter.drawText(xBase+40, yBase-height-10, tr("GRAY LEVELS HISTOGRAM"));
painter.drawText(xBase+100, yBase+15, tr("Intensity"));
painter.drawText(xBase-84, yBase-height/2+5, tr("Pixels count"));
// abscissa
painter.drawLine(xBase, yBase, xBase+256+1, yBase);
painter.drawLine(xBase, yBase+1, xBase+256+1, yBase+1);
// left ordinate
painter.drawLine(xBase, yBase, xBase, yBase-height);
painter.drawLine(xBase-1, yBase, xBase-1, yBase-height);
// right ordinate
painter.drawLine(xBase+256+1, yBase, xBase+256+1, yBase-height);
painter.drawLine(xBase+256+2, yBase, xBase+256+2, yBase-height);
// left ordinate arrow
painter.drawLine(xBase, yBase-height, xBase+4, yBase-height+7);
painter.drawLine(xBase-1, yBase-height, xBase-1-4, yBase-height+7);
// right ordinate arrow
painter.drawLine(xBase+256+1, yBase-height, xBase+256+1-4, yBase-height+7);
painter.drawLine(xBase+256+2, yBase-height, xBase+256+2+4, yBase-height+7);
}
void Histogram::drawRedHstgrm(int xBase, int yBase, int height)
{
QPainter painter(this);
painter.setPen(Qt::darkRed);
float max = bwHstgrm[256];
if (max < redHstgrm[256])
max = redHstgrm[256];
if (max < greenHstgrm[256])
max = greenHstgrm[256];
if (max < blueHstgrm[256])
max = blueHstgrm[256];
// drawing the histogram
for(int i = 0;i<256;i++)
{
painter.drawLine(xBase+1+i, yBase, xBase+1+i,
yBase-(float)(256./max)*(float)redHstgrm[i]);
}
painter.drawText(xBase, yBase+25, tr("dark"));
painter.drawText(xBase+225, yBase+25, tr("light"));
painter.setPen(Qt::black);
painter.drawText(xBase+25, yBase-height-10, tr("RED COMPONENT HISTOGRAM"));
painter.drawText(xBase+100, yBase+15, tr("Intensity"));
painter.drawText(xBase-84, yBase-height/2+5, tr("Pixels count"));
// abscissa
painter.drawLine(xBase, yBase, xBase+256+1, yBase);
painter.drawLine(xBase, yBase+1, xBase+256+1, yBase+1);
// left ordinate
painter.drawLine(xBase, yBase, xBase, yBase-height);
painter.drawLine(xBase-1, yBase, xBase-1, yBase-height);
// right ordinate
painter.drawLine(xBase+256+1, yBase, xBase+256+1, yBase-height);
painter.drawLine(xBase+256+2, yBase, xBase+256+2, yBase-height);
// left ordinate arrow
painter.drawLine(xBase, yBase-height, xBase+4, yBase-height+7);
painter.drawLine(xBase-1, yBase-height, xBase-1-4, yBase-height+7);
// right ordinate arrow
painter.drawLine(xBase+256+1, yBase-height, xBase+256+1-4, yBase-height+7);
painter.drawLine(xBase+256+2, yBase-height, xBase+256+2+4, yBase-height+7);
}
void Histogram::drawGreenHstgrm(int xBase, int yBase, int height)
{
QPainter painter(this);
painter.setPen(Qt::darkGreen);
float max = bwHstgrm[256];
if (max < redHstgrm[256])
max = redHstgrm[256];
if (max < greenHstgrm[256])
max = greenHstgrm[256];
if (max < blueHstgrm[256])
max = blueHstgrm[256];
// drawing the histogram
for(int i = 0;i<256;i++)
{
painter.drawLine(xBase+1+i, yBase, xBase+1+i,
yBase-(float)(256./max)*(float)greenHstgrm[i]);
}
painter.drawText(xBase, yBase+25, tr("dark"));
painter.drawText(xBase+225, yBase+25, tr("light"));
painter.setPen(Qt::black);
painter.drawText(xBase+15, yBase-height-10, tr("GREEN COMPONENT HISTOGRAM"));
painter.drawText(xBase+100, yBase+15, tr("Intensity"));
painter.drawText(xBase-84, yBase-height/2+5, tr("Pixels count"));
// abscissa
painter.drawLine(xBase, yBase, xBase+256+1, yBase);
painter.drawLine(xBase, yBase+1, xBase+256+1, yBase+1);
// left ordinate
painter.drawLine(xBase, yBase, xBase, yBase-height);
painter.drawLine(xBase-1, yBase, xBase-1, yBase-height);
// right ordinate
painter.drawLine(xBase+256+1, yBase, xBase+256+1, yBase-height);
painter.drawLine(xBase+256+2, yBase, xBase+256+2, yBase-height);
// left ordinate arrow
painter.drawLine(xBase, yBase-height, xBase+4, yBase-height+7);
painter.drawLine(xBase-1, yBase-height, xBase-1-4, yBase-height+7);
// right ordinate arrow
painter.drawLine(xBase+256+1, yBase-height, xBase+256+1-4, yBase-height+7);
painter.drawLine(xBase+256+2, yBase-height, xBase+256+2+4, yBase-height+7);
}
void Histogram::drawBlueHstgrm(int xBase, int yBase, int height)
{
QPainter painter(this);
painter.setPen(Qt::darkBlue);
float max = bwHstgrm[256];
if (max < redHstgrm[256])
max = redHstgrm[256];
if (max < greenHstgrm[256])
max = greenHstgrm[256];
if (max < blueHstgrm[256])
max = blueHstgrm[256];
// drawing the histogram
for(int i = 0;i<256;i++)
{
painter.drawLine(xBase+1+i, yBase, xBase+1+i,
yBase-(float)(256./max)*(float)blueHstgrm[i]);
}
painter.drawText(xBase, yBase+25, tr("dark"));
painter.drawText(xBase+225, yBase+25, tr("light"));
painter.setPen(Qt::black);
painter.drawText(xBase+20, yBase-height-10, tr("BLUE COMPONENT HISTOGRAM"));
painter.drawText(xBase+100, yBase+15, tr("Intensity"));
painter.drawText(xBase-84, yBase-height/2+5, tr("Pixels count"));
// abscissa
painter.drawLine(xBase, yBase, xBase+256+1, yBase);
painter.drawLine(xBase, yBase+1, xBase+256+1, yBase+1);
// left ordinate
painter.drawLine(xBase, yBase, xBase, yBase-height);
painter.drawLine(xBase-1, yBase, xBase-1, yBase-height);
// right ordinate
painter.drawLine(xBase+256+1, yBase, xBase+256+1, yBase-height);
painter.drawLine(xBase+256+2, yBase, xBase+256+2, yBase-height);
// left ordinate arrow
painter.drawLine(xBase, yBase-height, xBase+4, yBase-height+7);
painter.drawLine(xBase-1, yBase-height, xBase-1-4, yBase-height+7);
// right ordinate arrow
painter.drawLine(xBase+256+1, yBase-height, xBase+256+1-4, yBase-height+7);
painter.drawLine(xBase+256+2, yBase-height, xBase+256+2+4, yBase-height+7);
}
int Histogram::getBwHstgrm(int index)
{
if (index >= 0 && index <= 258)
return bwHstgrm[index];
else
return -2;
}
int Histogram::getRedHstgrm(int index)
{
if (index >= 0 && index <= 257)
return redHstgrm[index];
else
return -2;
}
int Histogram::getGreenHstgrm(int index)
{
if (index >= 0 && index <= 257)
return greenHstgrm[index];
else
return -2;
}
int Histogram::getBlueHstgrm(int index)
{
if (index >= 0 && index <= 257)
return blueHstgrm[index];
else
return -2;
}