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 8f04bcc commit 27f1d6bCopy full SHA for 27f1d6b
helpers.h
@@ -0,0 +1,13 @@
1
+#include "bmp.h"
2
+
3
+// Convert image to grayscale
4
+void grayscale(int height, int width, RGBTRIPLE image[height][width]);
5
6
+// Convert image to sepia
7
+void sepia(int height, int width, RGBTRIPLE image[height][width]);
8
9
+// Reflect image horizontally
10
+void reflect(int height, int width, RGBTRIPLE image[height][width]);
11
12
+// Blur image
13
+void blur(int height, int width, RGBTRIPLE image[height][width]);
0 commit comments