mirror of
https://github.com/augustin64/projet-tipe
synced 2025-02-02 19:39:39 +01:00
Update comments of preview
This commit is contained in:
parent
4afe376353
commit
a352c02a07
@ -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
|
||||
|
||||
|
@ -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'};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user