This commit is contained in:
Thomas Schleicher 2023-09-19 11:11:44 +02:00
parent 9d150c04c5
commit f98bb5cbaa
4 changed files with 26 additions and 7 deletions

View file

@ -5,6 +5,6 @@ typedef struct {
int image_label;
} Image;
Img** import_images(char* image_file_string, char* label_file_string, int number_of_images);
void img_print (Img* img);
void img_free (Img* img);
Image** import_images(char* image_file_string, char* label_file_string, int number_of_images);
void img_print (Image* image);
void img_free (Image* image);