entangledstate-isbn 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (290) hide show
  1. data/README +1 -1
  2. data/Rakefile +0 -18
  3. data/VERSION +1 -0
  4. data/isbn.gemspec +290 -7
  5. data/lib/isbn.rb +6 -6
  6. data/src/gocr-0.48/.cvsignore +6 -0
  7. data/src/gocr-0.48/AUTHORS +7 -0
  8. data/src/gocr-0.48/BUGS +55 -0
  9. data/src/gocr-0.48/CREDITS +17 -0
  10. data/src/gocr-0.48/HISTORY +243 -0
  11. data/src/gocr-0.48/INSTALL +83 -0
  12. data/src/gocr-0.48/Makefile +193 -0
  13. data/src/gocr-0.48/Makefile.in +193 -0
  14. data/src/gocr-0.48/README +165 -0
  15. data/src/gocr-0.48/READMEde.txt +80 -0
  16. data/src/gocr-0.48/REMARK.txt +18 -0
  17. data/src/gocr-0.48/REVIEW +538 -0
  18. data/src/gocr-0.48/TODO +65 -0
  19. data/src/gocr-0.48/bin/.cvsignore +2 -0
  20. data/src/gocr-0.48/bin/create_db +38 -0
  21. data/src/gocr-0.48/bin/gocr.tcl +527 -0
  22. data/src/gocr-0.48/bin/gocr_chk.sh +44 -0
  23. data/src/gocr-0.48/configure +4689 -0
  24. data/src/gocr-0.48/configure.in +71 -0
  25. data/src/gocr-0.48/doc/.#Makefile.1.6 +39 -0
  26. data/src/gocr-0.48/doc/.cvsignore +2 -0
  27. data/src/gocr-0.48/doc/Makefile +39 -0
  28. data/src/gocr-0.48/doc/Makefile.in +39 -0
  29. data/src/gocr-0.48/doc/example.dtd +53 -0
  30. data/src/gocr-0.48/doc/example.xml +21 -0
  31. data/src/gocr-0.48/doc/examples.txt +67 -0
  32. data/src/gocr-0.48/doc/gocr.html +578 -0
  33. data/src/gocr-0.48/doc/unicode.txt +57 -0
  34. data/src/gocr-0.48/examples/.#Makefile.1.22 +166 -0
  35. data/src/gocr-0.48/examples/4x6.png +0 -0
  36. data/src/gocr-0.48/examples/4x6.txt +2 -0
  37. data/src/gocr-0.48/examples/5x7.png +0 -0
  38. data/src/gocr-0.48/examples/5x7.png.txt +2 -0
  39. data/src/gocr-0.48/examples/5x8.png +0 -0
  40. data/src/gocr-0.48/examples/5x8.png.txt +2 -0
  41. data/src/gocr-0.48/examples/Makefile +166 -0
  42. data/src/gocr-0.48/examples/color.fig +20 -0
  43. data/src/gocr-0.48/examples/ex.fig +16 -0
  44. data/src/gocr-0.48/examples/font.tex +22 -0
  45. data/src/gocr-0.48/examples/font1.tex +46 -0
  46. data/src/gocr-0.48/examples/font2.fig +27 -0
  47. data/src/gocr-0.48/examples/font_nw.tex +24 -0
  48. data/src/gocr-0.48/examples/handwrt1.jpg +0 -0
  49. data/src/gocr-0.48/examples/handwrt1.txt +10 -0
  50. data/src/gocr-0.48/examples/inverse.fig +20 -0
  51. data/src/gocr-0.48/examples/matrix.jpg +0 -0
  52. data/src/gocr-0.48/examples/ocr-a-subset.png +0 -0
  53. data/src/gocr-0.48/examples/ocr-a-subset.png.txt +4 -0
  54. data/src/gocr-0.48/examples/ocr-a.png +0 -0
  55. data/src/gocr-0.48/examples/ocr-a.txt +6 -0
  56. data/src/gocr-0.48/examples/ocr-b.png +0 -0
  57. data/src/gocr-0.48/examples/ocr-b.png.txt +4 -0
  58. data/src/gocr-0.48/examples/polish.tex +28 -0
  59. data/src/gocr-0.48/examples/rotate45.fig +14 -0
  60. data/src/gocr-0.48/examples/score +36 -0
  61. data/src/gocr-0.48/examples/text.tex +28 -0
  62. data/src/gocr-0.48/gocr.spec +143 -0
  63. data/src/gocr-0.48/gpl.html +537 -0
  64. data/src/gocr-0.48/include/.cvsignore +2 -0
  65. data/src/gocr-0.48/include/config.h +36 -0
  66. data/src/gocr-0.48/include/config.h.in +36 -0
  67. data/src/gocr-0.48/include/version.h +2 -0
  68. data/src/gocr-0.48/install-sh +3 -0
  69. data/src/gocr-0.48/make.bat +57 -0
  70. data/src/gocr-0.48/man/.cvsignore +2 -0
  71. data/src/gocr-0.48/man/Makefile +29 -0
  72. data/src/gocr-0.48/man/Makefile.in +29 -0
  73. data/src/gocr-0.48/man/man1/gocr.1 +166 -0
  74. data/src/gocr-0.48/src/.cvsignore +4 -0
  75. data/src/gocr-0.48/src/Makefile +132 -0
  76. data/src/gocr-0.48/src/Makefile.in +132 -0
  77. data/src/gocr-0.48/src/amiga.h +31 -0
  78. data/src/gocr-0.48/src/barcode.c +846 -0
  79. data/src/gocr-0.48/src/barcode.c.orig +593 -0
  80. data/src/gocr-0.48/src/barcode.h +11 -0
  81. data/src/gocr-0.48/src/box.c +372 -0
  82. data/src/gocr-0.48/src/database.c +462 -0
  83. data/src/gocr-0.48/src/detect.c +943 -0
  84. data/src/gocr-0.48/src/gocr.c +373 -0
  85. data/src/gocr-0.48/src/gocr.h +288 -0
  86. data/src/gocr-0.48/src/jconv.c +168 -0
  87. data/src/gocr-0.48/src/job.c +84 -0
  88. data/src/gocr-0.48/src/lines.c +350 -0
  89. data/src/gocr-0.48/src/list.c +334 -0
  90. data/src/gocr-0.48/src/list.h +90 -0
  91. data/src/gocr-0.48/src/ocr0.c +6756 -0
  92. data/src/gocr-0.48/src/ocr0.h +63 -0
  93. data/src/gocr-0.48/src/ocr0n.c +1475 -0
  94. data/src/gocr-0.48/src/ocr1.c +85 -0
  95. data/src/gocr-0.48/src/ocr1.h +3 -0
  96. data/src/gocr-0.48/src/otsu.c +289 -0
  97. data/src/gocr-0.48/src/otsu.h +23 -0
  98. data/src/gocr-0.48/src/output.c +289 -0
  99. data/src/gocr-0.48/src/output.h +37 -0
  100. data/src/gocr-0.48/src/pcx.c +153 -0
  101. data/src/gocr-0.48/src/pcx.h +9 -0
  102. data/src/gocr-0.48/src/pgm2asc.c +2893 -0
  103. data/src/gocr-0.48/src/pgm2asc.h +105 -0
  104. data/src/gocr-0.48/src/pixel.c +537 -0
  105. data/src/gocr-0.48/src/pnm.c +533 -0
  106. data/src/gocr-0.48/src/pnm.h +35 -0
  107. data/src/gocr-0.48/src/progress.c +87 -0
  108. data/src/gocr-0.48/src/progress.h +42 -0
  109. data/src/gocr-0.48/src/remove.c +703 -0
  110. data/src/gocr-0.48/src/tga.c +87 -0
  111. data/src/gocr-0.48/src/tga.h +6 -0
  112. data/src/gocr-0.48/src/unicode.c +1314 -0
  113. data/src/gocr-0.48/src/unicode.h +1257 -0
  114. data/src/jpeg-7/Makefile.am +133 -0
  115. data/src/jpeg-7/Makefile.in +1089 -0
  116. data/src/jpeg-7/README +322 -0
  117. data/src/jpeg-7/aclocal.m4 +8990 -0
  118. data/src/jpeg-7/ansi2knr.1 +36 -0
  119. data/src/jpeg-7/ansi2knr.c +739 -0
  120. data/src/jpeg-7/cderror.h +132 -0
  121. data/src/jpeg-7/cdjpeg.c +181 -0
  122. data/src/jpeg-7/cdjpeg.h +187 -0
  123. data/src/jpeg-7/change.log +270 -0
  124. data/src/jpeg-7/cjpeg.1 +325 -0
  125. data/src/jpeg-7/cjpeg.c +616 -0
  126. data/src/jpeg-7/ckconfig.c +402 -0
  127. data/src/jpeg-7/coderules.txt +118 -0
  128. data/src/jpeg-7/config.guess +1561 -0
  129. data/src/jpeg-7/config.sub +1686 -0
  130. data/src/jpeg-7/configure +17139 -0
  131. data/src/jpeg-7/configure.ac +317 -0
  132. data/src/jpeg-7/depcomp +630 -0
  133. data/src/jpeg-7/djpeg.1 +251 -0
  134. data/src/jpeg-7/djpeg.c +617 -0
  135. data/src/jpeg-7/example.c +433 -0
  136. data/src/jpeg-7/filelist.txt +215 -0
  137. data/src/jpeg-7/install-sh +520 -0
  138. data/src/jpeg-7/install.txt +1097 -0
  139. data/src/jpeg-7/jaricom.c +148 -0
  140. data/src/jpeg-7/jcapimin.c +282 -0
  141. data/src/jpeg-7/jcapistd.c +161 -0
  142. data/src/jpeg-7/jcarith.c +921 -0
  143. data/src/jpeg-7/jccoefct.c +453 -0
  144. data/src/jpeg-7/jccolor.c +459 -0
  145. data/src/jpeg-7/jcdctmgr.c +482 -0
  146. data/src/jpeg-7/jchuff.c +1612 -0
  147. data/src/jpeg-7/jcinit.c +65 -0
  148. data/src/jpeg-7/jcmainct.c +293 -0
  149. data/src/jpeg-7/jcmarker.c +667 -0
  150. data/src/jpeg-7/jcmaster.c +770 -0
  151. data/src/jpeg-7/jcomapi.c +106 -0
  152. data/src/jpeg-7/jconfig.bcc +48 -0
  153. data/src/jpeg-7/jconfig.cfg +45 -0
  154. data/src/jpeg-7/jconfig.dj +38 -0
  155. data/src/jpeg-7/jconfig.mac +43 -0
  156. data/src/jpeg-7/jconfig.manx +43 -0
  157. data/src/jpeg-7/jconfig.mc6 +52 -0
  158. data/src/jpeg-7/jconfig.sas +43 -0
  159. data/src/jpeg-7/jconfig.st +42 -0
  160. data/src/jpeg-7/jconfig.txt +155 -0
  161. data/src/jpeg-7/jconfig.vc +45 -0
  162. data/src/jpeg-7/jconfig.vms +37 -0
  163. data/src/jpeg-7/jconfig.wat +38 -0
  164. data/src/jpeg-7/jcparam.c +632 -0
  165. data/src/jpeg-7/jcprepct.c +358 -0
  166. data/src/jpeg-7/jcsample.c +545 -0
  167. data/src/jpeg-7/jctrans.c +381 -0
  168. data/src/jpeg-7/jdapimin.c +396 -0
  169. data/src/jpeg-7/jdapistd.c +275 -0
  170. data/src/jpeg-7/jdarith.c +762 -0
  171. data/src/jpeg-7/jdatadst.c +151 -0
  172. data/src/jpeg-7/jdatasrc.c +212 -0
  173. data/src/jpeg-7/jdcoefct.c +736 -0
  174. data/src/jpeg-7/jdcolor.c +396 -0
  175. data/src/jpeg-7/jdct.h +393 -0
  176. data/src/jpeg-7/jddctmgr.c +382 -0
  177. data/src/jpeg-7/jdhuff.c +1309 -0
  178. data/src/jpeg-7/jdinput.c +384 -0
  179. data/src/jpeg-7/jdmainct.c +512 -0
  180. data/src/jpeg-7/jdmarker.c +1360 -0
  181. data/src/jpeg-7/jdmaster.c +663 -0
  182. data/src/jpeg-7/jdmerge.c +400 -0
  183. data/src/jpeg-7/jdpostct.c +290 -0
  184. data/src/jpeg-7/jdsample.c +361 -0
  185. data/src/jpeg-7/jdtrans.c +136 -0
  186. data/src/jpeg-7/jerror.c +252 -0
  187. data/src/jpeg-7/jerror.h +304 -0
  188. data/src/jpeg-7/jfdctflt.c +174 -0
  189. data/src/jpeg-7/jfdctfst.c +230 -0
  190. data/src/jpeg-7/jfdctint.c +4348 -0
  191. data/src/jpeg-7/jidctflt.c +242 -0
  192. data/src/jpeg-7/jidctfst.c +368 -0
  193. data/src/jpeg-7/jidctint.c +5137 -0
  194. data/src/jpeg-7/jinclude.h +91 -0
  195. data/src/jpeg-7/jmemansi.c +167 -0
  196. data/src/jpeg-7/jmemdos.c +638 -0
  197. data/src/jpeg-7/jmemdosa.asm +379 -0
  198. data/src/jpeg-7/jmemmac.c +289 -0
  199. data/src/jpeg-7/jmemmgr.c +1118 -0
  200. data/src/jpeg-7/jmemname.c +276 -0
  201. data/src/jpeg-7/jmemnobs.c +109 -0
  202. data/src/jpeg-7/jmemsys.h +198 -0
  203. data/src/jpeg-7/jmorecfg.h +369 -0
  204. data/src/jpeg-7/jpegint.h +395 -0
  205. data/src/jpeg-7/jpeglib.h +1135 -0
  206. data/src/jpeg-7/jpegtran.1 +272 -0
  207. data/src/jpeg-7/jpegtran.c +546 -0
  208. data/src/jpeg-7/jquant1.c +856 -0
  209. data/src/jpeg-7/jquant2.c +1310 -0
  210. data/src/jpeg-7/jutils.c +179 -0
  211. data/src/jpeg-7/jversion.h +14 -0
  212. data/src/jpeg-7/libjpeg.map +4 -0
  213. data/src/jpeg-7/libjpeg.txt +3067 -0
  214. data/src/jpeg-7/ltmain.sh +8406 -0
  215. data/src/jpeg-7/makcjpeg.st +36 -0
  216. data/src/jpeg-7/makdjpeg.st +36 -0
  217. data/src/jpeg-7/makeadsw.vc6 +77 -0
  218. data/src/jpeg-7/makeasln.vc9 +33 -0
  219. data/src/jpeg-7/makecdep.vc6 +82 -0
  220. data/src/jpeg-7/makecdsp.vc6 +130 -0
  221. data/src/jpeg-7/makecmak.vc6 +159 -0
  222. data/src/jpeg-7/makecvcp.vc9 +186 -0
  223. data/src/jpeg-7/makeddep.vc6 +82 -0
  224. data/src/jpeg-7/makeddsp.vc6 +130 -0
  225. data/src/jpeg-7/makedmak.vc6 +159 -0
  226. data/src/jpeg-7/makedvcp.vc9 +186 -0
  227. data/src/jpeg-7/makefile.ansi +220 -0
  228. data/src/jpeg-7/makefile.bcc +291 -0
  229. data/src/jpeg-7/makefile.dj +226 -0
  230. data/src/jpeg-7/makefile.manx +220 -0
  231. data/src/jpeg-7/makefile.mc6 +255 -0
  232. data/src/jpeg-7/makefile.mms +224 -0
  233. data/src/jpeg-7/makefile.sas +258 -0
  234. data/src/jpeg-7/makefile.unix +234 -0
  235. data/src/jpeg-7/makefile.vc +217 -0
  236. data/src/jpeg-7/makefile.vms +142 -0
  237. data/src/jpeg-7/makefile.wat +239 -0
  238. data/src/jpeg-7/makejdep.vc6 +423 -0
  239. data/src/jpeg-7/makejdsp.vc6 +285 -0
  240. data/src/jpeg-7/makejdsw.vc6 +29 -0
  241. data/src/jpeg-7/makejmak.vc6 +425 -0
  242. data/src/jpeg-7/makejsln.vc9 +17 -0
  243. data/src/jpeg-7/makejvcp.vc9 +328 -0
  244. data/src/jpeg-7/makeproj.mac +213 -0
  245. data/src/jpeg-7/makerdep.vc6 +6 -0
  246. data/src/jpeg-7/makerdsp.vc6 +78 -0
  247. data/src/jpeg-7/makermak.vc6 +110 -0
  248. data/src/jpeg-7/makervcp.vc9 +133 -0
  249. data/src/jpeg-7/maketdep.vc6 +43 -0
  250. data/src/jpeg-7/maketdsp.vc6 +122 -0
  251. data/src/jpeg-7/maketmak.vc6 +131 -0
  252. data/src/jpeg-7/maketvcp.vc9 +178 -0
  253. data/src/jpeg-7/makewdep.vc6 +6 -0
  254. data/src/jpeg-7/makewdsp.vc6 +78 -0
  255. data/src/jpeg-7/makewmak.vc6 +110 -0
  256. data/src/jpeg-7/makewvcp.vc9 +133 -0
  257. data/src/jpeg-7/makljpeg.st +68 -0
  258. data/src/jpeg-7/maktjpeg.st +30 -0
  259. data/src/jpeg-7/makvms.opt +4 -0
  260. data/src/jpeg-7/missing +376 -0
  261. data/src/jpeg-7/rdbmp.c +439 -0
  262. data/src/jpeg-7/rdcolmap.c +253 -0
  263. data/src/jpeg-7/rdgif.c +38 -0
  264. data/src/jpeg-7/rdjpgcom.1 +63 -0
  265. data/src/jpeg-7/rdjpgcom.c +515 -0
  266. data/src/jpeg-7/rdppm.c +459 -0
  267. data/src/jpeg-7/rdrle.c +387 -0
  268. data/src/jpeg-7/rdswitch.c +365 -0
  269. data/src/jpeg-7/rdtarga.c +500 -0
  270. data/src/jpeg-7/structure.txt +945 -0
  271. data/src/jpeg-7/testimg.bmp +0 -0
  272. data/src/jpeg-7/testimg.jpg +0 -0
  273. data/src/jpeg-7/testimg.ppm +4 -0
  274. data/src/jpeg-7/testimgp.jpg +0 -0
  275. data/src/jpeg-7/testorig.jpg +0 -0
  276. data/src/jpeg-7/testprog.jpg +0 -0
  277. data/src/jpeg-7/transupp.c +1533 -0
  278. data/src/jpeg-7/transupp.h +205 -0
  279. data/src/jpeg-7/usage.txt +605 -0
  280. data/src/jpeg-7/wizard.txt +211 -0
  281. data/src/jpeg-7/wrbmp.c +442 -0
  282. data/src/jpeg-7/wrgif.c +399 -0
  283. data/src/jpeg-7/wrjpgcom.1 +103 -0
  284. data/src/jpeg-7/wrjpgcom.c +583 -0
  285. data/src/jpeg-7/wrppm.c +269 -0
  286. data/src/jpeg-7/wrrle.c +305 -0
  287. data/src/jpeg-7/wrtarga.c +253 -0
  288. metadata +287 -6
  289. data/LICENSE +0 -20
  290. data/VERSION.yml +0 -4
