Fixed Image.c & image.h
This commit is contained in:
parent
2ce9336727
commit
2e01424422
2 changed files with 30 additions and 8 deletions
10
image.h
10
image.h
|
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
typedef struct {
|
||||
Matrix* pixel_values;
|
||||
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);
|
||||
Reference in a new issue