Update comments of preview

This commit is contained in:
Julien Chemillier 2022-06-30 10:27:09 +02:00
parent 4afe376353
commit a352c02a07
2 changed files with 9 additions and 2 deletions

View File

@ -6,9 +6,18 @@
#ifndef DEF_PREVIEW_H
#define DEF_PREVIEW_H
/*
* Affiche un chiffre de taille width x height
*/
void print_image(unsigned int width, unsigned int height, int** image);
/*
* Prévisualise un chiffre écrit à la main
*/
void preview_images(char* images_file, char* labels_file);
int main(int argc, char *argv[]);
#endif

View File

@ -7,8 +7,6 @@
#include "include/preview.h"
// Prévisualise un chiffre écrit à la main
// de taille width x height
void print_image(unsigned int width, unsigned int height, int** image) {
char tab[] = {' ', '.', ':', '%', '#', '\0'};