aboutsummaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorjvech <jmvalenciae@unal.edu.co>2023-06-19 13:11:29 -0500
committerjvech <jmvalenciae@unal.edu.co>2023-06-19 13:11:29 -0500
commitd579b5e8bf669918908c894304efd66ee79f179e (patch)
treea2165cbd64f0ab2c5798320e9a581c53293d5113 /src/common.h
parentfd82f4c6257db8bc3753d28c092a62134cd6f629 (diff)
fix: convolution filter fixed
edge filters work
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
new file mode 100644
index 0000000..8c35b6a
--- /dev/null
+++ b/src/common.h
@@ -0,0 +1,8 @@
+#ifndef __COMMON__
+#define __COMMON__
+#include <stdint.h>
+typedef struct Image {
+ uint8_t *data;
+ int32_t width, height, pixel_bits;
+} Image;
+#endif
Feel free to download, copy and edit any repo