tipe/src/mnist/include/preview.h
2022-06-01 21:31:32 +02:00

14 lines
282 B
C

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#ifndef DEF_PREVIEW_H
#define DEF_PREVIEW_H
void print_image(unsigned int width, unsigned int height, int** image);
void preview_images(char* images_file, char* labels_file);
#endif