AminetAminet
Search:
84479 packages online
About
Recent
Browse
Search
Upload
Setup
Services

gfx/misc/gocr040-mos.lha

Mirror:Random
Showing:m68k-amigaosppc-amigaosppc-morphosi386-arosi386-amithlonppc-warpupppc-powerupgeneric
No screenshot available
Short:Optical character recognition program
Author:Joerg Schulenburg <jNOschulen{at}gmx.SPAM.de>, Morphos port by Fabrizio "Lanch" Bartoloni
Uploader:lanch tiscali it (Fabrizio Bartoloni)
Type:gfx/misc
Version:0.4.0
Architecture:ppc-morphos
Date:2005-08-10
Download:http://aminet.net/gfx/misc/gocr040-mos.lha - View contents
Readme:http://aminet.net/gfx/misc/gocr040-mos.readme
Downloads:701

Note from porting author: the program works, the problem is that it doesn't give
back control
 to the shell and keeps files locked meanwhile, otherwise all my tests proved
successful.
More skilled programmers are welcome to provide a fix or any solution.


			 GOCR (JOCR at SF.net)

GOCR is an optical character recognition program, released under the
GNU General Public License. It reads images in many formats  and outputs
a text file. Possible image formats are pnm, pbm, pgm, ppm, some pcx and
tga image files. Other formats like pnm.gz, pnm.bz2, png, jpg, tiff, gif,
bmp will be automatically converted using the netpbm-progs, gzip and bzip2
via unix pipe.
A simple graphical frontend written in tcl/tk and some
sample files (you need transfig for the sample files) are included.
Gocr is also able to recognize and translate barcodes.
You do not have to train the program or store large font bases.
Simply call gocr from the command line and get your results.

To see installation instructions, see the INSTALL file.

How to start? (QUICK START)
---------------------------
You'll probably want to use one of the frontends available, such as the TCL/TK
or the GTK. They make your life much easier.

Some examples of how you can use gocr:

  gocr -h       			# help
  gocr file.pbm				# minimum options
  gocr -v 1 file.pbm >out.txt 2>out.log # generate text- and log file
  djpeg -pnm -gray text.jpg | gocr -	# using JPEG-files
  gzip -cd text.pbm.gz | gocr -		# using gzipped PBM-files
  giftopnm text.gif | gocr -		# using GIF-files
  gocr -v 1 -v 32 -m 4 file.pbm   	# zoning and out30.bmp output
  xli -geometry 400x400 out30.bmp # see details using xli (recommanded viewer)
  wish gocr.tcl			  # X11-tcl/tk-frontend (development version)


How to get image files?
-----------------------
Scan text pages and save it as PGM/PBM/PNM file. Use a program such as
The GIMP or Sane. You can also use netpbm-progs to convert several image 
formats into PGM/PBM/PNM. The tool djpeg can be used to convert jpeg into pgm.
If you have a POSIX compatible system like linux and PNM-tools, gzip and bzip2
are installed, you are lucky and gocr will do conversion 
from [.pnm.gz, .pnm.bz2, .jpg, .jpeg, .bmp, .tiff, .png, .ps, .eps]
to [.pgm] for you. This list can easily be extended editing src/pnm.c.

Gocr also comes with some examples, try: make examples.

Memory limitations
------------------
WARNING!!!

If you use a 300dpi scan of A4 letter, the image is about 2500x3500 pixels and
gocr requires 8.75MB for storing the picture into the memory. Not only that,
but gocr may create a 2nd copy, using a total of 17MB. This is independent
of using b/w or gray-scale images. Be sure that you have enough RAM installed
in your machine! Alternatively you can cut the picture into small pieces.
You can use the pnmcut, from the netpbm package to cut the file. Example:

pnmcut -left 0 -right 2500 -top 0 -height 1000 bigfile.pnm > smallfile.pnm

And then use gocr in the cropped image as usual. Take care: if you chopp the
characters, gocr won't be able to understand that line.

Future versions will take care of this issue automatically.

Limitations
-----------
gocr is still in its early stages. Your images should fit in these requirements
if you want a good output:

- good scans (all chars well seperated, one column, no tables etc, 12pt 300dpi)
  should work well
- fonts 20-60 pixels ( 5pt * 1in/72pt * 300 dpi = 20 dots )
- output of image file for controlling detection

And note that speed is very slow (this will be changed when recognition works 
well)
  12pt 300dpi 1700x950 16lines 700chars 22x28 P90=40s..90s v0.2.3 (gcc -O0)

