1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
/* GNU Ocrad - Optical Character Recognition program
Copyright (C) 2003, 2004, 2005, 2006 Antonio Diaz Diaz.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
namespace Ocrad {
extern bool verbose;
void internal_error( const char * msg ) throw() __attribute__ ((noreturn));
bool similar( int a, int b, int percent_dif, int abs_dif = 1 ) throw();
} // end namespace Ocrad
class Charset
{
int _charset;
public:
enum Value { ascii = 1, iso_8859_9 = 2, iso_8859_15 = 4 };
Charset() throw() : _charset( 0 ) {}
bool enable( const char * name ) throw();
bool enabled( Value cset ) const throw();
bool only( Value cset ) const throw();
void show_error( const char * program_name, const char * arg ) const throw();
};
class Filter
{
public:
enum Type { none, letters, letters_only, numbers, numbers_only };
private:
Type _type;
public:
Filter() throw() : _type( none ) {}
bool set( const char * name ) throw();
Type type() const throw() { return _type; }
void show_error( const char * program_name, const char * arg ) const throw();
};
class Transformation
{
public:
enum Type { none, rotate90, rotate180, rotate270,
mirror_lr, mirror_tb, mirror_d1, mirror_d2 };
private:
Type _type;
public:
Transformation() throw() : _type( none ) {}
bool set( const char * name ) throw();
Type type() const throw() { return _type; }
void show_error( const char * program_name, const char * arg ) const throw();
};
struct Control
{
enum Format { byte, utf8 };
Charset charset;
Filter filter;
Format format;
FILE *outfile, *exportfile;
int debug_level;
char filetype;
Control() throw()
: format( byte ), outfile( stdout ), exportfile( 0 ),
debug_level( 0 ), filetype( '4' ) {}
bool set_format( const char * name ) throw();
};
|