-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
480 lines (443 loc) · 10.3 KB
/
main.cpp
File metadata and controls
480 lines (443 loc) · 10.3 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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
// FCAI – OOP Programming – 2023 - Assignment 1
// Program Name: main.cpp
// Last Modification Date: xx/xx/xxxx
// Author1 and ID and Group: Mohanad Abdullrahem Abdullrahman 20220348
// Author2 and ID and Group: Ahmed Ehab Shehata Ali 20220012
// Author3 and ID and Group: xxxxx xxxxx
// Teaching Assistant: xxxxx xxxxx
// Purpose:..........
#include <iostream>
#include <fstream>
#include <cstring>
#include <string>
#include <cmath>
#include "bmplib.cpp"
using namespace std;
// the orginal image
unsigned char image[SIZE][SIZE];
// a copy to save the changes without modifing the original
unsigned char filteredImage[SIZE][SIZE];
// the image to use when using the merge filter
unsigned char mergeImage[SIZE][SIZE];
void loadImage();
void saveImage();
void loadMergeImage();
char getTheFilterNameFromUser();
bool applyFilter();
void blackAndWhiteFilter();
void invertFilter();
void mergeFilter();
void flipImage();
void darkenAndLightenImage();
void rotateImage();
void detectImageEdges();
void enlargeImage();
void shrinkImage();
void mirrorImage();
void shuffleImage();
void blurImage();
void cropImage();
void skewImageRight();
void skewImageUp();
int main()
{
bool cont;
cout << "Ahlan ya user ya habibi\n";
loadImage();
do
{
cont = applyFilter();
} while (cont);
}
bool applyFilter()
{
char filter = getTheFilterNameFromUser();
switch (filter)
{
case '1':
blackAndWhiteFilter();
break;
case '2':
invertFilter();
break;
case '3':
loadMergeImage();
mergeFilter();
break;
case '4':
flipImage();
break;
case '5':
rotateImage();
break;
case '6':
darkenAndLightenImage();
break;
case '7':
detectImageEdges();
break;
case '9':
shrinkImage();
break;
case 'a':
mirrorImage();
break;
case 'c':
blurImage();
break;
case 'd':
cropImage();
break;
case 's':
saveImage();
break;
case '0':
return false;
break;
}
return true;
}
char getTheFilterNameFromUser()
{
char filter;
cout << "\n\nPlease select a filter to apply or 0 to exit:\n";
cout << "1- Black & White Filter\n";
cout << "2- Invert Filter\n";
cout << "3- Merge Filter \n";
cout << "4- Flip Image\n";
cout << "5- Rotate Image\n";
cout << "6- Darken and Lighten Image \n";
cout << "7-Detect Image Edges \n";
// cout << "8-Enlarge Image\n";
cout << "9-Shrink Image\n";
cout << "a-Mirror 1/2 Image\n";
// cout << "b-Shuffle Image\n";
cout << "c-Blur Image\n";
cout << "d-Crop Image\n";
// cout << "e-Skew Image Right \n";
// cout << "f-Skew Image Up \n";
cout << "s- Save the image to a file\n";
cout << "0- Exit\n";
cin >> filter;
return filter;
}
// load the original image
void loadImage()
{
char imageFileName[100];
cout << "Please enter file name of the image to process: ";
cin >> imageFileName;
strcat(imageFileName, ".bmp");
readGSBMP(imageFileName, image);
}
// load the second image to merge with the first
void loadMergeImage()
{
char imageFileName[100];
cout << "Please enter file name of the image to merge with: ";
cin >> imageFileName;
strcat(imageFileName, ".bmp");
readGSBMP(imageFileName, mergeImage);
}
// save the filtered image
void saveImage()
{
char imageFileName[100];
cout << "Enter the target image file name: ";
cin >> imageFileName;
strcat(imageFileName, ".bmp");
writeGSBMP(imageFileName, filteredImage);
}
// ##############################
// ######### The Filters ########
// ##############################
void blackAndWhiteFilter()
{
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
if (image[i][j] > 127)
filteredImage[i][j] = 255;
else
filteredImage[i][j] = 0;
}
}
}
void invertFilter()
{
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
// turning evrey pixle to the opposite level of brightness
filteredImage[i][j] = 255 - image[i][j];
}
}
}
void mergeFilter()
{
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
filteredImage[i][j] = (image[i][j] + mergeImage[i][j]) / 2;
}
}
}
void flipImage()
{
int i, j;
char flipType;
cout << "Flip (h)orizontally or (v)ertically ? ";
cin >> flipType;
if (flipType == 'h' || flipType == 'H')
{
for (i = 0; i < SIZE; i++)
{
for (j = 0; j < SIZE; j++)
{
// Flip the image horizontally
filteredImage[i][j] = image[i][SIZE - 1 - j];
}
}
}
else if (flipType == 'v' || flipType == 'V')
{
for (i = 0; i < SIZE; i++)
{
for (j = 0; j < SIZE; j++)
{
// Flip the image vertically
filteredImage[i][j] = image[SIZE - 1 - i][j];
}
}
}
else
{
// Output Error messege to the user
cout << "Invalid flip\n";
}
}
void rotateImage() {}
void darkenAndLightenImage()
{
char c;
cout << "Do you want to (d)arken or (l)ighten? ";
cin >> c;
float factor = c == 'l' ? 1.5 : 0.5;
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
// Make the image lighter or darker by 50%
// and make sure to stay in the range 0-255
filteredImage[i][j] = round(image[i][j] * factor) >= 255 ? 255 : round(image[i][j] * factor);
}
}
}
void detectImageEdges()
{
int i, j;
for (i = 0; i < SIZE; ++i)
{
for (j = 0; j < SIZE; ++j)
{
if (j > 0 && j < SIZE - 1)
{
// Check for possible casess to detect image edges
if (image[i][j - 1] >= 127 && image[i][j] < 127 && image[i][j + 1] >= 127)
{
filteredImage[i][j - 1] = 255;
filteredImage[i][j] = 0;
filteredImage[i][j + 1] = 255;
}
else if (image[i][j - 1] < 127 && image[i][j] < 127 && image[i][j + 1] >= 127)
{
filteredImage[i][j - 1] = 255;
filteredImage[i][j] = 0;
filteredImage[i][j + 1] = 255;
}
else if (image[i][j - 1] >= 127 && image[i][j] < 127 && image[i][j + 1] < 127)
{
filteredImage[i][j - 1] = 255;
filteredImage[i][j] = 0;
filteredImage[i][j + 1] = 255;
}
else if (image[i][j - 1] >= 127 && image[i][j] >= 127 && image[i][j + 1] < 127)
{
filteredImage[i][j - 1] = 255;
filteredImage[i][j] = 255;
filteredImage[i][j + 1] = 0;
}
else
filteredImage[i][j] = 255;
}
if (i > 0 && i < SIZE)
{
if (image[i - 1][j] >= 127 && image[i][j] < 127)
{
filteredImage[i - 1][j] = 255;
filteredImage[i][j] = 0;
}
if (image[i][j] < 127 && image[i][j + 1] >= 127)
{
filteredImage[i][j] = 0;
filteredImage[i + 1][j] = 255;
}
else
filteredImage[i][j] = 255;
}
else
filteredImage[i][j] = 255;
}
}
}
void enlargeImage() {}
void shrinkImage()
{
// make the filtered image white
// so even if i used the shrink filter
// multiple time the images do not overlap
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
filteredImage[i][j] = 255;
}
}
// get the ratio from the user
int factor;
string ratio;
cout << "Shrink to (1/2), (1/3) or (1/4)? ";
cin >> ratio;
factor = ratio[2] - '0';
for (int i = 0, k = 0; i < SIZE; i += factor, k++)
{
for (int j = 0, l = 0; j < SIZE; j += factor, l++)
{
int sum = 0;
for (int m = i; m < i + factor; m++)
{
for (int n = j; n < j + factor; n++)
{
sum += image[m][n];
}
}
filteredImage[k][l] = sum / (factor * factor);
}
}
}
void mirrorImage()
{
int i, j;
char mirrorSide;
const int SIZE_HALF = SIZE / 2;
cout << "Mirror (l)eft, (r)ight, (u)pper, (d)own side? ";
cin >> mirrorSide;
// Check for mirror side
if (mirrorSide == 'l' || mirrorSide == 'L')
{
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
if (j < SIZE_HALF)
filteredImage[i][j] = image[i][j];
else
// Store the horizontal flip of the first half of image in first half of filtered image
filteredImage[i][j] = image[i][SIZE - 1 - j];
}
}
}
else if (mirrorSide == 'r' || mirrorSide == 'R')
{
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
if (j < SIZE_HALF)
// Store the horizontal flip of the second half of image in first half of filtered image
filteredImage[i][j] = image[i][SIZE - 1 - j];
else
filteredImage[i][j] = image[i][j];
}
}
}
else if (mirrorSide == 'u' || mirrorSide == 'U')
{
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
if (i < SIZE_HALF)
filteredImage[i][j] = image[i][j];
else
// Store the vertical flip of the first half of image in second half of filtered image
filteredImage[i][j] = image[SIZE - 1 - i][j];
}
}
}
else if (mirrorSide == 'd' || mirrorSide == 'D')
{
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
if (i < SIZE_HALF)
// Store the vertical flip of the second half of image in first half of filtered image
filteredImage[i][j] = image[SIZE - 1 - i][j];
else
filteredImage[i][j] = image[i][j];
}
}
}
else
// Output Error messege to the user
cout << "Invalid side\n";
}
void shuffleImage() {}
void blurImage()
{
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
int sum = 0;
for (int k = i - 1; k < i + 2; k++)
{
for (int l = j - 1; l < j + 2; l++)
{
if (k < 0 || l < 0 || k > 255 || l > 255)
{
continue;
}
sum += image[k][l];
}
}
filteredImage[i][j] = sum / 9;
}
}
}
void cropImage()
{
int x, y, len, width, i, j;
cout << "Please enter x y l w: ";
cin >> x >> y >> len >> width;
for (i = 0; i < SIZE; i++)
{
for (j = 0; j < SIZE; j++)
// Make the filtered image white
filteredImage[i][j] = 255;
}
for (i = y; i < len + y; i++)
{
for (j = x; j < width + x; j++)
{
// Keep the required rectangle or square of the image
filteredImage[i][j] = image[i][j];
}
}
}
void skewImageRight() {}
void skewImageUp() {}