We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27f1d6b commit 0d07681Copy full SHA for 0d07681
helpers.c
@@ -0,0 +1,29 @@
1
+#include "helper.h"
2
+
3
4
+void grayscale(int height, int width, RGBTRIPLE image[height][width]){
5
6
+// Convert image to grayscale
7
8
+}
9
10
11
+void sepia(int height, int width, RGBTRIPLE image[height][width]){
12
13
+// Convert image to sepia
14
15
16
17
18
+void reflect(int height, int width, RGBTRIPLE image[height][width]){
19
20
+// Reflect image horizontally
21
22
23
24
25
+void blur(int height, int width, RGBTRIPLE image[height][width]){
26
27
+// Blur image
28
29
0 commit comments