Changes
This commit is contained in:
parent
9d150c04c5
commit
f98bb5cbaa
4 changed files with 26 additions and 7 deletions
6
image.h
6
image.h
|
|
@ -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);
|
||||
Reference in a new issue