You can try to optimize the results:
- make good scans/treat image
- try to change the critical gray level (option -l <n>)
- control the result on out30.bmp (option -v 32)
- enlarge option -d <n> for high resolution images which are noisy
- try different combinations for option -m <n>
- for thousends of documents with same font
  you can use/create a database (-m 2/-m 130)
- use options -d 0 -m 8 on screen shots (font8x12)

What does >> NOT << work at the moment:
- complex layouts (try option -m 4)
- bad scans, noisy/snowy images, FAX-quality images
- serif fonts, italic fonts, slanted fonts
- handwritten texts (this is valid for the next ten years I guess)
   the exisctence of autotrace can shorten this 
- rotated images (but slightly rotated images should be no problem)
- small fonts (fax like) or mix of different font size
- colored images (use gray or black/white)
- Chinese, Arabian, Egyptian, Cyrillic or Klingon fonts

How it works or how it should work?
- put the entire file into RAM (300dpi grayscale recommended)
- remove dust and snow
- detect small angle (lines which are not horizontal)
- detect text boxes (option -m 4)
- detect text-lines
- detect characters
- first step recognition (every character has its own empirical procedure)
  - no neural network or similar general algorithms
- analyze not detected chars by comparison with detected ones
- try to divide overlapping chars
- testwise: compare all letters (like compression of pictures)
- for more details look to the gocr.html documentation


How can you help gocr?
----------------------
- Send comments, ideas and patches (diff -ru gocr_original/ gocr_changed/).
- If you have a lot of money, spend a bit (www.paypal.com).
- I always need example files (.pbm.gz or jpeg <100kB) for testing
  the behavior of the ocr engine under different conditions, 
  because scanning does take a lot of time which I do not have.
  But do not send files which are not convertable by commercial ocr programs
  or which are protected from copying and electronic processing by copyright.
  That will help, to get the world's best OCR open source program. :) Thanks!
- Send me your results (errors,num_chars,dpi) and if possible results
  and name of professional OCR programs for statistics.
- Read OCR literature, extract the essentials and send a short report
  to me ;).
- If you have a good idea, how to manage some OCR-tasks, tell me!
- Tell your friends about gocr. Tell me about your success. Be happy.


After all, is it gocr or jocr?
------------------------------
The original name of this project is gocr, from GNU Optical Character
Recognition. Another project is using the same name, however; so the
name was changed to jocr. If you have a good idea for a name, please
send it.


Latest news
------------
  http://jocr.sourceforge.net

Authors: (see AUTHORS)


Contents of gfx/misc/gocr040-mos.lha
 PERMSSN    UID  GID    PACKED    SIZE  RATIO     CRC       STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
