This commit is contained in:
lecointre
2025-11-30 15:13:09 +01:00
parent c3f8f064ec
commit 7da24e557e
14 changed files with 9 additions and 897 deletions
-24
View File
@@ -1,24 +0,0 @@
#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