11 lines
No EOL
263 B
C
11 lines
No EOL
263 B
C
#pragma once
|
|
#include "matrix.h"
|
|
|
|
typedef struct {
|
|
Matrix* pixel_values;
|
|
int image_label;
|
|
} Image;
|
|
|
|
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); |