-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctions.h
More file actions
43 lines (40 loc) · 1.1 KB
/
Copy pathFunctions.h
File metadata and controls
43 lines (40 loc) · 1.1 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
//FCAI - OOP Programming - 2023 - Assignment 1
//Program Name: main.cpp
//Last Modification Date: 10/5/2023
//Purpose: Using a bitmap library to convert an image into an array in order to apply some filters on it
//version 1.0 grayscale
//Fatma Mahmoud Atta 20220510
//Shahd Mohammed Ahmed 20220533
//Reham Fawzy 20220141
//fatmamaali@gmail.com
//shahdelnassag@gmail.com
//fwrymw@gmail.com
#ifndef IMAGE_PROCESSING_FUNCTIONS_H
#define IMAGE_PROCESSING_FUNCTIONS_H
void displayChoices();
void initChoice(char choice);
void loadImage();
void saveImage();
void ToImage(unsigned char arr[SIZE][SIZE]);
void WhiteBackground(unsigned char arr[SIZE][SIZE]);
void Transpose();
void Divide4();
void BlackWhite();
void InvertImage();
void MergeImage();
void FlipImageVertically();
void FlipImageHorizontally();
void Darken();
void Lighten();
void Rotate270();
void RotateImage(int degree);
void detectImageEdges();
void EnlargeImage(int degree);
void Shrink(int sh);
void mirrorImage();
void ShuffleImage();
void blurImage();
void cropImage();
void skewHorizontally();
void skewVertically();
#endif //IMAGE_PROCESSING_FUNCTIONS_H