mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-18 11:28:51 +08:00
425d593ebe
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk/trunk@2 d0cd1f9f-072b-0410-8dd7-cf729c803f20
36 lines
862 B
C
36 lines
862 B
C
#ifndef TFACE_H
|
|
#define TFACE_H
|
|
|
|
#include "host.h"
|
|
#include "choicearr.h"
|
|
#include "tessclas.h"
|
|
#include "cutil.h"
|
|
|
|
/*----------------------------------------------------------------------------
|
|
Function Prototypes
|
|
----------------------------------------------------------------------------*/
|
|
int start_recog(const char *configfile, const char *imagebase);
|
|
|
|
void program_editup(const char *configfile);
|
|
|
|
void program_editup2(const char *imagebase);
|
|
|
|
void edit_with_ocr(const char *imagename);
|
|
|
|
int end_recog();
|
|
|
|
void program_editdown(INT32 elasped_time);
|
|
|
|
void set_pass1();
|
|
|
|
void set_pass2();
|
|
|
|
CHOICES_LIST cc_recog(TWERD *tessword,
|
|
A_CHOICE *best_choice,
|
|
A_CHOICE *best_raw_choice,
|
|
BOOL8 tester,
|
|
BOOL8 trainer);
|
|
|
|
int dict_word(const char *word);
|
|
#endif
|