[generic]                  119     178  66.9% -lh5- b39e Aug  8 21:05 gocr-0.40/a.tex
[generic]                  524     924  56.7% -lh5- 1a00 Nov 16  2001 gocr-0.40/api/Changelog
[generic]                12738   39311  32.4% -lh5- 6bf9 Aug 18  2001 gocr-0.40/api/config.guess
[generic]                 8682   27594  31.5% -lh5- 40f7 Aug 18  2001 gocr-0.40/api/config.sub
[generic]                 1014    2631  38.5% -lh5- 9be5 Aug 23  2001 gocr-0.40/api/configure.in
[generic]                 8466   23244  36.4% -lh5- 5a32 Mar 17  2001 gocr-0.40/api/COPYING
[generic]                  331     772  42.9% -lh5- 9c1c Mar  8  2005 gocr-0.40/api/CVS/Entries
[generic]                    9       9 100.0% -lh0- a8ac Mar  8  2005 gocr-0.40/api/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/api/CVS/Root
[generic]                  731    1402  52.1% -lh5- e380 Jun 24  2001 gocr-0.40/api/devel.log
[generic]                 7936   28152  28.2% -lh5- 9d75 Mar  2  2001 gocr-0.40/api/doc/api.doxygen
[generic]                34272  152787  22.4% -lh5- bc89 Nov 30  2001 gocr-0.40/api/doc/api.lyx
[generic]                30163   84746  35.6% -lh5- 36a3 Nov 16  2001 gocr-0.40/api/doc/api.tex
[generic]                28602   85863  33.3% -lh5- fb43 Sep 16  2001 gocr-0.40/api/doc/api.txt
[generic]                  153     258  59.3% -lh5- 0a4d Mar  8  2005 gocr-0.40/api/doc/CVS/Entries
[generic]                   13      13 100.0% -lh0- ad6a Mar  8  2005 gocr-0.40/api/doc/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/api/doc/CVS/Root
[generic]                 1507    3013  50.0% -lh5- 260a Mar 18  2001 gocr-0.40/api/doc/developers.txt
[generic]                  258     579  44.6% -lh5- 0cb1 Jul 22  2001 gocr-0.40/api/doc/Makefile.am
[generic]                  252     606  41.6% -lh5- c499 Aug 18  2001 gocr-0.40/api/include/config.h.in
[generic]                  213     481  44.3% -lh5- 56fa Mar  8  2005 gocr-0.40/api/include/CVS/Entries
[generic]                   17      17 100.0% -lh0- eca5 Mar  8  2005 gocr-0.40/api/include/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/api/include/CVS/Root
[generic]                 1843    4759  38.7% -lh5- 2421 Aug 21  2001 gocr-0.40/api/include/gocr.h
[generic]                 1164    2695  43.2% -lh5- b5b8 Nov 30  2001 gocr-0.40/api/include/gocr_block.h
[generic]                 1306    3081  42.4% -lh5- f6ef Nov 30  2001 gocr-0.40/api/include/gocr_char.h
[generic]                  858    1848  46.4% -lh5- 523d Nov 30  2001 gocr-0.40/api/include/gocr_gui.h
[generic]                 1995    7281  27.4% -lh5- 40f2 Nov 30  2001 gocr-0.40/api/include/gocr_image.h
[generic]                 1406    3844  36.6% -lh5- 3d56 Nov 16  2001 gocr-0.40/api/include/gocr_list.h
[generic]                 1039    2641  39.3% -lh5- 7d2d Nov 16  2001 gocr-0.40/api/include/gocr_module.h
[generic]                  694    1435  48.4% -lh5- 157d Feb  7  2001 gocr-0.40/api/include/hash.h
[generic]                  162     290  55.9% -lh5- 65ab Nov 16  2001 gocr-0.40/api/include/Makefile.am
[generic]                10419   56018  18.6% -lh5- 6888 Apr  7  2001 gocr-0.40/api/include/unicode.h
[generic]                 3032    7831  38.7% -lh5- 15e0 Mar 21  2001 gocr-0.40/api/INSTALL
[generic]                 2233    5598  39.9% -lh5- a21f Feb 16  2001 gocr-0.40/api/install-sh
[generic]                  236     412  57.3% -lh5- 7b78 Aug 23  2001 gocr-0.40/api/libltdl/acconfig.h
[generic]                36782  121314  30.3% -lh5- 2b00 Aug 18  2001 gocr-0.40/api/libltdl/acinclude.m4
[generic]                37748  123474  30.6% -lh5- 3095 Aug 23  2001 gocr-0.40/api/libltdl/aclocal.m4
[generic]                  978    3111  31.4% -lh5- 89e4 Aug 18  2001 gocr-0.40/api/libltdl/config.h.in
[generic]                 6680   21717  30.8% -lh5- 3eb1 Aug 18  2001 gocr-0.40/api/libltdl/config.status
[generic]                  653    1128  57.9% -lh5- f492 Aug 18  2001 gocr-0.40/api/libltdl/configure.in
[generic]                 9651   26532  36.4% -lh5- e3ce Aug 23  2001 gocr-0.40/api/libltdl/COPYING.LIB
[generic]                  169     557  30.3% -lh5- 1e81 Mar  8  2005 gocr-0.40/api/libltdl/CVS/Entries
[generic]                   17      17 100.0% -lh0- 6e15 Mar  8  2005 gocr-0.40/api/libltdl/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/api/libltdl/CVS/Root
[generic]                41226  146918  28.1% -lh5- bf18 Aug 18  2001 gocr-0.40/api/libltdl/libtool
[generic]                16097   60587  26.6% -lh5- e885 Aug 18  2001 gocr-0.40/api/libltdl/ltdl.c
[generic]                 3654   10865  33.6% -lh5- 8fb6 Aug 18  2001 gocr-0.40/api/libltdl/ltdl.h
[generic]                  665    1357  49.0% -lh5- 41e6 Aug 18  2001 gocr-0.40/api/libltdl/Makefile.am
[generic]                 3844   13166  29.2% -lh5- bf89 Aug 23  2001 gocr-0.40/api/libltdl/Makefile.in
[generic]                  222     322  68.9% -lh5- 289c Aug 18  2001 gocr-0.40/api/libltdl/README
[generic]                41226  146907  28.1% -lh5- dd49 Aug 18  2001 gocr-0.40/api/libtool
[generic]                26536   90758  29.2% -lh5- e0f5 Feb 16  2001 gocr-0.40/api/ltconfig
[generic]                37983  138312  27.5% -lh5- eb41 Aug 18  2001 gocr-0.40/api/ltmain.sh
[generic]                  231     367  62.9% -lh5- bb4f Aug 18  2001 gocr-0.40/api/Makefile.am
[generic]                 2135    6283  34.0% -lh5- b90d Feb 16  2001 gocr-0.40/api/missing
[generic]                  384     725  53.0% -lh5- 9e5c Feb 16  2001 gocr-0.40/api/mkinstalldirs
[generic]                 1292    2479  52.1% -lh5- b101 Sep 16  2001 gocr-0.40/api/README
[generic]                 2392    6921  34.6% -lh5- c8ce Nov 30  2001 gocr-0.40/api/src/block.c
[generic]                  254     613  41.4% -lh5- a5d7 Mar  8  2005 gocr-0.40/api/src/CVS/Entries
[generic]                   13      13 100.0% -lh0- 1fff Mar  8  2005 gocr-0.40/api/src/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/api/src/CVS/Root
[generic]                 5362   20183  26.6% -lh5- 70d5 Nov 30  2001 gocr-0.40/api/src/find.c
[generic]                 2551    8899  28.7% -lh5- 21b5 Aug 20  2001 gocr-0.40/api/src/gui.c
[generic]                 2196    6946  31.6% -lh5- f826 May 27  2001 gocr-0.40/api/src/hash.c
[generic]                 5955   21427  27.8% -lh5- d3ce Nov 16  2001 gocr-0.40/api/src/image.c
[generic]                 2298    7560  30.4% -lh5- 8cab Aug 29  2001 gocr-0.40/api/src/init.c
[generic]                 4117   15113  27.2% -lh5- 942b Nov 16  2001 gocr-0.40/api/src/list.c
[generic]                  262     450  58.2% -lh5- 7fc9 Aug 18  2001 gocr-0.40/api/src/Makefile.am
[generic]                 5216   21063  24.8% -lh5- 21a1 Nov 30  2001 gocr-0.40/api/src/modules.c
[generic]                 2780   11945  23.3% -lh5- 3848 Nov 30  2001 gocr-0.40/api/src/pixel.c
[generic]                 2440    7703  31.7% -lh5- 19b5 Aug 26  2001 gocr-0.40/api/src/print.c
[generic]                 1187    2401  49.4% -lh5- 8c87 Aug 21  2001 gocr-0.40/api/src/recog.c
[generic]                 1802    4341  41.5% -lh5- 2e67 Nov 30  2001 gocr-0.40/api/src/text.c
[generic]                 4492   18208  24.7% -lh5- 7dcf Aug 20  2001 gocr-0.40/api/src/unicode.c
[generic]                 1057    2420  43.7% -lh5- e345 Nov 16  2001 gocr-0.40/api/src/_gocr.h
[generic]                  495     927  53.4% -lh5- 511a Jul 21  2001 gocr-0.40/api/STATUS
[generic]                  490    1151  42.6% -lh5- 452e Nov 30  2001 gocr-0.40/api/tests/charfind.c
[generic]                  121     216  56.0% -lh5- b46c Mar  8  2005 gocr-0.40/api/tests/CVS/Entries
[generic]                   15      15 100.0% -lh0- 63b4 Mar  8  2005 gocr-0.40/api/tests/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/api/tests/CVS/Root
[generic]                  230     389  59.1% -lh5- d851 Aug 26  2001 gocr-0.40/api/tests/image.c
[generic]                  306     540  56.7% -lh5- f9b1 Aug 20  2001 gocr-0.40/api/tests/imagewrite.c
[generic]                  355     770  46.1% -lh5- c9a8 Aug 26  2001 gocr-0.40/api/tests/Makefile.am
[generic]                  699    1455  48.0% -lh5- b3e3 Nov 30  2001 gocr-0.40/api/tests/module.c
[generic]                  485     837  57.9% -lh5- 1afa Aug 26  2001 gocr-0.40/api/TODO
[generic]                  186     243  76.5% -lh5- 548b Feb 23  2004 gocr-0.40/AUTHORS
[generic]                  717    1282  55.9% -lh5- 1f47 Oct 13  2000 gocr-0.40/bin/create_db
[generic]                   74      85  87.1% -lh5- 1f7c Mar  8  2005 gocr-0.40/bin/CVS/Entries
[generic]                    9       9 100.0% -lh0- 1b7f Mar  8  2005 gocr-0.40/bin/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/bin/CVS/Root
[generic]                 4466   16479  27.1% -lh5- ab6a Feb  6  2004 gocr-0.40/bin/gocr.tcl
[generic]                 1115    2067  53.9% -lh5- d5f3 Feb 25  2002 gocr-0.40/BUGS
[generic]                34464  137228  25.1% -lh5- 5f30 Mar 13  2005 gocr-0.40/configure
[generic]                  988    2040  48.4% -lh5- ec60 Jan 31  2004 gocr-0.40/configure.in
[generic]                35580  136433  26.1% -lh5- d684 Aug  8 21:00 gocr-0.40/configure.lineno
[generic]                  463     784  59.1% -lh5- 8a65 Nov 24  2000 gocr-0.40/CREDITS
[generic]                 1593   65758   2.4% -lh5- 80fa Aug  8 21:05 gocr-0.40/db/db.log
[generic]                  133     459  29.0% -lh5- 104d Aug  8 21:05 gocr-0.40/db/db.lst
[generic]                  151     218  69.3% -lh5- 2bbc Mar  8  2005 gocr-0.40/doc/CVS/Entries
[generic]                    9       9 100.0% -lh0- 029b Mar  8  2005 gocr-0.40/doc/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/doc/CVS/Root
[generic]                  581    1704  34.1% -lh5- 6638 Oct  7  2004 gocr-0.40/doc/example.dtd
[generic]                  234     463  50.5% -lh5- 035d Oct  7  2004 gocr-0.40/doc/example.xml
[generic]                 1359    2648  51.3% -lh5- b4c6 Dec 22  2003 gocr-0.40/doc/examples.txt
[generic]                 7024   21448  32.7% -lh5- ff3c Feb  6  2004 gocr-0.40/doc/gocr.html
[generic]                  368     603  61.0% -lh5- bee6 Aug  8 21:00 gocr-0.40/doc/Makefile
[generic]                  370     617  60.0% -lh5- d83b Jun  4  2002 gocr-0.40/doc/Makefile.in
[generic]                 1613    3339  48.3% -lh5- 13bb Sep 23  2000 gocr-0.40/doc/unicode.txt
[generic]                  218     423  51.5% -lh5- 2d67 Mar  8  2005 gocr-0.40/examples/CVS/Entries
[generic]                   14      14 100.0% -lh0- 7aeb Mar  8  2005 gocr-0.40/examples/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/examples/CVS/Root
[generic]                  224     624  35.9% -lh5- 31e1 May  2  2002 gocr-0.40/examples/ex.fig
[generic]                  449     652  68.9% -lh5- 41bf Nov 13  2000 gocr-0.40/examples/font.tex
[generic]                  685    2034  33.7% -lh5- 4a8e Sep 23  2000 gocr-0.40/examples/font1.tex
[generic]                  507    1668  30.4% -lh5- 1aaf Jan 24  2002 gocr-0.40/examples/font2.fig
[generic]                    0       0 ****** -lh0- 0000 Aug  8 21:02 gocr-0.40/examples/font21.pcx
[generic]                  501     733  68.3% -lh5- 2aaa Sep  6  2001 gocr-0.40/examples/font_nw.tex
[generic]                43197   43197 100.0% -lh0- 5dac Mar 10  2005 gocr-0.40/examples/handwrt1.jpg
[generic]                  296     660  44.8% -lh5- 9316 Jan  7  2004 gocr-0.40/examples/inverse.fig
[generic]                 1727    4688  36.8% -lh5- 84ac Jan  7  2004 gocr-0.40/examples/Makefile
[generic]                 5504    5504 100.0% -lh0- f4ef Jul  2  2003 gocr-0.40/examples/matrix.jpg
[generic]                 1392    1392 100.0% -lh0- c60a Jan 25  2004 gocr-0.40/examples/ocr-a.png
[generic]                 1620    1620 100.0% -lh0- 51a5 Jan 25  2004 gocr-0.40/examples/ocr-b.png
[generic]                  391     547  71.5% -lh5- 3209 Dec 11  2000 gocr-0.40/examples/polish.tex
[generic]                  191     317  60.3% -lh5- f0f3 Jan 12  2004 gocr-0.40/examples/rotate45.fig
[generic]                  489     987  49.5% -lh5- 485d Dec 22  2000 gocr-0.40/examples/score
[generic]                  573    1101  52.0% -lh5- 122c Sep 23  2000 gocr-0.40/examples/text.tex
[generic]                   53      53 100.0% -lh0- 000e Mar  8  2005 gocr-0.40/frontend/CVS/Entries
[generic]                   14      14 100.0% -lh0- 681c Mar  8  2005 gocr-0.40/frontend/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/frontend/CVS/Root
[generic]                 1705    3539  48.2% -lh5- 4b7d Oct 12  2000 gocr-0.40/frontend/gnome/aclocal.m4
[generic]                   41      41 100.0% -lh0- 3727 Oct 12  2000 gocr-0.40/frontend/gnome/AUTHORS
[generic]                14795   52148  28.4% -lh5- 18f3 Oct 12  2000 gocr-0.40/frontend/gnome/configure
[generic]                  323     541  59.7% -lh5- 752a Oct 12  2000 gocr-0.40/frontend/gnome/configure.in
[generic]                  152     430  35.3% -lh5- 3ce4 Mar  8  2005 gocr-0.40/frontend/gnome/CVS/Entries
[generic]                   20      20 100.0% -lh0- 17d1 Mar  8  2005 gocr-0.40/frontend/gnome/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/frontend/gnome/CVS/Root
[generic]                   86     102  84.3% -lh5- bb1a Oct 12  2000 gocr-0.40/frontend/gnome/Makefile.am
[generic]                 3123    9750  32.0% -lh5- fa4d Oct 12  2000 gocr-0.40/frontend/gnome/Makefile.in
[generic]                 2135    6283  34.0% -lh5- b90d Oct 12  2000 gocr-0.40/frontend/gnome/missing
[generic]                  383     724  52.9% -lh5- 80b5 Oct 12  2000 gocr-0.40/frontend/gnome/mkinstalldirs
[generic]                  223     346  64.5% -lh5- 777c Oct 16  2000 gocr-0.40/frontend/gnome/README
[generic]                 4506   12682  35.5% -lh5- 1993 Oct 12  2000 gocr-0.40/frontend/gnome/src/aclocal.m4
[generic]                  337    1050  32.1% -lh5- 99cb Oct 24  2000 gocr-0.40/frontend/gnome/src/common.h
[generic]                  219     387  56.6% -lh5- f3bc Oct 12  2000 gocr-0.40/frontend/gnome/src/config.h
[generic]                  193     304  63.5% -lh5- 8a7a Oct 12  2000 gocr-0.40/frontend/gnome/src/config.h.in
[generic]                17481   62354  28.0% -lh5- 7dcc Oct 12  2000 gocr-0.40/frontend/gnome/src/configure
[generic]                  307     501  61.3% -lh5- cc7a Oct 12  2000 gocr-0.40/frontend/gnome/src/configure.in
[generic]                  189     561  33.7% -lh5- 9d08 Mar  8  2005 gocr-0.40/frontend/gnome/src/CVS/Entries
[generic]                   24      24 100.0% -lh0- 97d6 Mar  8  2005 gocr-0.40/frontend/gnome/src/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/frontend/gnome/src/CVS/Root
[generic]                 2811   10883  25.8% -lh5- 5e44 Oct 28  2001 gocr-0.40/frontend/gnome/src/functions.c
[generic]                 2233    5598  39.9% -lh5- a21f Oct 10  2000 gocr-0.40/frontend/gnome/src/install-sh
[generic]                  145     184  78.8% -lh5- c27b Oct 12  2000 gocr-0.40/frontend/gnome/src/Makefile.am
[generic]                 2549    7461  34.2% -lh5- 683b Oct 12  2000 gocr-0.40/frontend/gnome/src/Makefile.in
[generic]                 2135    6283  34.0% -lh5- b90d Oct 10  2000 gocr-0.40/frontend/gnome/src/missing
[generic]                  382     724  52.8% -lh5- 3584 Oct 12  2000 gocr-0.40/frontend/gnome/src/mkinstalldirs
[generic]                 1478    4685  31.5% -lh5- d6ec Oct 24  2000 gocr-0.40/frontend/gnome/src/ocrmain.c
[generic]                   73      87  83.9% -lh5- dcec Oct 16  2000 gocr-0.40/frontend/gnome/TODO
[generic]                  112     186  60.2% -lh5- 3b2e Oct 28  2001 gocr-0.40/frontend/Makefile
[generic]               258625  639768  40.4% -lh5- 8f56 Aug  8 21:01 gocr-0.40/gocr
[generic]                 1801    3858  46.7% -lh5- 3909 Feb 28  2005 gocr-0.40/gocr.spec
[generic]                 3335    6762  49.3% -lh5- 3321 Aug  9 01:36 gocr-0.40/gocr040-mos.readme
[generic]                 8097   20982  38.6% -lh5- ef0d Jun 20  2000 gocr-0.40/gpl.html
[generic]                 3472    7380  47.0% -lh5- 23dd Mar  7  2005 gocr-0.40/HISTORY
[generic]                  404    1084  37.3% -lh5- 9e13 Aug  8 21:00 gocr-0.40/include/config.h
[generic]                  374     980  38.2% -lh5- b91f Feb  3  2002 gocr-0.40/include/config.h.in
[generic]                  385     987  39.0% -lh5- 5a37 Jan  3  2004 gocr-0.40/include/config.h.in~
[generic]                  398    1086  36.6% -lh5- 84a8 Jan  3  2004 gocr-0.40/include/config.h~
[generic]                   73      88  83.0% -lh5- 2ffd Mar  8  2005 gocr-0.40/include/CVS/Entries
[generic]                   13      13 100.0% -lh0- 31a7 Mar  8  2005 gocr-0.40/include/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/include/CVS/Root
[generic]                 1065    2418  44.0% -lh5- d618 Jun  3  2002 gocr-0.40/INSTALL
[generic]                   59      68  86.8% -lh5- cc62 Nov 19  2000 gocr-0.40/install-sh
[generic]                  769    1743  44.1% -lh5- 22c3 Dec 30  2003 gocr-0.40/make.bat
[generic]                 2158    5234  41.2% -lh5- caa5 Aug  8 21:00 gocr-0.40/Makefile
[generic]                 2143    5240  40.9% -lh5- f70d Feb 28  2005 gocr-0.40/Makefile.in
[generic]                   55      55 100.0% -lh0- a62c Mar  8  2005 gocr-0.40/man/CVS/Entries
[generic]                    9       9 100.0% -lh0- cdfd Mar  8  2005 gocr-0.40/man/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/man/CVS/Root
[generic]                  260     408  63.7% -lh5- 075a Aug  8 21:00 gocr-0.40/man/Makefile
[generic]                  250     395  63.3% -lh5- f012 Feb 27  2002 gocr-0.40/man/Makefile.in
[generic]                   41      41 100.0% -lh0- 2b95 Mar  8  2005 gocr-0.40/man/man1/CVS/Entries
[generic]                   14      14 100.0% -lh0- 3212 Mar  8  2005 gocr-0.40/man/man1/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/man/man1/CVS/Root
[generic]                 1640    3451  47.5% -lh5- d5f7 May 19  2003 gocr-0.40/man/man1/gocr.1
[generic]                 1613    3389  47.6% -lh5- bf2d May 17  2003 gocr-0.40/man/man1/gocr.1~
[generic]                 3058    6226  49.1% -lh5- 8831 Feb 28  2005 gocr-0.40/README
[generic]                 1500    2867  52.3% -lh5- b34b Sep  7  2004 gocr-0.40/READMEde.txt
[generic]                  362     699  51.8% -lh5- ece5 Aug  2  2000 gocr-0.40/REMARK.txt
[generic]                 8942   21362  41.9% -lh5- 50d8 Jan  5  2004 gocr-0.40/REVIEW
[generic]                  703    1397  50.3% -lh5- 82ec Jul 13  2001 gocr-0.40/src/.#Makefile.1.11
[generic]                  703    1397  50.3% -lh5- 82ec Aug 10  2001 gocr-0.40/src/.#Makefile.1.12
[generic]                 8187   47373  17.3% -lh5- 784d Mar 16  2004 gocr-0.40/src/.#unicode.c.1.33
[generic]                  450     841  53.5% -lh5- cf89 Dec 22  2003 gocr-0.40/src/amiga.h
[generic]                   46      46 100.0% -lh0- beb5 Mar  8  2005 gocr-0.40/src/api/CVS/Entries
[generic]                   13      13 100.0% -lh0- b8fe Mar  8  2005 gocr-0.40/src/api/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/src/api/CVS/Root
[generic]                    1       1 100.0% -lh0- 0780 Aug  8 21:00 gocr-0.40/src/api/Makefile
[generic]                    1       1 100.0% -lh0- 0780 Jul 30  2001 gocr-0.40/src/api/Makefile.in
[generic]                 8633   24611  35.1% -lh5- 3d8e Feb 28  2005 gocr-0.40/src/barcode.c
[generic]                  125     165  75.8% -lh5- 53b7 Jun  5  2002 gocr-0.40/src/barcode.h
[generic]                 1145    2344  48.8% -lh5- ddd7 Jan  5  2004 gocr-0.40/src/box.c
[generic]                  501    1472  34.0% -lh5- 804c Mar 13  2005 gocr-0.40/src/CVS/Entries
[generic]                    9       9 100.0% -lh0- b00e Mar  8  2005 gocr-0.40/src/CVS/Repository
[generic]                   47      47 100.0% -lh0- d5a3 Mar  8  2005 gocr-0.40/src/CVS/Root
[generic]                 4323   10737  40.3% -lh5- 41a4 Jan  5  2004 gocr-0.40/src/database.c
[generic]                 9821   30887  31.8% -lh5- 71b6 Feb 19  2004 gocr-0.40/src/detect.c
[generic]                 3688    9872  37.4% -lh5- 2b13 Mar  7  2005 gocr-0.40/src/gocr.c
[generic]                 3942    9354  42.1% -lh5- 9249 Oct  8  2004 gocr-0.40/src/gocr.h
[generic]                 1415    4007  35.3% -lh5- b61f Mar  7  2005 gocr-0.40/src/jconv.c
[generic]                  958    2133  44.9% -lh5- 4138 Jan 12  2004 gocr-0.40/src/job.c
[generic]               323808  840946  38.5% -lh5- bd15 Aug  8 21:01 gocr-0.40/src/libPgm2asc.a
[generic]                 4052   13071  31.0% -lh5- a5fc Feb 28  2005 gocr-0.40/src/lines.c
[generic]                 3213    9375  34.3% -lh5- 6136 Jan 12  2004 gocr-0.40/src/list.c
[generic]                 1198    3033  39.5% -lh5- f401 Dec 22  2003 gocr-0.40/src/list.h
[generic]                  719    1500  47.9% -lh5- 4d27 Aug  8 21:00 gocr-0.40/src/Makefile
[generic]                  701    1510  46.4% -lh5- 95a0 Feb 28  2005 gocr-0.40/src/Makefile.in
[generic]                50446  229412  22.0% -lh5- b337 Mar 13  2005 gocr-0.40/src/ocr0.c
[generic]                  507    1098  46.2% -lh5- 0ead Jan  5  2004 gocr-0.40/src/ocr0.h
[generic]                 9155   38347  23.9% -lh5- 72ff Mar 10  2005 gocr-0.40/src/ocr0n.c
[generic]                 4677   15922  29.4% -lh5- f8b4 Jan  5  2004 gocr-0.40/src/ocr1.c
[generic]                   77      90  85.6% -lh5- e045 Aug 23  2001 gocr-0.40/src/ocr1.h
[generic]                 1840    4654  39.5% -lh5- 0303 May  6  2002 gocr-0.40/src/otsu.c
[generic]                  344    1003  34.3% -lh5- 2c8e Dec 22  2003 gocr-0.40/src/otsu.h
[generic]                 3183    8244  38.6% -lh5- ada5 Mar 13  2005 gocr-0.40/src/output.c
[generic]                  656    1188  55.2% -lh5- ad44 Dec 22  2003 gocr-0.40/src/output.h
[generic]                 2285    5072  45.1% -lh5- 909c Feb 28  2005 gocr-0.40/src/pcx.c
[generic]                  105     209  50.2% -lh5- c469 Aug 26  2000 gocr-0.40/src/pcx.h
[generic]                27590   82373  33.5% -lh5- 0b27 Mar 13  2005 gocr-0.40/src/pgm2asc.c
[generic]                 1432    3106  46.1% -lh5- a514 Dec 22  2003 gocr-0.40/src/pgm2asc.h
[generic]                 5546   17053  32.5% -lh5- b8d1 Mar 28  2003 gocr-0.40/src/pixel.c
[generic]                 4045   10692  37.8% -lh5- c32e Mar  7  2005 gocr-0.40/src/pnm.c
[generic]                  451     826  54.6% -lh5- 60cf Mar  7  2005 gocr-0.40/src/pnm.h
[generic]                 6617   23093  28.7% -lh5- a578 Oct 11  2004 gocr-0.40/src/remove.c
[generic]                  895    1919  46.6% -lh5- 3157 Aug 26  2000 gocr-0.40/src/tga.c
[generic]                   92     160  57.5% -lh5- 92f0 Aug 26  2000 gocr-0.40/src/tga.h
[generic]                 8237   47549  17.3% -lh5- 6fd5 Oct  8  2004 gocr-0.40/src/unicode.c
[generic]                10360   55378  18.7% -lh5- 2390 Jan 20  2004 gocr-0.40/src/unicode.h
[generic]                 1324    2397  55.2% -lh5- 8f46 Feb 28  2005 gocr-0.40/TODO
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total       241 files 1505765 4581023  32.9%            Aug 10 01:51

Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>