• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-831664

testsuite/H03-May-2022-214176

AUTHORSH A D02-Oct-2014209 74

COPYINGH A D15-Jun-201417.6 KiB339280

ChangeLogH A D10-Jan-20198.8 KiB242189

INSTALLH A D10-Jan-20191.9 KiB6545

Makefile.inH A D03-May-20226.4 KiB175140

NEWSH A D10-Jan-2019308 127

READMEH A D10-Jan-20192.1 KiB5844

arg_parser.ccH A D31-Dec-20185.7 KiB197150

arg_parser.hH A D31-Dec-20183.5 KiB9942

bitmap.ccH A D10-Jan-201912.9 KiB476363

bitmap.hH A D10-Jan-20192.6 KiB6943

blob.ccH A D10-Jan-20198.3 KiB300220

blob.hH A D10-Jan-20191.9 KiB6134

character.ccH A D10-Jan-201912.1 KiB424334

character.hH A D10-Jan-20193.3 KiB9157

character_r11.ccH A D10-Jan-201914.2 KiB409349

character_r12.ccH A D10-Jan-20199.4 KiB257225

character_r13.ccH A D10-Jan-20192.3 KiB7550

common.ccH A D10-Jan-20195.9 KiB212159

common.hH A D10-Jan-20192.6 KiB9961

configureH A D10-Jan-20196.3 KiB211173

feats.ccH A D10-Jan-201910.8 KiB316269

feats.hH A D10-Jan-20192.8 KiB7745

feats_test0.ccH A D10-Jan-201933.2 KiB919827

feats_test1.ccH A D10-Jan-20198.7 KiB248207

histogram.hH A D10-Jan-20191.6 KiB5129

iso_8859.ccH A D10-Jan-20192.6 KiB9365

iso_8859.hH A D10-Jan-20191.2 KiB326

main.ccH A D10-Jan-201916.1 KiB442375

mask.ccH A D10-Jan-20193.8 KiB142101

mask.hH A D10-Jan-20191.8 KiB5226

ocradcheck.ccH A D10-Jan-20193.4 KiB12194

ocradlib.ccH A D10-Jan-20198.3 KiB285226

ocradlib.hH A D10-Jan-20193.5 KiB10248

page_image.ccH A D10-Jan-201919.8 KiB608511

page_image.hH A D10-Jan-20192.9 KiB8755

page_image_io.ccH A D10-Jan-20199.7 KiB324260

profile.ccH A D10-Jan-201918.5 KiB648546

profile.hH A D10-Jan-20192.1 KiB7145

rational.ccH A D31-Dec-20187 KiB261186

rational.hH A D31-Dec-20186.7 KiB151100

rectangle.ccH A D10-Jan-20197.4 KiB293201

rectangle.hH A D10-Jan-20193.3 KiB8257

segment.ccH A D10-Jan-20191.6 KiB6134

segment.hH A D10-Jan-20191.6 KiB4118

textblock.ccH A D10-Jan-201917.9 KiB534442

textblock.hH A D10-Jan-20191.6 KiB4320

textline.ccH A D10-Jan-201911.2 KiB422330

textline.hH A D10-Jan-20192.4 KiB7144

textline_r2.ccH A D10-Jan-201930.1 KiB835732

textpage.ccH A D10-Jan-201916.6 KiB551465

textpage.hH A D10-Jan-20191.4 KiB4118

track.ccH A D10-Jan-20199.5 KiB337227

track.hH A D10-Jan-20192.6 KiB7442

ucs.ccH A D10-Jan-201911.8 KiB452389

ucs.hH A D10-Jan-20196.7 KiB138117

user_filter.ccH A D10-Jan-20197.7 KiB264215

user_filter.hH A D10-Jan-20191.7 KiB5027

README

1Description
2
3GNU Ocrad is an OCR (Optical Character Recognition) program and library
4based on a feature extraction method. It reads images in pbm (bitmap),
5pgm (greyscale) or ppm (color) formats and produces text in byte (8-bit)
6or UTF-8 formats. The pbm, pgm and ppm formats are collectively known as
7pnm.
8
9Ocrad includes a layout analyser able to separate the columns or blocks
10of text normally found on printed pages.
11
12For best results the characters should be at least 20 pixels high. If
13they are smaller, try the --scale option. Scanning the image at 300 dpi
14usually produces a character size good enough for ocrad.
15
16See the file INSTALL for compilation and installation instructions.
17
18Try "ocrad --help" for usage instructions.
19
20Caveats.
21Merged characters are always a problem. Try to avoid them.
22Very bold or very light (broken) characters are also a problem.
23Always see with your own eyes the pnm file before blaming ocrad for the
24results. Remember the saying, "garbage in, garbage out".
25
26Ideas, comments, patches, donations (hardware, money, etc), etc, are welcome.
27
28---------------------------
29
30Debug levels ( option -D )
31100 - Show raw block list.
32 99 - Show recursive block list.
33 98 - Show main block list.
34 96..97 - reserved.
35 95 - Show all blocks from every character before recognition.
36 94 - Show main black blocks from every character before recognition.
37 90..93 - reserved.
38 89 - Show all blocks from every character.
39 88 - Show main black blocks from every character.
40 87 - Show guess list for every character.
41 86 - Show best guess for every character.
42 80..85 - reserved.
43 78..79 - reserved.
44 7X - X = 0 Show page as bitmap.
45      X = 1 Show page as bitmap with marked zones.
46      X = 2 Show page as bitmap with marked lines.
47      X = 4 Show page as bitmap with marked characters.
48
49
50Copyright (C) 2003-2019 Antonio Diaz Diaz.
51
52This file is free documentation: you have unlimited permission to copy,
53distribute and modify it.
54
55The file Makefile.in is a data file used by configure to produce the
56Makefile. It has the same copyright owner and permissions that configure
57itself.
58