Fixed Image.c & image.h

This commit is contained in:
Thomas Schleicher 2023-09-19 10:31:23 +02:00
parent 2ce9336727
commit 2e01424422
2 changed files with 30 additions and 8 deletions

10
image.h
View file

@ -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);