@@ -0,0 +1,2 @@
1
+ .cvsignore
2
+ config.h
@@ -0,0 +1,36 @@
1
+ /* include/config.h.in. Generated automatically from configure.in by autoheader. */
2
+
3
+ /* Define to empty if the keyword does not work. */
4
+ #undef const
5
+
6
+ /* Define if the setvbuf function takes the buffering type as its second
7
+ argument and the buffer pointer as the third, as on System V
8
+ before release 3. */
9
+ #undef SETVBUF_REVERSED
10
+
11
+ /* Define if you have the ANSI C header files. */
12
+ #undef STDC_HEADERS
13
+
14
+ /* Define if you have the gettimeofday function. */
15
+ #undef HAVE_GETTIMEOFDAY
16
+
17
+ /* Define if you have the popen function. */
18
+ #undef HAVE_POPEN
19
+
20
+ /* Define if you have the wcschr function. */
21
+ #undef HAVE_WCSCHR
22
+
23
+ /* Define if you have the wcsdup function. */
24
+ #undef HAVE_WCSDUP
25
+
26
+ /* Define if you have the <pam.h> header file. */
27
+ #undef HAVE_PAM_H
28
+
29
+ /* Define if you have the <pnm.h> header file. */
30
+ #undef HAVE_PNM_H
31
+
32
+ /* Define if you have the <unistd.h> header file. */
33
+ #undef HAVE_UNISTD_H
34
+
35
+ /* Define if you have the <wchar.h> header file. */
36
+ #undef HAVE_WCHAR_H
@@ -0,0 +1,36 @@
1
+ /* include/config.h.in. Generated automatically from configure.in by autoheader. */
2
+
3
+ /* Define to empty if the keyword does not work. */
4
+ #undef const
5
+
6
+ /* Define if the setvbuf function takes the buffering type as its second
7
+ argument and the buffer pointer as the third, as on System V
8
+ before release 3. */
9
+ #undef SETVBUF_REVERSED
10
+
11
+ /* Define if you have the ANSI C header files. */
12
+ #undef STDC_HEADERS
13
+
14
+ /* Define if you have the gettimeofday function. */
15
+ #undef HAVE_GETTIMEOFDAY
16
+
17
+ /* Define if you have the popen function. */
18
+ #undef HAVE_POPEN
19
+
20
+ /* Define if you have the wcschr function. */
21
+ #undef HAVE_WCSCHR
22
+
23
+ /* Define if you have the wcsdup function. */
24
+ #undef HAVE_WCSDUP
25
+
26
+ /* Define if you have the <pam.h> header file. */
27
+ #undef HAVE_PAM_H
28
+
29
+ /* Define if you have the <pnm.h> header file. */
30
+ #undef HAVE_PNM_H
31
+
32
+ /* Define if you have the <unistd.h> header file. */
33
+ #undef HAVE_UNISTD_H
34
+
35
+ /* Define if you have the <wchar.h> header file. */
36
+ #undef HAVE_WCHAR_H
@@ -0,0 +1,2 @@
1
+ #define version_string "0.48"
2
+ #define release_string "20090802"
@@ -0,0 +1,3 @@
1
+ # this is not the final version!
2
+
3
+ cp ./bin/gocr /usr/local/bin/gocr
@@ -0,0 +1,57 @@
1
+ @rem why does DJGPP not work with dosemu?
2
+ @echo " --- compiling GOCR under DOS --- "
3
+ @GOTO DOS
4
+ # unix-shell does not know GOTO
5
+ # changes: .tcl cat=?, xli=?
6
+ # progress before Stop/button, gocrexe.zip-package
7
+ exit
8
+ :DOS
9
+ if "%1" == "compile" GOTO compile
10
+ @echo "I love this environment. --- Kick me!"
11
+ @rem %0 works only with real-dos, not with DOSEMU
12
+ @if "%0" == "" GOTO compile
13
+ @command.com /E:8000 /c %0 compile
14
+ @GOTO END
15
+ exit
16
+ :compile
17
+ @echo off
18
+ SET ROOT=D:\TMP2\CDROM\DOS\DJGPP
19
+ SET TEMP=%ROOT%\tmp
20
+ SET TMP=%TEMP%
21
+ SET BINPATH=%ROOT%\BIN\
22
+ PATH %BINPATH%;%PATH%
23
+ SET DJGPP=%ROOT%\DJGPP.ENV
24
+ SET OPT=-O2 -pedantic -Iinclude -Wall
25
+ SET OPT=-O2 -DHAVE_CONFIG_H
26
+ SET C_INCLUDE_PATH=SRC;INCLUDE;%C_INCLUDE_PATH%
27
+ REM mkdir tmp
28
+ @echo on
29
+ REM make makefile.dos
30
+ REM exit
31
+ gcc %OPT% -o a1.o -c src\box.c
32
+ gcc %OPT% -o a2.o -c src\database.c
33
+ gcc %OPT% -o a3.o -c src\detect.c
34
+ gcc %OPT% -o a4.o -c src\gocr.c
35
+ gcc %OPT% -o a5.o -c src\lines.c
36
+ gcc %OPT% -o a6.o -c src\list.c
37
+ gcc %OPT% -o a7.o -c src\ocr0.c
38
+ gcc %OPT% -o a8.o -c src\ocr0n.c
39
+ gcc %OPT% -o a9.o -c src\ocr1.c
40
+ gcc %OPT% -o aa.o -c src\otsu.c
41
+ gcc %OPT% -o ab.o -c src\output.c
42
+ gcc %OPT% -o ac.o -c src\pcx.c
43
+ gcc %OPT% -o ad.o -c src\pgm2asc.c
44
+ gcc %OPT% -o ae.o -c src\pixel.c
45
+ gcc %OPT% -o af.o -c src\pnm.c
46
+ gcc %OPT% -o ag.o -c src\remove.c
47
+ gcc %OPT% -o ah.o -c src\unicode.c
48
+ gcc %OPT% -o ai.o -c src\barcode.c
49
+ gcc %OPT% -o aj.o -c src\job.c
50
+ gcc %OPT% -o ak.o -c src\progress.c
51
+ REM having only 128 byte for command line is terrible (concatenate?)
52
+ gcc -o gocr.exe a1.o a2.o a3.o a4.o a5.o a6.o a7.o a8.o a9.o aa.o ab.o ac.o ad.o ae.o af.o ag.o ah.o ai.o aj.o ak.o
53
+ @if exist gocr.exe del *.o
54
+ @if exist gocr.exe strip gocr.exe
55
+ rem pkzip gocrexe gocr.exe gocr.tcl README
56
+ @GOTO END
57
+ :END
@@ -0,0 +1,2 @@
1
+ .cvsignore
2
+ Makefile
@@ -0,0 +1,29 @@
1
+ #
2
+ # Makefile for ./man path, used by configure
3
+ #
4
+
5
+ PROGRAM = gocr
6
+
7
+ mandir = ${prefix}/man
8
+
9
+ INSTALL=/usr/bin/install -c
10
+ DESTDIR=/usr/local
11
+
12
+ default: all
13
+
14
+ all:
15
+
16
+ # PHONY = don't look at file clean, -rm = start rm and ignore errors
17
+ .PHONY : clean proper install uninstall
18
+ install: all
19
+ $(INSTALL) -d $(DESTDIR)$(mandir)/man1
20
+ $(INSTALL) ../man/man1/$(PROGRAM).1 $(DESTDIR)$(mandir)/man1
21
+
22
+ uninstall:
23
+ -rm -f $(DESTDIR)$(mandir)/man1/$(PROGRAM).1
24
+
25
+ clean:
26
+ -rm -f *.o *~
27
+
28
+ proper: clean
29
+
@@ -0,0 +1,29 @@
1
+ #
2
+ # Makefile for ./man path, used by configure
3
+ #
4
+
5
+ PROGRAM = gocr
6
+
7
+ mandir = @mandir@
8
+
9
+ INSTALL=@INSTALL@
10
+ DESTDIR=@prefix@
11
+
12
+ default: all
13
+
14
+ all:
15
+
16
+ # PHONY = don't look at file clean, -rm = start rm and ignore errors
17
+ .PHONY : clean proper install uninstall
18
+ install: all
19
+ $(INSTALL) -d $(DESTDIR)$(mandir)/man1
20
+ $(INSTALL) ../man/man1/$(PROGRAM).1 $(DESTDIR)$(mandir)/man1
21
+
22
+ uninstall:
23
+ -rm -f $(DESTDIR)$(mandir)/man1/$(PROGRAM).1
24
+
25
+ clean:
26
+ -rm -f *.o *~
27
+
28
+ proper: clean
29
+
@@ -0,0 +1,166 @@
1
+ .\" -*-Nroff-*-
2
+ .\" Copyright 2000 Red Hat, Inc.
3
+ .TH GOCR 1 "29 Mar 2009" "Linux" "User's Manual"
4
+ .SH NAME
5
+ gocr \- command line text recognition tool
6
+ .SH SYNOPSIS
7
+ .B gocr
8
+ [\fIOPTION\fR] [\fB-i\fR] \fIpnm-file\fR
9
+ .fi
10
+ .SH DESCRIPTION
11
+ gocr is an optical character recognition program that can be used from
12
+ the command line. It takes input in PNM, PGM, PBM, PPM, or PCX
13
+ format, and writes recognized text to \fBstdout\fR. If the \fIpnm
14
+ file\fR is a single dash, PNM data is read from \fBstdin\fR.
15
+ If gzip, bzip2 and netpbm-progs are installed and your system
16
+ supports popen(3) also pnm.gz, pnm.bz2, png, jpg, jpeg, tiff,
17
+ gif, bmp, ps (only single pages) and eps are supported as input files
18
+ (not as input stream), where pnm can be replaced
19
+ by one of ppm, pgm and pbm.
20
+ .SH OPTIONS
21
+ .TP
22
+ \fB\-h\fR
23
+ show usage information
24
+ .TP
25
+ \fB\-i\fR \fIfile\fR
26
+ read input from \fIfile\fR (or \fBstdin\fR if \fIfile\fR is a single
27
+ dash)
28
+ .TP
29
+ \fB\-o\fR \fIfile\fR
30
+ send output to \fIfile\fR instead of \fBstdout\fR
31
+ .TP
32
+ \fB\-e\fR \fIfile\fR
33
+ send errors to \fIfile\fR instead of \fBstderr\fR or to \fBstdout\fR
34
+ if \fIfile\fR is a dash
35
+ .TP
36
+ \fB\-x\fR \fIfile\fR
37
+ progress output to \fIfile\fR
38
+ (\fIfile\fR can be a file name, a fifo name or a file descriptor 1...255),
39
+ this is useful for GUI developpers to show the OCR progress, the file
40
+ descriptor argument is only available, if compiled with __USE_POSIX defined
41
+ .TP
42
+ \fB\-p\fR \fIpath\fR
43
+ database path, a final slash must be included, default is ./db/,
44
+ this path will be populated with images of learned characters
45
+ .TP
46
+ \fB\-f\fR \fIformat\fR
47
+ output \fIformat\fR of the recognized text
48
+ (ISO8859_1 TeX HTML XML UTF8 ASCII), XML will also output position and
49
+ probability data
50
+ .TP
51
+ \fB\-l\fR \fIlevel\fR
52
+ set grey level to \fIlevel\fR (0<160<=255, default:
53
+ 0 for autodetect), darker pixels belong to characters, brighter pixels
54
+ are interpreted as background of the input image
55
+ .TP
56
+ \fB\-d\fR \fIsize\fR
57
+ set dust size in pixels (clusters smaller than this are removed),
58
+ 0 means no clusters are removed, the default is -1 for auto detection
59
+ .TP
60
+ \fB\-s\fR \fInum\fR
61
+ set spacewidth between words in units of dots (default: 0 for autodetect),
62
+ wider widths are interpreted as word spaces, smaller as character spaces
63
+ .TP
64
+ \fB\-v\fR \fIverbosity\fR
65
+ be verbose to stderr; \fIverbosity\fR is a bitfield
66
+ .TP
67
+ \fB\-c \fIstring\fR
68
+ only verbose output of characters from \fIstring\fR to stderr,
69
+ more output is generated for all characters within the string,
70
+ the underscore stands for unknown chars, this function is usefull
71
+ to limit debug information to the necessary one
72
+ .TP
73
+ \fB\-C \fIstring\fR
74
+ only recognise characters from \fIstring\fR, this is a filter function
75
+ in cases where the interest is only to a part of the character alphabet,
76
+ you can use 0-9 or a-z to specify ranges, use -- to detect the minus sign
77
+ .TP
78
+ \fB\-a\fR \fIcertainty\fR
79
+ set value for certainty of recognition (0..100; default: 95),
80
+ characters with a higher certainty are accepted, characters with a lower
81
+ certainty are treated as unknown (not recognized); set higher values, if
82
+ you want to have only more certain recognized characters
83
+ .TP
84
+ \fB\-u \fIstring\fR
85
+ output this string for every unrecognized character (default is "_")
86
+ .TP
87
+ \fB\-m\fR \fImode\fR
88
+ set oprational mode; mode is a bitfield (default: 0)
89
+ .TP
90
+ \fB\-n\fR \fIbool\fR
91
+ if \fIbool\fR is non-zero, only recognise numbers
92
+ (this is now obsolete, use -C "0123456789")
93
+ .PP
94
+ The verbosity is specified as a bitfield:
95
+ .TP 10
96
+ .B 1
97
+ print more info
98
+ .TP
99
+ .B 2
100
+ list shapes of boxes (see -c) to stderr
101
+ .TP
102
+ .B 4
103
+ list pattern of boxes (see -c) to stderr
104
+ .TP
105
+ .B 8
106
+ print pattern after recognition for debugging
107
+ .TP
108
+ .B 16
109
+ print debug information about recognition of lines to stderr
110
+ .TP
111
+ .B 32
112
+ create outXX.png with boxes and lines marked on each general OCR-step
113
+ .PP
114
+ The operation modes are:
115
+ .TP 10
116
+ .B 2
117
+ use database to recognize characters which are not recognized by
118
+ other algorithms, (early development)
119
+ .TP
120
+ .B 4
121
+ switching on layout analysis or zoning (development)
122
+ .TP
123
+ .B 8
124
+ don't compare unrecognized characters to recognized one
125
+ .TP
126
+ .B 16
127
+ don't try to divide overlapping characters to two or three single characters
128
+ .TP
129
+ .B 32
130
+ don't do context correction
131
+ .TP
132
+ .B 64
133
+ character packing, before recognition starts, similar characters
134
+ are searched and only one of this characters will be send to the
135
+ recognition engine (development)
136
+ .TP
137
+ .B 130
138
+ extend database, prompts user for unidentified characters
139
+ and extends the database with users answer (128+2, early development)
140
+ .TP
141
+ .B 256
142
+ switch off the recognition engine (makes sense together with -m 2)
143
+ .SH
144
+ .SH AUTHOR
145
+ Joerg Schulenburg (see http://jocr.sourceforge.net/ for EMAIL)
146
+ .br
147
+ First version of man page by Tim Waugh <twaugh@redhat.com>
148
+ .SH VERSION INFORMATION
149
+ This man page documents \fBgocr\fR, version 0.41.
150
+ .SH REPORTING BUGS
151
+ Report bugs to Joerg Schulenburg
152
+ .SH SEE ALSO
153
+ More details can be found at /usr/share/doc/gocr-\fBX.XX\fR/gocr.html.
154
+ Also read /usr/share/doc/gocr-\fBX.XX\fR/README to learn, how to improve
155
+ results.
156
+ .SH EXAMPLES
157
+ .TP
158
+ .B gocr -v 33 text1.pbm
159
+ output verbose information, out30.png is created to see details of
160
+ recognition process
161
+ .TP
162
+ .B gocr -v 7 -c _YV text1.pbm
163
+ verbose output for unknown chars and chars Y and V
164
+ .TP
165
+ .B djpeg -pnm -gray text.jpg | gocr -
166
+ convert a jpeg file to pnm format and input via pipe
@@ -0,0 +1,4 @@
1
+ .cvsignore
2
+ Makefile
3
+ gocr
4
+ *.o
@@ -0,0 +1,132 @@
1
+ #
2
+ # Makefile for ./src path, used by configure
3
+ #
4
+
5
+ EXEEXT =
6
+ PROGRAM = gocr$(EXEEXT)
7
+ # lib removed for simplification (v0.46)
8
+ # but Igor from OSRA an optical chemical structure recognition software
9
+ # wants it (v0.47 Mar09)
10
+ PGMASCLIB = Pgm2asc
11
+ #LIBPGMASCLIB = lib$(PGMASCLIB).a
12
+ # ToDo: need a better pgm2asc.h for lib users
13
+ #INCLUDEFILES = gocr.h
14
+ # avoid german compiler messages
15
+ LANG=C
16
+
17
+ LIBOBJS=pgm2asc.o \
18
+ box.o \
19
+ database.o \
20
+ detect.o \
21
+ barcode.o \
22
+ lines.o \
23
+ list.o \
24
+ ocr0.o \
25
+ ocr0n.o \
26
+ ocr1.o \
27
+ otsu.o \
28
+ output.o \
29
+ pixel.o \
30
+ unicode.o \
31
+ remove.o \
32
+ pnm.o \
33
+ pcx.o \
34
+ progress.o \
35
+ job.o
36
+
37
+ # these two lines are for cross-compiling, not tested
38
+ #srcdir = .
39
+ #VPATH = .
40
+ bindir = ${exec_prefix}/bin
41
+ # lib removed for simplification
42
+ #libdir = ${exec_prefix}/lib
43
+ #includedir = ${prefix}/include
44
+
45
+ CC=gcc
46
+ # lib removed for simplification
47
+ # ar,ranlib detection removed from configure (simplicity)
48
+ # but needed by some developpers (linux only) for for (make libs)
49
+ # RANLIB = @RANLIB@
50
+ # AR = @AR@
51
+ RANLIB = ranlib
52
+ AR = ar
53
+ INSTALL=/usr/bin/install -c
54
+ # shell is needed for OS/2 to let if test -r $(PROGRAM) ... work
55
+ SHELL=/bin/sh
56
+
57
+ DEFS=-DHAVE_CONFIG_H
58
+ CPPFLAGS=-Wall -g -fexceptions -DDO_DEBUG=1
59
+ # to see the config.h
60
+ CFLAGS=-g -O2 $(CPPFLAGS) -I../include $(DEFS)
61
+ LDFLAGS=-lm
62
+ LIBS=-lnetpbm
63
+ DESTDIR=/usr/local
64
+
65
+ .SUFFIXES: .s .o .c .h
66
+ # do not look for files if help (etc) is given
67
+ .PHONY : doc clean install libs default
68
+
69
+ .c.o: gocr.h pgm2asc.h ../include/config.h
70
+ $(CC) $(CFLAGS) -c -o $*.o $<
71
+
72
+ default: all
73
+
74
+ # all: $(PROGRAM) lib$(PGMASCLIB).a
75
+ all: $(PROGRAM)
76
+
77
+ gocr.o: gocr.h Makefile ../include/version.h
78
+
79
+ .c.h:
80
+
81
+ #$(PROGRAM): lib$(PGMASCLIB).a gocr.o
82
+ $(PROGRAM): $(LIBOBJS) gocr.o
83
+ # make it conform to ld --as-needed
84
+ #$(CC) -o $@ $(LDFLAGS) gocr.o ./lib$(PGMASCLIB).a $(LIBS)
85
+ $(CC) -o $@ $(LDFLAGS) gocr.o $(LIBOBJS) $(LIBS)
86
+ if test -r $(PROGRAM); then cp $@ ../bin; fi
87
+
88
+ libs: lib$(PGMASCLIB).a lib$(PGMASCLIB).0.48.so
89
+
90
+ lib$(PGMASCLIB).0.48.so: $(LIBOBJS)
91
+ $(CC) -fPIC -shared -Wl,-h$@ -o $@ $(LIBOBJS)
92
+ -ln -s $@ lib$(PGMASCLIB).so
93
+
94
+ lib$(PGMASCLIB).a: $(LIBOBJS)
95
+ # -rm -f $@
96
+ $(AR) cru $@ $(LIBOBJS)
97
+ $(RANLIB) $@
98
+
99
+ $(LIBOBJS): Makefile
100
+
101
+ # PHONY = don't look at file clean, -rm = start rm and ignore errors
102
+ .PHONY : clean proper install uninstall
103
+ install: all
104
+ #$(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
105
+ $(INSTALL) -d $(DESTDIR)$(bindir)
106
+ $(INSTALL) ../bin/$(PROGRAM) $(DESTDIR)$(bindir)
107
+ $(INSTALL) ../bin/gocr.tcl $(DESTDIR)$(bindir) # better X11/bin?
108
+ if test -f lib$(PGMASCLIB).a; then\
109
+ $(INSTALL) lib$(PGMASCLIB).a $(DESTDIR)$(libdir);\
110
+ $(INSTALL) lib$(PGMASCLIB).0.48.so $(DESTDIR)$(libdir);\
111
+ $(INSTALL) lib$(PGMASCLIB).so $(DESTDIR)$(libdir);\
112
+ fi
113
+ # ToDo: not sure that the link will be installed correctly
114
+ #$(INSTALL) $(INCLUDEFILES) $(DESTDIR)$(includedir)
115
+
116
+ # directories are not removed
117
+ uninstall:
118
+ -rm -f $(DESTDIR)$(bindir)/$(PROGRAM)
119
+ -rm -f $(DESTDIR)$(bindir)/gocr.tcl
120
+ -rm -f $(DESTDIR)$(libdir)/lib$(PGMASCLIB).a
121
+ -rm -f $(DESTDIR)$(libdir)/lib$(PGMASCLIB).0.48.so
122
+ -rm -f $(DESTDIR)$(libdir)/lib$(PGMASCLIB).so
123
+ # ToDo: set to old version.so ?
124
+ #for X in $(INCLUDEFILES); do rm -f $(DESTDIR)$(includedir)/$$X; done
125
+
126
+ clean:
127
+ -rm -f *.o *~
128
+
129
+ proper: clean
130
+ -rm -f gocr libPgm2asc.*
131
+ -rm -f gocr
132
+