Début de la saeé

This commit is contained in:
lecointre
2025-11-25 13:12:45 +01:00
parent e9addbb184
commit 553532c887
15 changed files with 873 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef IMAGES_H
#define IMAGES_H
typedef struct {
/* dépend de la bibliothèque de l’IUT */
int width;
int height;
void* data;
} Image;
Image load_image(const char* path);
void slice_image_into_tiles(const Image img, int rows, int cols);
#endif