Files
OCR/ImageTreatment/extraction/extraction.h
brice.boisson eaa4da6ade OCR project
2022-02-08 19:16:25 +01:00

16 lines
572 B
C

#ifndef _EXTRACTION_H
#define _EXTRACTION_H
#include "../../NeuralNetwork/structure.h"
#include "../Segmentation/segmentation.h"
void extractpar(SDL_Surface *img, int x, int y, Neural_Network *network,
char *str);
int countlinepar(SDL_Surface *img);
void ReturnPosPar(SDL_Surface *img, int *tab);
void __extractpar(SDL_Surface *img, Neural_Network *network, char *str);
void __extractline(SDL_Surface *img, Neural_Network *network, char *str);
void extractline(SDL_Surface *img, int x, int y, Neural_Network *network,
char *str);
#endif