tesseract_bin 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +23 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +46 -0
- data/VERSION +1 -0
- data/ext/tesseract_bin/extconf.rb +17 -0
- data/lib/tesseract_bin.rb +12 -0
- data/tesseract_bin.gemspec +660 -0
- data/test/helper.rb +18 -0
- data/test/test_tesseract_bin.rb +7 -0
- data/vendor/tesseract-2.04/AUTHORS +8 -0
- data/vendor/tesseract-2.04/COPYING +23 -0
- data/vendor/tesseract-2.04/ChangeLog +71 -0
- data/vendor/tesseract-2.04/INSTALL +229 -0
- data/vendor/tesseract-2.04/Makefile.am +20 -0
- data/vendor/tesseract-2.04/Makefile.in +641 -0
- data/vendor/tesseract-2.04/NEWS +1 -0
- data/vendor/tesseract-2.04/README +138 -0
- data/vendor/tesseract-2.04/ReleaseNotes +213 -0
- data/vendor/tesseract-2.04/StdAfx.cpp +8 -0
- data/vendor/tesseract-2.04/StdAfx.h +24 -0
- data/vendor/tesseract-2.04/ccmain/Makefile.am +63 -0
- data/vendor/tesseract-2.04/ccmain/Makefile.in +735 -0
- data/vendor/tesseract-2.04/ccmain/adaptions.cpp +1082 -0
- data/vendor/tesseract-2.04/ccmain/adaptions.h +109 -0
- data/vendor/tesseract-2.04/ccmain/applybox.cpp +891 -0
- data/vendor/tesseract-2.04/ccmain/applybox.h +73 -0
- data/vendor/tesseract-2.04/ccmain/baseapi.cpp +1105 -0
- data/vendor/tesseract-2.04/ccmain/baseapi.h +256 -0
- data/vendor/tesseract-2.04/ccmain/blobcmp.cpp +76 -0
- data/vendor/tesseract-2.04/ccmain/blobcmp.h +29 -0
- data/vendor/tesseract-2.04/ccmain/callnet.cpp +93 -0
- data/vendor/tesseract-2.04/ccmain/callnet.h +32 -0
- data/vendor/tesseract-2.04/ccmain/charcut.cpp +704 -0
- data/vendor/tesseract-2.04/ccmain/charcut.h +120 -0
- data/vendor/tesseract-2.04/ccmain/charsample.cpp +699 -0
- data/vendor/tesseract-2.04/ccmain/control.cpp +1842 -0
- data/vendor/tesseract-2.04/ccmain/control.h +198 -0
- data/vendor/tesseract-2.04/ccmain/docqual.cpp +1481 -0
- data/vendor/tesseract-2.04/ccmain/docqual.h +155 -0
- data/vendor/tesseract-2.04/ccmain/expandblob.cpp +82 -0
- data/vendor/tesseract-2.04/ccmain/expandblob.h +13 -0
- data/vendor/tesseract-2.04/ccmain/fixspace.cpp +989 -0
- data/vendor/tesseract-2.04/ccmain/fixspace.h +72 -0
- data/vendor/tesseract-2.04/ccmain/fixxht.cpp +825 -0
- data/vendor/tesseract-2.04/ccmain/fixxht.h +93 -0
- data/vendor/tesseract-2.04/ccmain/imgscale.cpp +154 -0
- data/vendor/tesseract-2.04/ccmain/imgscale.h +32 -0
- data/vendor/tesseract-2.04/ccmain/matmatch.cpp +391 -0
- data/vendor/tesseract-2.04/ccmain/matmatch.h +48 -0
- data/vendor/tesseract-2.04/ccmain/output.cpp +1273 -0
- data/vendor/tesseract-2.04/ccmain/output.h +116 -0
- data/vendor/tesseract-2.04/ccmain/pagewalk.cpp +666 -0
- data/vendor/tesseract-2.04/ccmain/pagewalk.h +155 -0
- data/vendor/tesseract-2.04/ccmain/paircmp.cpp +107 -0
- data/vendor/tesseract-2.04/ccmain/paircmp.h +43 -0
- data/vendor/tesseract-2.04/ccmain/pgedit.cpp +1867 -0
- data/vendor/tesseract-2.04/ccmain/pgedit.h +181 -0
- data/vendor/tesseract-2.04/ccmain/reject.cpp +1775 -0
- data/vendor/tesseract-2.04/ccmain/reject.h +181 -0
- data/vendor/tesseract-2.04/ccmain/scaleimg.cpp +366 -0
- data/vendor/tesseract-2.04/ccmain/scaleimg.h +35 -0
- data/vendor/tesseract-2.04/ccmain/tessbox.cpp +375 -0
- data/vendor/tesseract-2.04/ccmain/tessbox.h +110 -0
- data/vendor/tesseract-2.04/ccmain/tessedit.cpp +278 -0
- data/vendor/tesseract-2.04/ccmain/tessedit.h +49 -0
- data/vendor/tesseract-2.04/ccmain/tessembedded.cpp +110 -0
- data/vendor/tesseract-2.04/ccmain/tessembedded.h +38 -0
- data/vendor/tesseract-2.04/ccmain/tesseractfull.cc +37 -0
- data/vendor/tesseract-2.04/ccmain/tesseractmain.cpp +387 -0
- data/vendor/tesseract-2.04/ccmain/tesseractmain.h +58 -0
- data/vendor/tesseract-2.04/ccmain/tessio.h +110 -0
- data/vendor/tesseract-2.04/ccmain/tessvars.cpp +38 -0
- data/vendor/tesseract-2.04/ccmain/tessvars.h +48 -0
- data/vendor/tesseract-2.04/ccmain/tfacep.h +62 -0
- data/vendor/tesseract-2.04/ccmain/tfacepp.cpp +443 -0
- data/vendor/tesseract-2.04/ccmain/tfacepp.h +85 -0
- data/vendor/tesseract-2.04/ccmain/tstruct.cpp +549 -0
- data/vendor/tesseract-2.04/ccmain/tstruct.h +108 -0
- data/vendor/tesseract-2.04/ccmain/varabled.cpp +346 -0
- data/vendor/tesseract-2.04/ccmain/varabled.h +125 -0
- data/vendor/tesseract-2.04/ccmain/werdit.cpp +193 -0
- data/vendor/tesseract-2.04/ccmain/werdit.h +67 -0
- data/vendor/tesseract-2.04/ccstruct/Makefile.am +25 -0
- data/vendor/tesseract-2.04/ccstruct/Makefile.in +650 -0
- data/vendor/tesseract-2.04/ccstruct/blckerr.h +29 -0
- data/vendor/tesseract-2.04/ccstruct/blobbox.cpp +778 -0
- data/vendor/tesseract-2.04/ccstruct/blobbox.h +381 -0
- data/vendor/tesseract-2.04/ccstruct/blobs.cpp +247 -0
- data/vendor/tesseract-2.04/ccstruct/blobs.h +119 -0
- data/vendor/tesseract-2.04/ccstruct/blread.cpp +537 -0
- data/vendor/tesseract-2.04/ccstruct/blread.h +63 -0
- data/vendor/tesseract-2.04/ccstruct/callcpp.cpp +252 -0
- data/vendor/tesseract-2.04/ccstruct/coutln.cpp +650 -0
- data/vendor/tesseract-2.04/ccstruct/coutln.h +186 -0
- data/vendor/tesseract-2.04/ccstruct/crakedge.h +39 -0
- data/vendor/tesseract-2.04/ccstruct/genblob.cpp +133 -0
- data/vendor/tesseract-2.04/ccstruct/genblob.h +52 -0
- data/vendor/tesseract-2.04/ccstruct/hpddef.h +39 -0
- data/vendor/tesseract-2.04/ccstruct/hpdsizes.h +8 -0
- data/vendor/tesseract-2.04/ccstruct/ipoints.h +479 -0
- data/vendor/tesseract-2.04/ccstruct/labls.cpp +188 -0
- data/vendor/tesseract-2.04/ccstruct/labls.h +38 -0
- data/vendor/tesseract-2.04/ccstruct/linlsq.cpp +249 -0
- data/vendor/tesseract-2.04/ccstruct/linlsq.h +102 -0
- data/vendor/tesseract-2.04/ccstruct/lmedsq.cpp +453 -0
- data/vendor/tesseract-2.04/ccstruct/lmedsq.h +84 -0
- data/vendor/tesseract-2.04/ccstruct/mod128.cpp +100 -0
- data/vendor/tesseract-2.04/ccstruct/mod128.h +85 -0
- data/vendor/tesseract-2.04/ccstruct/normalis.cpp +176 -0
- data/vendor/tesseract-2.04/ccstruct/normalis.h +108 -0
- data/vendor/tesseract-2.04/ccstruct/ocrblock.cpp +369 -0
- data/vendor/tesseract-2.04/ccstruct/ocrblock.h +235 -0
- data/vendor/tesseract-2.04/ccstruct/ocrrow.cpp +216 -0
- data/vendor/tesseract-2.04/ccstruct/ocrrow.h +133 -0
- data/vendor/tesseract-2.04/ccstruct/pageblk.cpp +879 -0
- data/vendor/tesseract-2.04/ccstruct/pageblk.h +318 -0
- data/vendor/tesseract-2.04/ccstruct/pageres.cpp +330 -0
- data/vendor/tesseract-2.04/ccstruct/pageres.h +313 -0
- data/vendor/tesseract-2.04/ccstruct/pdblock.cpp +361 -0
- data/vendor/tesseract-2.04/ccstruct/pdblock.h +181 -0
- data/vendor/tesseract-2.04/ccstruct/pdclass.h +54 -0
- data/vendor/tesseract-2.04/ccstruct/points.cpp +102 -0
- data/vendor/tesseract-2.04/ccstruct/points.h +299 -0
- data/vendor/tesseract-2.04/ccstruct/polyaprx.cpp +588 -0
- data/vendor/tesseract-2.04/ccstruct/polyaprx.h +51 -0
- data/vendor/tesseract-2.04/ccstruct/polyblk.cpp +398 -0
- data/vendor/tesseract-2.04/ccstruct/polyblk.h +122 -0
- data/vendor/tesseract-2.04/ccstruct/polyblob.cpp +357 -0
- data/vendor/tesseract-2.04/ccstruct/polyblob.h +102 -0
- data/vendor/tesseract-2.04/ccstruct/polyvert.cpp +23 -0
- data/vendor/tesseract-2.04/ccstruct/polyvert.h +58 -0
- data/vendor/tesseract-2.04/ccstruct/poutline.cpp +441 -0
- data/vendor/tesseract-2.04/ccstruct/poutline.h +125 -0
- data/vendor/tesseract-2.04/ccstruct/quadlsq.cpp +147 -0
- data/vendor/tesseract-2.04/ccstruct/quadlsq.h +67 -0
- data/vendor/tesseract-2.04/ccstruct/quadratc.cpp +21 -0
- data/vendor/tesseract-2.04/ccstruct/quadratc.h +63 -0
- data/vendor/tesseract-2.04/ccstruct/quspline.cpp +382 -0
- data/vendor/tesseract-2.04/ccstruct/quspline.h +113 -0
- data/vendor/tesseract-2.04/ccstruct/ratngs.cpp +372 -0
- data/vendor/tesseract-2.04/ccstruct/ratngs.h +198 -0
- data/vendor/tesseract-2.04/ccstruct/rect.cpp +229 -0
- data/vendor/tesseract-2.04/ccstruct/rect.h +320 -0
- data/vendor/tesseract-2.04/ccstruct/rejctmap.cpp +545 -0
- data/vendor/tesseract-2.04/ccstruct/rejctmap.h +284 -0
- data/vendor/tesseract-2.04/ccstruct/rwpoly.cpp +89 -0
- data/vendor/tesseract-2.04/ccstruct/rwpoly.h +45 -0
- data/vendor/tesseract-2.04/ccstruct/statistc.cpp +905 -0
- data/vendor/tesseract-2.04/ccstruct/statistc.h +135 -0
- data/vendor/tesseract-2.04/ccstruct/stepblob.cpp +296 -0
- data/vendor/tesseract-2.04/ccstruct/stepblob.h +88 -0
- data/vendor/tesseract-2.04/ccstruct/txtregn.cpp +230 -0
- data/vendor/tesseract-2.04/ccstruct/txtregn.h +155 -0
- data/vendor/tesseract-2.04/ccstruct/vecfuncs.cpp +63 -0
- data/vendor/tesseract-2.04/ccstruct/vecfuncs.h +91 -0
- data/vendor/tesseract-2.04/ccstruct/werd.cpp +967 -0
- data/vendor/tesseract-2.04/ccstruct/werd.h +277 -0
- data/vendor/tesseract-2.04/ccutil/Makefile.am +19 -0
- data/vendor/tesseract-2.04/ccutil/Makefile.in +626 -0
- data/vendor/tesseract-2.04/ccutil/basedir.cpp +118 -0
- data/vendor/tesseract-2.04/ccutil/basedir.h +32 -0
- data/vendor/tesseract-2.04/ccutil/bits16.cpp +30 -0
- data/vendor/tesseract-2.04/ccutil/bits16.h +61 -0
- data/vendor/tesseract-2.04/ccutil/boxread.cpp +105 -0
- data/vendor/tesseract-2.04/ccutil/boxread.h +44 -0
- data/vendor/tesseract-2.04/ccutil/clst.cpp +626 -0
- data/vendor/tesseract-2.04/ccutil/clst.h +1085 -0
- data/vendor/tesseract-2.04/ccutil/debugwin.cpp +500 -0
- data/vendor/tesseract-2.04/ccutil/debugwin.h +103 -0
- data/vendor/tesseract-2.04/ccutil/elst.cpp +593 -0
- data/vendor/tesseract-2.04/ccutil/elst.h +1125 -0
- data/vendor/tesseract-2.04/ccutil/elst2.cpp +606 -0
- data/vendor/tesseract-2.04/ccutil/elst2.h +1121 -0
- data/vendor/tesseract-2.04/ccutil/errcode.cpp +104 -0
- data/vendor/tesseract-2.04/ccutil/errcode.h +104 -0
- data/vendor/tesseract-2.04/ccutil/fileerr.h +34 -0
- data/vendor/tesseract-2.04/ccutil/globaloc.cpp +115 -0
- data/vendor/tesseract-2.04/ccutil/globaloc.h +40 -0
- data/vendor/tesseract-2.04/ccutil/hashfn.cpp +57 -0
- data/vendor/tesseract-2.04/ccutil/hashfn.h +30 -0
- data/vendor/tesseract-2.04/ccutil/host.h +180 -0
- data/vendor/tesseract-2.04/ccutil/hosthplb.h +1 -0
- data/vendor/tesseract-2.04/ccutil/lsterr.h +43 -0
- data/vendor/tesseract-2.04/ccutil/mainblk.cpp +126 -0
- data/vendor/tesseract-2.04/ccutil/mainblk.h +39 -0
- data/vendor/tesseract-2.04/ccutil/memblk.cpp +1106 -0
- data/vendor/tesseract-2.04/ccutil/memblk.h +189 -0
- data/vendor/tesseract-2.04/ccutil/memry.cpp +532 -0
- data/vendor/tesseract-2.04/ccutil/memry.h +192 -0
- data/vendor/tesseract-2.04/ccutil/memryerr.h +38 -0
- data/vendor/tesseract-2.04/ccutil/mfcpch.cpp +5 -0
- data/vendor/tesseract-2.04/ccutil/mfcpch.h +37 -0
- data/vendor/tesseract-2.04/ccutil/ndminx.h +31 -0
- data/vendor/tesseract-2.04/ccutil/notdll.h +28 -0
- data/vendor/tesseract-2.04/ccutil/nwmain.h +176 -0
- data/vendor/tesseract-2.04/ccutil/ocrclass.h +345 -0
- data/vendor/tesseract-2.04/ccutil/ocrshell.cpp +772 -0
- data/vendor/tesseract-2.04/ccutil/ocrshell.h +191 -0
- data/vendor/tesseract-2.04/ccutil/platform.h +18 -0
- data/vendor/tesseract-2.04/ccutil/scanutils.cpp +543 -0
- data/vendor/tesseract-2.04/ccutil/scanutils.h +55 -0
- data/vendor/tesseract-2.04/ccutil/secname.h +9 -0
- data/vendor/tesseract-2.04/ccutil/serialis.cpp +117 -0
- data/vendor/tesseract-2.04/ccutil/serialis.h +93 -0
- data/vendor/tesseract-2.04/ccutil/stderr.h +26 -0
- data/vendor/tesseract-2.04/ccutil/strngs.cpp +495 -0
- data/vendor/tesseract-2.04/ccutil/strngs.h +138 -0
- data/vendor/tesseract-2.04/ccutil/tessclas.h +135 -0
- data/vendor/tesseract-2.04/ccutil/tessopt.cpp +61 -0
- data/vendor/tesseract-2.04/ccutil/tessopt.h +30 -0
- data/vendor/tesseract-2.04/ccutil/tprintf.cpp +122 -0
- data/vendor/tesseract-2.04/ccutil/tprintf.h +35 -0
- data/vendor/tesseract-2.04/ccutil/unichar.cpp +144 -0
- data/vendor/tesseract-2.04/ccutil/unichar.h +84 -0
- data/vendor/tesseract-2.04/ccutil/unicharmap.cpp +172 -0
- data/vendor/tesseract-2.04/ccutil/unicharmap.h +82 -0
- data/vendor/tesseract-2.04/ccutil/unicharset.cpp +307 -0
- data/vendor/tesseract-2.04/ccutil/unicharset.h +267 -0
- data/vendor/tesseract-2.04/ccutil/varable.cpp +672 -0
- data/vendor/tesseract-2.04/ccutil/varable.h +419 -0
- data/vendor/tesseract-2.04/classify/Makefile.am +24 -0
- data/vendor/tesseract-2.04/classify/Makefile.in +647 -0
- data/vendor/tesseract-2.04/classify/adaptive.cpp +535 -0
- data/vendor/tesseract-2.04/classify/adaptive.h +199 -0
- data/vendor/tesseract-2.04/classify/adaptmatch.cpp +2958 -0
- data/vendor/tesseract-2.04/classify/adaptmatch.h +86 -0
- data/vendor/tesseract-2.04/classify/baseline.cpp +58 -0
- data/vendor/tesseract-2.04/classify/baseline.h +91 -0
- data/vendor/tesseract-2.04/classify/blobclass.cpp +123 -0
- data/vendor/tesseract-2.04/classify/blobclass.h +49 -0
- data/vendor/tesseract-2.04/classify/chartoname.cpp +74 -0
- data/vendor/tesseract-2.04/classify/chartoname.h +21 -0
- data/vendor/tesseract-2.04/classify/cluster.cpp +2834 -0
- data/vendor/tesseract-2.04/classify/cluster.h +158 -0
- data/vendor/tesseract-2.04/classify/clusttool.cpp +507 -0
- data/vendor/tesseract-2.04/classify/clusttool.h +70 -0
- data/vendor/tesseract-2.04/classify/cutoffs.cpp +73 -0
- data/vendor/tesseract-2.04/classify/cutoffs.h +49 -0
- data/vendor/tesseract-2.04/classify/extern.h +32 -0
- data/vendor/tesseract-2.04/classify/extract.cpp +100 -0
- data/vendor/tesseract-2.04/classify/extract.h +36 -0
- data/vendor/tesseract-2.04/classify/featdefs.cpp +244 -0
- data/vendor/tesseract-2.04/classify/featdefs.h +71 -0
- data/vendor/tesseract-2.04/classify/flexfx.cpp +87 -0
- data/vendor/tesseract-2.04/classify/flexfx.h +34 -0
- data/vendor/tesseract-2.04/classify/float2int.cpp +126 -0
- data/vendor/tesseract-2.04/classify/float2int.h +65 -0
- data/vendor/tesseract-2.04/classify/fpoint.cpp +73 -0
- data/vendor/tesseract-2.04/classify/fpoint.h +63 -0
- data/vendor/tesseract-2.04/classify/fxdefs.cpp +74 -0
- data/vendor/tesseract-2.04/classify/fxdefs.h +93 -0
- data/vendor/tesseract-2.04/classify/fxid.h +69 -0
- data/vendor/tesseract-2.04/classify/hideedge.cpp +35 -0
- data/vendor/tesseract-2.04/classify/hideedge.h +76 -0
- data/vendor/tesseract-2.04/classify/intfx.cpp +608 -0
- data/vendor/tesseract-2.04/classify/intfx.h +63 -0
- data/vendor/tesseract-2.04/classify/intmatcher.cpp +1524 -0
- data/vendor/tesseract-2.04/classify/intmatcher.h +199 -0
- data/vendor/tesseract-2.04/classify/intproto.cpp +1823 -0
- data/vendor/tesseract-2.04/classify/intproto.h +320 -0
- data/vendor/tesseract-2.04/classify/kdtree.cpp +884 -0
- data/vendor/tesseract-2.04/classify/kdtree.h +118 -0
- data/vendor/tesseract-2.04/classify/mf.cpp +106 -0
- data/vendor/tesseract-2.04/classify/mf.h +43 -0
- data/vendor/tesseract-2.04/classify/mfdefs.cpp +58 -0
- data/vendor/tesseract-2.04/classify/mfdefs.h +60 -0
- data/vendor/tesseract-2.04/classify/mfoutline.cpp +1087 -0
- data/vendor/tesseract-2.04/classify/mfoutline.h +277 -0
- data/vendor/tesseract-2.04/classify/mfx.cpp +436 -0
- data/vendor/tesseract-2.04/classify/mfx.h +52 -0
- data/vendor/tesseract-2.04/classify/normfeat.cpp +132 -0
- data/vendor/tesseract-2.04/classify/normfeat.h +63 -0
- data/vendor/tesseract-2.04/classify/normmatch.cpp +305 -0
- data/vendor/tesseract-2.04/classify/normmatch.h +38 -0
- data/vendor/tesseract-2.04/classify/ocrfeatures.cpp +310 -0
- data/vendor/tesseract-2.04/classify/ocrfeatures.h +148 -0
- data/vendor/tesseract-2.04/classify/outfeat.cpp +262 -0
- data/vendor/tesseract-2.04/classify/outfeat.h +76 -0
- data/vendor/tesseract-2.04/classify/picofeat.cpp +297 -0
- data/vendor/tesseract-2.04/classify/picofeat.h +65 -0
- data/vendor/tesseract-2.04/classify/protos.cpp +472 -0
- data/vendor/tesseract-2.04/classify/protos.h +258 -0
- data/vendor/tesseract-2.04/classify/sigmenu.cpp +225 -0
- data/vendor/tesseract-2.04/classify/sigmenu.h +39 -0
- data/vendor/tesseract-2.04/classify/speckle.cpp +127 -0
- data/vendor/tesseract-2.04/classify/speckle.h +69 -0
- data/vendor/tesseract-2.04/classify/xform2d.cpp +120 -0
- data/vendor/tesseract-2.04/classify/xform2d.h +60 -0
- data/vendor/tesseract-2.04/config/config.guess +1466 -0
- data/vendor/tesseract-2.04/config/config.h.in +188 -0
- data/vendor/tesseract-2.04/config/config.sub +1579 -0
- data/vendor/tesseract-2.04/config/depcomp +530 -0
- data/vendor/tesseract-2.04/config/install-sh +269 -0
- data/vendor/tesseract-2.04/config/missing +198 -0
- data/vendor/tesseract-2.04/config/mkinstalldirs +40 -0
- data/vendor/tesseract-2.04/config/stamp-h.in +0 -0
- data/vendor/tesseract-2.04/configure +10424 -0
- data/vendor/tesseract-2.04/cutil/Makefile.am +14 -0
- data/vendor/tesseract-2.04/cutil/Makefile.in +612 -0
- data/vendor/tesseract-2.04/cutil/bitvec.cpp +115 -0
- data/vendor/tesseract-2.04/cutil/bitvec.h +100 -0
- data/vendor/tesseract-2.04/cutil/callcpp.h +190 -0
- data/vendor/tesseract-2.04/cutil/const.h +108 -0
- data/vendor/tesseract-2.04/cutil/cutil.cpp +92 -0
- data/vendor/tesseract-2.04/cutil/cutil.h +159 -0
- data/vendor/tesseract-2.04/cutil/danerror.cpp +144 -0
- data/vendor/tesseract-2.04/cutil/danerror.h +41 -0
- data/vendor/tesseract-2.04/cutil/debug.cpp +97 -0
- data/vendor/tesseract-2.04/cutil/debug.h +348 -0
- data/vendor/tesseract-2.04/cutil/efio.cpp +62 -0
- data/vendor/tesseract-2.04/cutil/efio.h +32 -0
- data/vendor/tesseract-2.04/cutil/emalloc.cpp +91 -0
- data/vendor/tesseract-2.04/cutil/emalloc.h +44 -0
- data/vendor/tesseract-2.04/cutil/freelist.cpp +75 -0
- data/vendor/tesseract-2.04/cutil/freelist.h +45 -0
- data/vendor/tesseract-2.04/cutil/funcdefs.h +35 -0
- data/vendor/tesseract-2.04/cutil/general.h +33 -0
- data/vendor/tesseract-2.04/cutil/globals.cpp +69 -0
- data/vendor/tesseract-2.04/cutil/globals.h +70 -0
- data/vendor/tesseract-2.04/cutil/listio.cpp +68 -0
- data/vendor/tesseract-2.04/cutil/listio.h +43 -0
- data/vendor/tesseract-2.04/cutil/minmax.h +40 -0
- data/vendor/tesseract-2.04/cutil/oldheap.cpp +337 -0
- data/vendor/tesseract-2.04/cutil/oldheap.h +126 -0
- data/vendor/tesseract-2.04/cutil/oldlist.cpp +393 -0
- data/vendor/tesseract-2.04/cutil/oldlist.h +350 -0
- data/vendor/tesseract-2.04/cutil/structures.cpp +66 -0
- data/vendor/tesseract-2.04/cutil/structures.h +112 -0
- data/vendor/tesseract-2.04/cutil/tessarray.cpp +115 -0
- data/vendor/tesseract-2.04/cutil/tessarray.h +166 -0
- data/vendor/tesseract-2.04/cutil/tordvars.cpp +95 -0
- data/vendor/tesseract-2.04/cutil/tordvars.h +61 -0
- data/vendor/tesseract-2.04/cutil/variables.cpp +317 -0
- data/vendor/tesseract-2.04/cutil/variables.h +170 -0
- data/vendor/tesseract-2.04/dict/Makefile.am +13 -0
- data/vendor/tesseract-2.04/dict/Makefile.in +609 -0
- data/vendor/tesseract-2.04/dict/choicearr.h +96 -0
- data/vendor/tesseract-2.04/dict/choices.cpp +210 -0
- data/vendor/tesseract-2.04/dict/choices.h +241 -0
- data/vendor/tesseract-2.04/dict/context.cpp +270 -0
- data/vendor/tesseract-2.04/dict/context.h +82 -0
- data/vendor/tesseract-2.04/dict/dawg.cpp +363 -0
- data/vendor/tesseract-2.04/dict/dawg.h +394 -0
- data/vendor/tesseract-2.04/dict/hyphen.cpp +84 -0
- data/vendor/tesseract-2.04/dict/hyphen.h +125 -0
- data/vendor/tesseract-2.04/dict/lookdawg.cpp +228 -0
- data/vendor/tesseract-2.04/dict/lookdawg.h +76 -0
- data/vendor/tesseract-2.04/dict/makedawg.cpp +449 -0
- data/vendor/tesseract-2.04/dict/makedawg.h +83 -0
- data/vendor/tesseract-2.04/dict/matchdefs.h +145 -0
- data/vendor/tesseract-2.04/dict/permdawg.cpp +415 -0
- data/vendor/tesseract-2.04/dict/permdawg.h +98 -0
- data/vendor/tesseract-2.04/dict/permngram.cpp +358 -0
- data/vendor/tesseract-2.04/dict/permngram.h +33 -0
- data/vendor/tesseract-2.04/dict/permnum.cpp +522 -0
- data/vendor/tesseract-2.04/dict/permnum.h +83 -0
- data/vendor/tesseract-2.04/dict/permute.cpp +1704 -0
- data/vendor/tesseract-2.04/dict/permute.h +93 -0
- data/vendor/tesseract-2.04/dict/reduce.cpp +424 -0
- data/vendor/tesseract-2.04/dict/reduce.h +112 -0
- data/vendor/tesseract-2.04/dict/states.cpp +382 -0
- data/vendor/tesseract-2.04/dict/states.h +111 -0
- data/vendor/tesseract-2.04/dict/stopper.cpp +1458 -0
- data/vendor/tesseract-2.04/dict/stopper.h +103 -0
- data/vendor/tesseract-2.04/dict/trie.cpp +683 -0
- data/vendor/tesseract-2.04/dict/trie.h +190 -0
- data/vendor/tesseract-2.04/dlltest/Makefile.am +2 -0
- data/vendor/tesseract-2.04/dlltest/Makefile.in +388 -0
- data/vendor/tesseract-2.04/dlltest/dlltest.cpp +163 -0
- data/vendor/tesseract-2.04/dlltest/dlltest.dsp +186 -0
- data/vendor/tesseract-2.04/dlltest/dlltest.vcproj +637 -0
- data/vendor/tesseract-2.04/eurotext.tif +0 -0
- data/vendor/tesseract-2.04/image/Makefile.am +10 -0
- data/vendor/tesseract-2.04/image/Makefile.in +596 -0
- data/vendor/tesseract-2.04/image/bitstrm.cpp +157 -0
- data/vendor/tesseract-2.04/image/bitstrm.h +73 -0
- data/vendor/tesseract-2.04/image/img.h +336 -0
- data/vendor/tesseract-2.04/image/imgbmp.cpp +223 -0
- data/vendor/tesseract-2.04/image/imgbmp.h +50 -0
- data/vendor/tesseract-2.04/image/imgerrs.h +35 -0
- data/vendor/tesseract-2.04/image/imgio.cpp +321 -0
- data/vendor/tesseract-2.04/image/imgio.h +22 -0
- data/vendor/tesseract-2.04/image/imgs.cpp +1764 -0
- data/vendor/tesseract-2.04/image/imgs.h +102 -0
- data/vendor/tesseract-2.04/image/imgtiff.cpp +723 -0
- data/vendor/tesseract-2.04/image/imgtiff.h +89 -0
- data/vendor/tesseract-2.04/image/imgunpk.h +1377 -0
- data/vendor/tesseract-2.04/image/svshowim.cpp +40 -0
- data/vendor/tesseract-2.04/image/svshowim.h +25 -0
- data/vendor/tesseract-2.04/java/Makefile.am +4 -0
- data/vendor/tesseract-2.04/java/Makefile.in +473 -0
- data/vendor/tesseract-2.04/java/com/Makefile.am +1 -0
- data/vendor/tesseract-2.04/java/com/Makefile.in +470 -0
- data/vendor/tesseract-2.04/java/com/google/Makefile.am +1 -0
- data/vendor/tesseract-2.04/java/com/google/Makefile.in +470 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/Makefile.am +4 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/Makefile.in +473 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ScrollView.java +421 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/events/Makefile.am +5 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/events/Makefile.in +474 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/events/SVEvent.java +87 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/events/SVEventHandler.java +296 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/events/SVEventType.java +31 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/Makefile.am +7 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/Makefile.in +476 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVAbstractMenuItem.java +58 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVCheckboxMenuItem.java +60 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVEmptyMenuItem.java +48 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVImageHandler.java +228 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVMenuBar.java +130 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVMenuItem.java +61 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVPopupMenu.java +142 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVSubMenuItem.java +41 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVWindow.java +643 -0
- data/vendor/tesseract-2.04/java/makefile +55 -0
- data/vendor/tesseract-2.04/pageseg/Makefile.am +13 -0
- data/vendor/tesseract-2.04/pageseg/Makefile.in +596 -0
- data/vendor/tesseract-2.04/pageseg/leptonica_pageseg.cpp +363 -0
- data/vendor/tesseract-2.04/pageseg/leptonica_pageseg.h +90 -0
- data/vendor/tesseract-2.04/pageseg/leptonica_pageseg_interface.cpp +82 -0
- data/vendor/tesseract-2.04/pageseg/leptonica_pageseg_interface.h +30 -0
- data/vendor/tesseract-2.04/pageseg/pageseg.cpp +170 -0
- data/vendor/tesseract-2.04/pageseg/pageseg.h +29 -0
- data/vendor/tesseract-2.04/phototest.tif +0 -0
- data/vendor/tesseract-2.04/tessdata/Makefile.am +31 -0
- data/vendor/tesseract-2.04/tessdata/Makefile.in +529 -0
- data/vendor/tesseract-2.04/tessdata/configs/Makefile.am +3 -0
- data/vendor/tesseract-2.04/tessdata/configs/Makefile.in +344 -0
- data/vendor/tesseract-2.04/tessdata/configs/api_config +1 -0
- data/vendor/tesseract-2.04/tessdata/configs/box.train +19 -0
- data/vendor/tesseract-2.04/tessdata/configs/box.train.stderr +18 -0
- data/vendor/tesseract-2.04/tessdata/configs/inter +4 -0
- data/vendor/tesseract-2.04/tessdata/configs/kannada +4 -0
- data/vendor/tesseract-2.04/tessdata/configs/makebox +1 -0
- data/vendor/tesseract-2.04/tessdata/configs/unlv +3 -0
- data/vendor/tesseract-2.04/tessdata/confsets +3 -0
- data/vendor/tesseract-2.04/tessdata/eng.DangAmbigs +39 -0
- data/vendor/tesseract-2.04/tessdata/eng.freq-dawg +0 -0
- data/vendor/tesseract-2.04/tessdata/eng.inttemp +0 -0
- data/vendor/tesseract-2.04/tessdata/eng.normproto +1247 -0
- data/vendor/tesseract-2.04/tessdata/eng.pffmtable +111 -0
- data/vendor/tesseract-2.04/tessdata/eng.unicharset +113 -0
- data/vendor/tesseract-2.04/tessdata/eng.user-words +921 -0
- data/vendor/tesseract-2.04/tessdata/eng.word-dawg +0 -0
- data/vendor/tesseract-2.04/tessdata/makedummies +8 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/Makefile.am +3 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/Makefile.in +344 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/batch +2 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/batch.nochop +2 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/matdemo +7 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/msdemo +13 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/nobatch +2 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/segdemo +9 -0
- data/vendor/tesseract-2.04/tessdll.cpp +351 -0
- data/vendor/tesseract-2.04/tessdll.dsp +2050 -0
- data/vendor/tesseract-2.04/tessdll.h +143 -0
- data/vendor/tesseract-2.04/tessdll.vcproj +5495 -0
- data/vendor/tesseract-2.04/tesseract.dsp +2124 -0
- data/vendor/tesseract-2.04/tesseract.dsw +116 -0
- data/vendor/tesseract-2.04/tesseract.sln +59 -0
- data/vendor/tesseract-2.04/tesseract.spec +188 -0
- data/vendor/tesseract-2.04/tesseract.vcproj +5859 -0
- data/vendor/tesseract-2.04/testing/Makefile.am +2 -0
- data/vendor/tesseract-2.04/testing/Makefile.in +312 -0
- data/vendor/tesseract-2.04/testing/README +43 -0
- data/vendor/tesseract-2.04/testing/counttestset.sh +61 -0
- data/vendor/tesseract-2.04/testing/reorgdata.sh +44 -0
- data/vendor/tesseract-2.04/testing/reports/1995.bus.3B.sum +1 -0
- data/vendor/tesseract-2.04/testing/reports/1995.doe3.3B.sum +1 -0
- data/vendor/tesseract-2.04/testing/reports/1995.mag.3B.sum +1 -0
- data/vendor/tesseract-2.04/testing/reports/1995.news.3B.sum +1 -0
- data/vendor/tesseract-2.04/testing/reports/2.03.summary +9 -0
- data/vendor/tesseract-2.04/testing/reports/2.04.summary +9 -0
- data/vendor/tesseract-2.04/testing/runalltests.sh +110 -0
- data/vendor/tesseract-2.04/testing/runtestset.sh +61 -0
- data/vendor/tesseract-2.04/textord/Makefile.am +20 -0
- data/vendor/tesseract-2.04/textord/Makefile.in +624 -0
- data/vendor/tesseract-2.04/textord/blkocc.cpp +809 -0
- data/vendor/tesseract-2.04/textord/blkocc.h +327 -0
- data/vendor/tesseract-2.04/textord/blobcmpl.h +31 -0
- data/vendor/tesseract-2.04/textord/drawedg.cpp +77 -0
- data/vendor/tesseract-2.04/textord/drawedg.h +34 -0
- data/vendor/tesseract-2.04/textord/drawtord.cpp +469 -0
- data/vendor/tesseract-2.04/textord/drawtord.h +107 -0
- data/vendor/tesseract-2.04/textord/edgblob.cpp +412 -0
- data/vendor/tesseract-2.04/textord/edgblob.h +100 -0
- data/vendor/tesseract-2.04/textord/edgloop.cpp +211 -0
- data/vendor/tesseract-2.04/textord/edgloop.h +66 -0
- data/vendor/tesseract-2.04/textord/fpchop.cpp +1641 -0
- data/vendor/tesseract-2.04/textord/fpchop.h +238 -0
- data/vendor/tesseract-2.04/textord/gap_map.cpp +166 -0
- data/vendor/tesseract-2.04/textord/gap_map.h +40 -0
- data/vendor/tesseract-2.04/textord/makerow.cpp +2628 -0
- data/vendor/tesseract-2.04/textord/makerow.h +295 -0
- data/vendor/tesseract-2.04/textord/oldbasel.cpp +1761 -0
- data/vendor/tesseract-2.04/textord/oldbasel.h +195 -0
- data/vendor/tesseract-2.04/textord/pithsync.cpp +696 -0
- data/vendor/tesseract-2.04/textord/pithsync.h +134 -0
- data/vendor/tesseract-2.04/textord/pitsync1.cpp +425 -0
- data/vendor/tesseract-2.04/textord/pitsync1.h +135 -0
- data/vendor/tesseract-2.04/textord/scanedg.cpp +452 -0
- data/vendor/tesseract-2.04/textord/scanedg.h +74 -0
- data/vendor/tesseract-2.04/textord/sortflts.cpp +80 -0
- data/vendor/tesseract-2.04/textord/sortflts.h +64 -0
- data/vendor/tesseract-2.04/textord/tessout.h +76 -0
- data/vendor/tesseract-2.04/textord/topitch.cpp +2019 -0
- data/vendor/tesseract-2.04/textord/topitch.h +195 -0
- data/vendor/tesseract-2.04/textord/tordmain.cpp +907 -0
- data/vendor/tesseract-2.04/textord/tordmain.h +132 -0
- data/vendor/tesseract-2.04/textord/tospace.cpp +1939 -0
- data/vendor/tesseract-2.04/textord/tospace.h +193 -0
- data/vendor/tesseract-2.04/textord/tovars.cpp +87 -0
- data/vendor/tesseract-2.04/textord/tovars.h +94 -0
- data/vendor/tesseract-2.04/textord/underlin.cpp +312 -0
- data/vendor/tesseract-2.04/textord/underlin.h +53 -0
- data/vendor/tesseract-2.04/textord/wordseg.cpp +620 -0
- data/vendor/tesseract-2.04/textord/wordseg.h +70 -0
- data/vendor/tesseract-2.04/training/Makefile.am +54 -0
- data/vendor/tesseract-2.04/training/Makefile.in +720 -0
- data/vendor/tesseract-2.04/training/cnTraining.cpp +855 -0
- data/vendor/tesseract-2.04/training/cntraining.dsp +243 -0
- data/vendor/tesseract-2.04/training/cntraining.vcproj +950 -0
- data/vendor/tesseract-2.04/training/mergenf.cpp +451 -0
- data/vendor/tesseract-2.04/training/mergenf.h +106 -0
- data/vendor/tesseract-2.04/training/mfTraining.cpp +1341 -0
- data/vendor/tesseract-2.04/training/mftraining.dsp +285 -0
- data/vendor/tesseract-2.04/training/mftraining.vcproj +1055 -0
- data/vendor/tesseract-2.04/training/name2char.cpp +166 -0
- data/vendor/tesseract-2.04/training/name2char.h +38 -0
- data/vendor/tesseract-2.04/training/training.cpp +190 -0
- data/vendor/tesseract-2.04/training/training.h +130 -0
- data/vendor/tesseract-2.04/training/unicharset_extractor.cpp +140 -0
- data/vendor/tesseract-2.04/training/unicharset_extractor.dsp +335 -0
- data/vendor/tesseract-2.04/training/unicharset_extractor.vcproj +769 -0
- data/vendor/tesseract-2.04/training/wordlist2dawg.cpp +69 -0
- data/vendor/tesseract-2.04/training/wordlist2dawg.dsp +319 -0
- data/vendor/tesseract-2.04/training/wordlist2dawg.vcproj +1113 -0
- data/vendor/tesseract-2.04/viewer/Makefile.am +9 -0
- data/vendor/tesseract-2.04/viewer/Makefile.in +591 -0
- data/vendor/tesseract-2.04/viewer/scrollview.cpp +825 -0
- data/vendor/tesseract-2.04/viewer/scrollview.h +414 -0
- data/vendor/tesseract-2.04/viewer/svmnode.cpp +140 -0
- data/vendor/tesseract-2.04/viewer/svmnode.h +94 -0
- data/vendor/tesseract-2.04/viewer/svpaint.cpp +220 -0
- data/vendor/tesseract-2.04/viewer/svutil.cpp +347 -0
- data/vendor/tesseract-2.04/viewer/svutil.h +138 -0
- data/vendor/tesseract-2.04/wordrec/Makefile.am +23 -0
- data/vendor/tesseract-2.04/wordrec/Makefile.in +641 -0
- data/vendor/tesseract-2.04/wordrec/associate.cpp +62 -0
- data/vendor/tesseract-2.04/wordrec/associate.h +93 -0
- data/vendor/tesseract-2.04/wordrec/badwords.cpp +106 -0
- data/vendor/tesseract-2.04/wordrec/badwords.h +51 -0
- data/vendor/tesseract-2.04/wordrec/bestfirst.cpp +526 -0
- data/vendor/tesseract-2.04/wordrec/bestfirst.h +203 -0
- data/vendor/tesseract-2.04/wordrec/charsample.h +208 -0
- data/vendor/tesseract-2.04/wordrec/chop.cpp +458 -0
- data/vendor/tesseract-2.04/wordrec/chop.h +153 -0
- data/vendor/tesseract-2.04/wordrec/chopper.cpp +750 -0
- data/vendor/tesseract-2.04/wordrec/chopper.h +104 -0
- data/vendor/tesseract-2.04/wordrec/closed.cpp +136 -0
- data/vendor/tesseract-2.04/wordrec/closed.h +65 -0
- data/vendor/tesseract-2.04/wordrec/djmenus.cpp +118 -0
- data/vendor/tesseract-2.04/wordrec/djmenus.h +33 -0
- data/vendor/tesseract-2.04/wordrec/drawfx.cpp +92 -0
- data/vendor/tesseract-2.04/wordrec/drawfx.h +33 -0
- data/vendor/tesseract-2.04/wordrec/findseam.cpp +566 -0
- data/vendor/tesseract-2.04/wordrec/findseam.h +69 -0
- data/vendor/tesseract-2.04/wordrec/gradechop.cpp +226 -0
- data/vendor/tesseract-2.04/wordrec/gradechop.h +91 -0
- data/vendor/tesseract-2.04/wordrec/heuristic.cpp +194 -0
- data/vendor/tesseract-2.04/wordrec/heuristic.h +120 -0
- data/vendor/tesseract-2.04/wordrec/makechop.cpp +281 -0
- data/vendor/tesseract-2.04/wordrec/makechop.h +69 -0
- data/vendor/tesseract-2.04/wordrec/matchtab.cpp +191 -0
- data/vendor/tesseract-2.04/wordrec/matchtab.h +45 -0
- data/vendor/tesseract-2.04/wordrec/matrix.cpp +118 -0
- data/vendor/tesseract-2.04/wordrec/matrix.h +104 -0
- data/vendor/tesseract-2.04/wordrec/measure.h +135 -0
- data/vendor/tesseract-2.04/wordrec/metrics.cpp +363 -0
- data/vendor/tesseract-2.04/wordrec/metrics.h +130 -0
- data/vendor/tesseract-2.04/wordrec/mfvars.cpp +51 -0
- data/vendor/tesseract-2.04/wordrec/mfvars.h +27 -0
- data/vendor/tesseract-2.04/wordrec/msmenus.cpp +110 -0
- data/vendor/tesseract-2.04/wordrec/msmenus.h +45 -0
- data/vendor/tesseract-2.04/wordrec/olutil.cpp +153 -0
- data/vendor/tesseract-2.04/wordrec/olutil.h +128 -0
- data/vendor/tesseract-2.04/wordrec/outlines.cpp +172 -0
- data/vendor/tesseract-2.04/wordrec/outlines.h +148 -0
- data/vendor/tesseract-2.04/wordrec/pieces.cpp +410 -0
- data/vendor/tesseract-2.04/wordrec/pieces.h +154 -0
- data/vendor/tesseract-2.04/wordrec/plotedges.cpp +134 -0
- data/vendor/tesseract-2.04/wordrec/plotedges.h +71 -0
- data/vendor/tesseract-2.04/wordrec/plotseg.cpp +116 -0
- data/vendor/tesseract-2.04/wordrec/plotseg.h +73 -0
- data/vendor/tesseract-2.04/wordrec/render.cpp +152 -0
- data/vendor/tesseract-2.04/wordrec/render.h +58 -0
- data/vendor/tesseract-2.04/wordrec/seam.cpp +482 -0
- data/vendor/tesseract-2.04/wordrec/seam.h +136 -0
- data/vendor/tesseract-2.04/wordrec/split.cpp +182 -0
- data/vendor/tesseract-2.04/wordrec/split.h +115 -0
- data/vendor/tesseract-2.04/wordrec/tally.cpp +68 -0
- data/vendor/tesseract-2.04/wordrec/tally.h +94 -0
- data/vendor/tesseract-2.04/wordrec/tessinit.cpp +108 -0
- data/vendor/tesseract-2.04/wordrec/tessinit.h +46 -0
- data/vendor/tesseract-2.04/wordrec/tface.cpp +272 -0
- data/vendor/tesseract-2.04/wordrec/tface.h +35 -0
- data/vendor/tesseract-2.04/wordrec/wordclass.cpp +284 -0
- data/vendor/tesseract-2.04/wordrec/wordclass.h +64 -0
- metadata +708 -0
@@ -0,0 +1,93 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
* File: fixxht.h (Formerly fixxht.h)
|
3
|
+
* Description: Improve x_ht and look out for case inconsistencies
|
4
|
+
* Author: Phil Cheatle
|
5
|
+
* Created: Thu Aug 5 14:11:08 BST 1993
|
6
|
+
*
|
7
|
+
* (C) Copyright 1992, Hewlett-Packard Ltd.
|
8
|
+
** Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
** you may not use this file except in compliance with the License.
|
10
|
+
** You may obtain a copy of the License at
|
11
|
+
** http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
** Unless required by applicable law or agreed to in writing, software
|
13
|
+
** distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
** See the License for the specific language governing permissions and
|
16
|
+
** limitations under the License.
|
17
|
+
*
|
18
|
+
**********************************************************************/
|
19
|
+
|
20
|
+
#ifndef FIXXHT_H
|
21
|
+
#define FIXXHT_H
|
22
|
+
|
23
|
+
#include "varable.h"
|
24
|
+
#include "statistc.h"
|
25
|
+
#include "pageres.h"
|
26
|
+
#include "notdll.h"
|
27
|
+
|
28
|
+
extern double_VAR_H (x_ht_fraction_of_caps_ht, 0.7,
|
29
|
+
"Fract of cps ht est of xht");
|
30
|
+
extern double_VAR_H (x_ht_variation, 0.35,
|
31
|
+
"Err band as fract of caps/xht dist");
|
32
|
+
extern double_VAR_H (x_ht_sub_variation, 0.5,
|
33
|
+
"Err band as fract of caps/xht dist");
|
34
|
+
extern BOOL_VAR_H (rej_trial_ambigs, TRUE,
|
35
|
+
"reject x-ht ambigs when under trial");
|
36
|
+
extern BOOL_VAR_H (x_ht_conservative_ambigs, FALSE,
|
37
|
+
"Dont rely on ambigs + maxht");
|
38
|
+
extern BOOL_VAR_H (x_ht_check_est, TRUE, "Cross check estimates");
|
39
|
+
extern BOOL_VAR_H (x_ht_case_flip, FALSE, "Flip or reject suspect case");
|
40
|
+
extern BOOL_VAR_H (x_ht_include_dodgy_blobs, TRUE,
|
41
|
+
"Include blobs with possible noise?");
|
42
|
+
extern BOOL_VAR_H (x_ht_limit_flip_trials, TRUE,
|
43
|
+
"Dont do trial flips when ambigs are close to xht?");
|
44
|
+
extern BOOL_VAR_H (rej_use_check_block_occ, TRUE,
|
45
|
+
"Analyse rejection behaviour");
|
46
|
+
extern STRING_VAR_H (chs_non_ambig_caps_ht,
|
47
|
+
"!#$%&()/12346789?ABDEFGHIKLNQRT[]\\bdfhkl",
|
48
|
+
"Reliable ascenders");
|
49
|
+
extern STRING_VAR_H (chs_x_ht, "acegmnopqrsuvwxyz", "X height chars");
|
50
|
+
extern STRING_VAR_H (chs_non_ambig_x_ht, "aenqr", "reliable X height chars");
|
51
|
+
extern STRING_VAR_H (chs_ambig_caps_x, "cCmMoO05sSuUvVwWxXzZ",
|
52
|
+
"X ht or caps ht chars");
|
53
|
+
extern STRING_VAR_H (chs_bl_ambig_caps_x, "pPyY",
|
54
|
+
" Caps or descender ambigs");
|
55
|
+
extern STRING_VAR_H (chs_caps_ht,
|
56
|
+
"!#$%&()/0123456789?ABCDEFGHIJKLMNOPQRSTUVWXYZ[]\\bdfhkl{|}",
|
57
|
+
"Ascender chars");
|
58
|
+
extern STRING_VAR_H (chs_desc, "gjpqy", "Descender chars");
|
59
|
+
extern STRING_VAR_H (chs_non_ambig_bl,
|
60
|
+
"!#$%&01246789?ABCDEFGHIKLMNORSTUVWXYZabcdehiklmnorstuvwxz",
|
61
|
+
"Reliable baseline chars");
|
62
|
+
extern STRING_VAR_H (chs_odd_top, "ijt", "Chars with funny ascender region");
|
63
|
+
extern STRING_VAR_H (chs_odd_bot, "()35JQ[]\\/{}|", "Chars with funny base");
|
64
|
+
extern STRING_VAR_H (chs_bl,
|
65
|
+
"!#$%&()/01246789?ABCDEFGHIJKLMNOPRSTUVWXYZ[]\\abcdefhiklmnorstuvwxz{}",
|
66
|
+
"Baseline chars");
|
67
|
+
extern STRING_VAR_H (chs_non_ambig_desc, "gq", "Reliable descender chars");
|
68
|
+
void re_estimate_x_ht( //improve for 1 word
|
69
|
+
WERD_RES *word_res, //word to do
|
70
|
+
float *trial_x_ht //new match value
|
71
|
+
);
|
72
|
+
void check_block_occ(WERD_RES *word_res);
|
73
|
+
void check_blob_occ(char *proposed_char,
|
74
|
+
inT16 blob_ht_above_baseline,
|
75
|
+
float x_ht,
|
76
|
+
float caps_ht,
|
77
|
+
char *confirmed_char);
|
78
|
+
float estimate_from_stats(STATS &stats);
|
79
|
+
void improve_estimate(WERD_RES *word_res,
|
80
|
+
float &est_x_ht,
|
81
|
+
float &est_caps_ht,
|
82
|
+
STATS &x_ht,
|
83
|
+
STATS &caps_ht);
|
84
|
+
void reject_ambigs( //rej any accepted xht ambig chars
|
85
|
+
WERD_RES *word);
|
86
|
+
//xht ambig ht stats
|
87
|
+
void est_ambigs(WERD_RES *word_res,
|
88
|
+
STATS &stats,
|
89
|
+
float *ambig_lc_x_est, //xht est
|
90
|
+
float *ambig_uc_caps_est //caps est
|
91
|
+
);
|
92
|
+
BOOL8 dodgy_blob(PBLOB *blob);
|
93
|
+
#endif
|
@@ -0,0 +1,154 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
* File: imgscale.cpp (Formerly dyn_prog.c)
|
3
|
+
* Description: Dynamic programming for smart scaling of images.
|
4
|
+
* Author: Phil Cheatle
|
5
|
+
* Created: Wed Nov 18 16:12:03 GMT 1992
|
6
|
+
*
|
7
|
+
* (C) Copyright 1992, Hewlett-Packard Ltd.
|
8
|
+
** Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
** you may not use this file except in compliance with the License.
|
10
|
+
** You may obtain a copy of the License at
|
11
|
+
** http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
** Unless required by applicable law or agreed to in writing, software
|
13
|
+
** distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
** See the License for the specific language governing permissions and
|
16
|
+
** limitations under the License.
|
17
|
+
*
|
18
|
+
**********************************************************************/
|
19
|
+
|
20
|
+
/*************************************************************************
|
21
|
+
* This is really Sheelagh's code that I've hacked into a more usable form.
|
22
|
+
* It is used by scaleim.c All I did to it was to change "factor" from int to
|
23
|
+
* float.
|
24
|
+
*************************************************************************/
|
25
|
+
/************************************************************************
|
26
|
+
* This version uses the result of the previous row to influence the
|
27
|
+
* current row's calculation.
|
28
|
+
************************************************************************/
|
29
|
+
|
30
|
+
#include "mfcpch.h"
|
31
|
+
#include <stdio.h>
|
32
|
+
#include <stdlib.h>
|
33
|
+
#include "errcode.h"
|
34
|
+
|
35
|
+
#define f(xc, yc) ((xc - factor*yc)*(xc - factor*yc))
|
36
|
+
|
37
|
+
#define g(oldyc, yc, oldxc, xc) (factor*factor*(oldyc - yc)*(oldyc - yc)/(abs(oldxc - xc) + 1))
|
38
|
+
|
39
|
+
void
|
40
|
+
dyn_exit (const char s[]) {
|
41
|
+
fprintf (stderr, "%s", s);
|
42
|
+
err_exit();
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
void dyn_prog( //The clever bit
|
47
|
+
int n,
|
48
|
+
int *x,
|
49
|
+
int *y,
|
50
|
+
int ymax,
|
51
|
+
int *oldx,
|
52
|
+
int *oldy,
|
53
|
+
int oldn,
|
54
|
+
float factor) {
|
55
|
+
int i, z, j, matchflag;
|
56
|
+
int **ymin;
|
57
|
+
float **F, fz;
|
58
|
+
|
59
|
+
/* F[i][z] gives minimum over y <= z */
|
60
|
+
|
61
|
+
F = (float **) calloc (n, sizeof (float *));
|
62
|
+
ymin = (int **) calloc (n, sizeof (int *));
|
63
|
+
if ((F == NULL) || (ymin == NULL))
|
64
|
+
dyn_exit ("Error in calloc\n");
|
65
|
+
|
66
|
+
for (i = 0; i < n; i++) {
|
67
|
+
F[i] = (float *) calloc (ymax - n + i + 1, sizeof (float));
|
68
|
+
ymin[i] = (int *) calloc (ymax - n + i + 1, sizeof (int));
|
69
|
+
if ((F[i] == NULL) || (ymin[i] == NULL))
|
70
|
+
dyn_exit ("Error in calloc\n");
|
71
|
+
}
|
72
|
+
|
73
|
+
F[0][0] = f (x[0], 0);
|
74
|
+
/* find nearest transition of same sign (white to black) */
|
75
|
+
j = 0;
|
76
|
+
while ((j < oldn) && (oldx[j] < x[0]))
|
77
|
+
j += 2;
|
78
|
+
if (j >= oldn)
|
79
|
+
j -= 2;
|
80
|
+
else if ((j - 2 >= 0) && ((x[0] - oldx[j - 2]) < (oldx[j] - x[0])))
|
81
|
+
j -= 2;
|
82
|
+
if (abs (oldx[j] - x[0]) < factor) {
|
83
|
+
matchflag = 1;
|
84
|
+
F[0][0] += g (oldy[j], 0, oldx[j], x[0]);
|
85
|
+
}
|
86
|
+
else
|
87
|
+
matchflag = 0;
|
88
|
+
ymin[0][0] = 0;
|
89
|
+
|
90
|
+
for (z = 1; z < ymax - n + 1; z++) {
|
91
|
+
fz = f (x[0], z);
|
92
|
+
/* add penalty for deviating from previous row if necessary */
|
93
|
+
|
94
|
+
if (matchflag)
|
95
|
+
fz += g (oldy[j], z, oldx[j], x[0]);
|
96
|
+
if (fz < F[0][z - 1]) {
|
97
|
+
F[0][z] = fz;
|
98
|
+
ymin[0][z] = z;
|
99
|
+
}
|
100
|
+
else {
|
101
|
+
F[0][z] = F[0][z - 1];
|
102
|
+
ymin[0][z] = ymin[0][z - 1];
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
for (i = 1; i < n; i++) {
|
107
|
+
F[i][i] = f (x[i], i) + F[i - 1][i - 1];
|
108
|
+
/* add penalty for deviating from previous row if necessary */
|
109
|
+
if (j > 0)
|
110
|
+
j--;
|
111
|
+
else
|
112
|
+
j++;
|
113
|
+
while ((j < oldn) && (oldx[j] < x[i]))
|
114
|
+
j += 2;
|
115
|
+
if (j >= oldn)
|
116
|
+
j -= 2;
|
117
|
+
else if ((j - 2 >= 0) && ((x[i] - oldx[j - 2]) < (oldx[j] - x[i])))
|
118
|
+
j -= 2;
|
119
|
+
if (abs (oldx[j] - x[i]) < factor) {
|
120
|
+
matchflag = 1;
|
121
|
+
F[i][i] += g (oldy[j], i, oldx[j], x[i]);
|
122
|
+
}
|
123
|
+
else
|
124
|
+
matchflag = 0;
|
125
|
+
ymin[i][i] = i;
|
126
|
+
for (z = i + 1; z < ymax - n + i + 1; z++) {
|
127
|
+
fz = f (x[i], z) + F[i - 1][z - 1];
|
128
|
+
/* add penalty for deviating from previous row if necessary */
|
129
|
+
if (matchflag)
|
130
|
+
fz += g (oldy[j], z, oldx[j], x[i]);
|
131
|
+
if (fz < F[i][z - 1]) {
|
132
|
+
F[i][z] = fz;
|
133
|
+
ymin[i][z] = z;
|
134
|
+
}
|
135
|
+
else {
|
136
|
+
F[i][z] = F[i][z - 1];
|
137
|
+
ymin[i][z] = ymin[i][z - 1];
|
138
|
+
}
|
139
|
+
}
|
140
|
+
}
|
141
|
+
|
142
|
+
y[n - 1] = ymin[n - 1][ymax - 1];
|
143
|
+
for (i = n - 2; i >= 0; i--)
|
144
|
+
y[i] = ymin[i][y[i + 1] - 1];
|
145
|
+
|
146
|
+
for (i = 0; i < n; i++) {
|
147
|
+
free (F[i]);
|
148
|
+
free (ymin[i]);
|
149
|
+
}
|
150
|
+
free(F);
|
151
|
+
free(ymin);
|
152
|
+
|
153
|
+
return;
|
154
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
* File: imgscale.h (Formerly dyn_prog.h)
|
3
|
+
* Description: Dynamic programming for smart scaling of images.
|
4
|
+
* Author: Phil Cheatle
|
5
|
+
* Created: Wed Nov 18 16:12:03 GMT 1992
|
6
|
+
*
|
7
|
+
* (C) Copyright 1992, Hewlett-Packard Ltd.
|
8
|
+
** Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
** you may not use this file except in compliance with the License.
|
10
|
+
** You may obtain a copy of the License at
|
11
|
+
** http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
** Unless required by applicable law or agreed to in writing, software
|
13
|
+
** distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
** See the License for the specific language governing permissions and
|
16
|
+
** limitations under the License.
|
17
|
+
*
|
18
|
+
**********************************************************************/
|
19
|
+
|
20
|
+
#ifndef IMGSCALE_H
|
21
|
+
#define IMGSCALE_H
|
22
|
+
|
23
|
+
void dyn_prog( //The clever bit
|
24
|
+
int n,
|
25
|
+
int *x,
|
26
|
+
int *y,
|
27
|
+
int ymax,
|
28
|
+
int *oldx,
|
29
|
+
int *oldy,
|
30
|
+
int oldn,
|
31
|
+
float factor);
|
32
|
+
#endif
|
@@ -0,0 +1,391 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
* File: matmatch.cpp (Formerly matrix_match.c)
|
3
|
+
* Description: matrix matching routines for Tessedit
|
4
|
+
* Author: Chris Newton
|
5
|
+
* Created: Wed Nov 24 15:57:41 GMT 1993
|
6
|
+
*
|
7
|
+
* (C) Copyright 1993, Hewlett-Packard Ltd.
|
8
|
+
** Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
** you may not use this file except in compliance with the License.
|
10
|
+
** You may obtain a copy of the License at
|
11
|
+
** http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
** Unless required by applicable law or agreed to in writing, software
|
13
|
+
** distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
** See the License for the specific language governing permissions and
|
16
|
+
** limitations under the License.
|
17
|
+
*
|
18
|
+
**********************************************************************/
|
19
|
+
|
20
|
+
#include "mfcpch.h"
|
21
|
+
#include <stdlib.h>
|
22
|
+
#include <math.h>
|
23
|
+
#include <string.h>
|
24
|
+
#include <ctype.h>
|
25
|
+
#ifdef __UNIX__
|
26
|
+
#include <assert.h>
|
27
|
+
#endif
|
28
|
+
#include "tessvars.h"
|
29
|
+
#include "stderr.h"
|
30
|
+
#include "img.h"
|
31
|
+
//#include "evnts.h"
|
32
|
+
//#include "showim.h"
|
33
|
+
#include "hosthplb.h"
|
34
|
+
#include "scrollview.h"
|
35
|
+
//#include "evnts.h"
|
36
|
+
#include "adaptions.h"
|
37
|
+
#include "matmatch.h"
|
38
|
+
#include "secname.h"
|
39
|
+
#include "svshowim.h"
|
40
|
+
|
41
|
+
#define EXTERN
|
42
|
+
|
43
|
+
EXTERN BOOL_VAR (tessedit_display_mm, FALSE, "Display matrix matches");
|
44
|
+
EXTERN BOOL_VAR (tessedit_mm_debug, FALSE,
|
45
|
+
"Print debug information for matrix matcher");
|
46
|
+
EXTERN INT_VAR (tessedit_mm_prototype_min_size, 3,
|
47
|
+
"Smallest number of samples in a cluster for a prototype to be used");
|
48
|
+
|
49
|
+
// Colours for displaying the match
|
50
|
+
#define BB_COLOUR 0
|
51
|
+
#define BW_COLOUR 1
|
52
|
+
#define WB_COLOUR 3
|
53
|
+
#define UB_COLOUR 5
|
54
|
+
#define BU_COLOUR 7
|
55
|
+
#define UU_COLOUR 9
|
56
|
+
#define WU_COLOUR 11
|
57
|
+
#define UW_COLOUR 13
|
58
|
+
#define WW_COLOUR 15
|
59
|
+
|
60
|
+
#define BINIM_BLACK 0
|
61
|
+
#define BINIM_WHITE 1
|
62
|
+
|
63
|
+
float matrix_match( // returns match score
|
64
|
+
IMAGE *image1,
|
65
|
+
IMAGE *image2) {
|
66
|
+
ASSERT_HOST (image1->get_bpp () == 1 && image2->get_bpp () == 1);
|
67
|
+
|
68
|
+
if (image1->get_xsize () >= image2->get_xsize ())
|
69
|
+
return match1 (image1, image2);
|
70
|
+
else
|
71
|
+
return match1 (image2, image1);
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
float match1( /* returns match score */
|
76
|
+
IMAGE *image_w,
|
77
|
+
IMAGE *image_n) {
|
78
|
+
inT32 x_offset;
|
79
|
+
inT32 y_offset;
|
80
|
+
inT32 x_size = image_w->get_xsize ();
|
81
|
+
inT32 y_size;
|
82
|
+
inT32 x_size2 = image_n->get_xsize ();
|
83
|
+
inT32 y_size2;
|
84
|
+
IMAGE match_image;
|
85
|
+
IMAGELINE imline_w;
|
86
|
+
IMAGELINE imline_n;
|
87
|
+
IMAGELINE match_imline;
|
88
|
+
inT32 x;
|
89
|
+
inT32 y;
|
90
|
+
float sum = 0.0;
|
91
|
+
|
92
|
+
x_offset = (image_w->get_xsize () - image_n->get_xsize ()) / 2;
|
93
|
+
|
94
|
+
ASSERT_HOST (x_offset >= 0);
|
95
|
+
match_imline.init (x_size);
|
96
|
+
|
97
|
+
sum = 0;
|
98
|
+
|
99
|
+
if (image_w->get_ysize () < image_n->get_ysize ()) {
|
100
|
+
y_size = image_n->get_ysize ();
|
101
|
+
y_size2 = image_w->get_ysize ();
|
102
|
+
y_offset = (y_size - y_size2) / 2;
|
103
|
+
|
104
|
+
if (tessedit_display_mm && !tessedit_mm_use_prototypes)
|
105
|
+
tprintf ("I1 (%d, %d), I2 (%d, %d), MI (%d, %d)\n", x_size,
|
106
|
+
image_w->get_ysize (), x_size2, image_n->get_ysize (),
|
107
|
+
x_size, y_size);
|
108
|
+
|
109
|
+
match_image.create (x_size, y_size, 4);
|
110
|
+
|
111
|
+
for (y = 0; y < y_offset; y++) {
|
112
|
+
image_n->fast_get_line (0, y, x_size2, &imline_n);
|
113
|
+
for (x = 0; x < x_size2; x++) {
|
114
|
+
if (imline_n.pixels[x] == BINIM_BLACK) {
|
115
|
+
sum += -1;
|
116
|
+
match_imline.pixels[x] = UB_COLOUR;
|
117
|
+
}
|
118
|
+
else {
|
119
|
+
match_imline.pixels[x] = UW_COLOUR;
|
120
|
+
}
|
121
|
+
}
|
122
|
+
match_image.fast_put_line (x_offset, y, x_size2, &match_imline);
|
123
|
+
}
|
124
|
+
|
125
|
+
for (y = y_offset + y_size2; y < y_size; y++) {
|
126
|
+
image_n->fast_get_line (0, y, x_size2, &imline_n);
|
127
|
+
for (x = 0; x < x_size2; x++) {
|
128
|
+
if (imline_n.pixels[x] == BINIM_BLACK) {
|
129
|
+
sum += -1.0;
|
130
|
+
match_imline.pixels[x] = UB_COLOUR;
|
131
|
+
}
|
132
|
+
else {
|
133
|
+
match_imline.pixels[x] = UW_COLOUR;
|
134
|
+
}
|
135
|
+
}
|
136
|
+
match_image.fast_put_line (x_offset, y, x_size2, &match_imline);
|
137
|
+
}
|
138
|
+
|
139
|
+
for (y = y_offset; y < y_offset + y_size2; y++) {
|
140
|
+
image_w->fast_get_line (0, y - y_offset, x_size, &imline_w);
|
141
|
+
image_n->fast_get_line (0, y, x_size2, &imline_n);
|
142
|
+
for (x = 0; x < x_offset; x++) {
|
143
|
+
if (imline_w.pixels[x] == BINIM_BLACK) {
|
144
|
+
sum += -1.0;
|
145
|
+
match_imline.pixels[x] = BU_COLOUR;
|
146
|
+
}
|
147
|
+
else {
|
148
|
+
match_imline.pixels[x] = WU_COLOUR;
|
149
|
+
}
|
150
|
+
}
|
151
|
+
|
152
|
+
for (x = x_offset + x_size2; x < x_size; x++) {
|
153
|
+
if (imline_w.pixels[x] == BINIM_BLACK) {
|
154
|
+
sum += -1.0;
|
155
|
+
match_imline.pixels[x] = BU_COLOUR;
|
156
|
+
}
|
157
|
+
else {
|
158
|
+
match_imline.pixels[x] = WU_COLOUR;
|
159
|
+
}
|
160
|
+
}
|
161
|
+
|
162
|
+
for (x = x_offset; x < x_offset + x_size2; x++) {
|
163
|
+
if (imline_n.pixels[x - x_offset] == imline_w.pixels[x]) {
|
164
|
+
sum += 1.0;
|
165
|
+
if (imline_w.pixels[x] == BINIM_BLACK)
|
166
|
+
match_imline.pixels[x] = BB_COLOUR;
|
167
|
+
else
|
168
|
+
match_imline.pixels[x] = WW_COLOUR;
|
169
|
+
}
|
170
|
+
else {
|
171
|
+
sum += -1.0;
|
172
|
+
if (imline_w.pixels[x] == BINIM_BLACK)
|
173
|
+
match_imline.pixels[x] = BW_COLOUR;
|
174
|
+
else
|
175
|
+
match_imline.pixels[x] = WB_COLOUR;
|
176
|
+
}
|
177
|
+
}
|
178
|
+
|
179
|
+
match_image.fast_put_line (0, y, x_size, &match_imline);
|
180
|
+
}
|
181
|
+
}
|
182
|
+
else {
|
183
|
+
y_size = image_w->get_ysize ();
|
184
|
+
y_size2 = image_n->get_ysize ();
|
185
|
+
y_offset = (y_size - y_size2) / 2;
|
186
|
+
|
187
|
+
if (tessedit_display_mm && !tessedit_mm_use_prototypes)
|
188
|
+
tprintf ("I1 (%d, %d), I2 (%d, %d), MI (%d, %d)\n", x_size,
|
189
|
+
image_w->get_ysize (), x_size2, image_n->get_ysize (),
|
190
|
+
x_size, y_size);
|
191
|
+
|
192
|
+
match_image.create (x_size, y_size, 4);
|
193
|
+
|
194
|
+
for (y = 0; y < y_offset; y++) {
|
195
|
+
image_w->fast_get_line (0, y, x_size, &imline_w);
|
196
|
+
for (x = 0; x < x_size; x++) {
|
197
|
+
if (imline_w.pixels[x] == BINIM_BLACK) {
|
198
|
+
sum += -1;
|
199
|
+
match_imline.pixels[x] = BU_COLOUR;
|
200
|
+
}
|
201
|
+
else {
|
202
|
+
match_imline.pixels[x] = WU_COLOUR;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
match_image.fast_put_line (0, y, x_size, &match_imline);
|
206
|
+
}
|
207
|
+
|
208
|
+
for (y = y_offset + y_size2; y < y_size; y++) {
|
209
|
+
image_w->fast_get_line (0, y, x_size, &imline_w);
|
210
|
+
for (x = 0; x < x_size; x++) {
|
211
|
+
if (imline_w.pixels[x] == BINIM_BLACK) {
|
212
|
+
sum += -1;
|
213
|
+
match_imline.pixels[x] = BU_COLOUR;
|
214
|
+
}
|
215
|
+
else {
|
216
|
+
match_imline.pixels[x] = WU_COLOUR;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
match_image.fast_put_line (0, y, x_size, &match_imline);
|
220
|
+
}
|
221
|
+
|
222
|
+
for (y = y_offset; y < y_offset + y_size2; y++) {
|
223
|
+
image_w->fast_get_line (0, y, x_size, &imline_w);
|
224
|
+
image_n->fast_get_line (0, y - y_offset, x_size2, &imline_n);
|
225
|
+
for (x = 0; x < x_offset; x++) {
|
226
|
+
if (imline_w.pixels[x] == BINIM_BLACK) {
|
227
|
+
sum += -1.0;
|
228
|
+
match_imline.pixels[x] = BU_COLOUR;
|
229
|
+
}
|
230
|
+
else {
|
231
|
+
match_imline.pixels[x] = WU_COLOUR;
|
232
|
+
}
|
233
|
+
}
|
234
|
+
|
235
|
+
for (x = x_offset + x_size2; x < x_size; x++) {
|
236
|
+
if (imline_w.pixels[x] == BINIM_BLACK) {
|
237
|
+
sum += -1.0;
|
238
|
+
match_imline.pixels[x] = BU_COLOUR;
|
239
|
+
}
|
240
|
+
else {
|
241
|
+
match_imline.pixels[x] = WU_COLOUR;
|
242
|
+
}
|
243
|
+
}
|
244
|
+
|
245
|
+
for (x = x_offset; x < x_offset + x_size2; x++) {
|
246
|
+
if (imline_n.pixels[x - x_offset] == imline_w.pixels[x]) {
|
247
|
+
sum += 1.0;
|
248
|
+
if (imline_w.pixels[x] == BINIM_BLACK)
|
249
|
+
match_imline.pixels[x] = BB_COLOUR;
|
250
|
+
else
|
251
|
+
match_imline.pixels[x] = WW_COLOUR;
|
252
|
+
}
|
253
|
+
else {
|
254
|
+
sum += -1.0;
|
255
|
+
if (imline_w.pixels[x] == BINIM_BLACK)
|
256
|
+
match_imline.pixels[x] = BW_COLOUR;
|
257
|
+
else
|
258
|
+
match_imline.pixels[x] = WB_COLOUR;
|
259
|
+
}
|
260
|
+
}
|
261
|
+
|
262
|
+
match_image.fast_put_line (0, y, x_size, &match_imline);
|
263
|
+
}
|
264
|
+
}
|
265
|
+
|
266
|
+
#ifndef GRAPHICS_DISABLED
|
267
|
+
if (tessedit_display_mm && !tessedit_mm_use_prototypes) {
|
268
|
+
tprintf ("Match score %f\n", 1.0 - sum / (x_size * y_size));
|
269
|
+
display_images(image_w, image_n, &match_image);
|
270
|
+
}
|
271
|
+
#endif
|
272
|
+
|
273
|
+
if (tessedit_mm_debug)
|
274
|
+
tprintf ("Match score %f\n", 1.0 - sum / (x_size * y_size));
|
275
|
+
|
276
|
+
return (1.0 - sum / (x_size * y_size));
|
277
|
+
}
|
278
|
+
|
279
|
+
|
280
|
+
/*************************************************************************
|
281
|
+
* display_images()
|
282
|
+
*
|
283
|
+
* Show a pair of images, plus the match image
|
284
|
+
*
|
285
|
+
*************************************************************************/
|
286
|
+
|
287
|
+
#ifndef GRAPHICS_DISABLED
|
288
|
+
void display_images(IMAGE *image_w, IMAGE *image_n, IMAGE *match_image) {
|
289
|
+
ScrollView* w_im_window;
|
290
|
+
ScrollView* n_im_window;
|
291
|
+
ScrollView* match_window;
|
292
|
+
inT16 i;
|
293
|
+
|
294
|
+
w_im_window = new ScrollView("Image 1", 20, 100,
|
295
|
+
10 * image_w->get_xsize (), 10 * image_w->get_ysize (),
|
296
|
+
image_w->get_xsize (), image_w->get_ysize ());
|
297
|
+
|
298
|
+
sv_show_sub_image (image_w,
|
299
|
+
0, 0,
|
300
|
+
image_w->get_xsize (), image_w->get_ysize (),
|
301
|
+
w_im_window, 0, 0);
|
302
|
+
|
303
|
+
w_im_window->Pen(255,0,0);
|
304
|
+
for (i = 1; i < image_w->get_xsize (); i++) {
|
305
|
+
w_im_window->Line(i, 0, i, image_w->get_ysize ());
|
306
|
+
}
|
307
|
+
for (i = 1; i < image_w->get_ysize (); i++) {
|
308
|
+
w_im_window->Line(0, i, image_w->get_xsize (), i);
|
309
|
+
}
|
310
|
+
|
311
|
+
n_im_window = new ScrollView ("Image 2", 240, 100,
|
312
|
+
10 * image_n->get_xsize (), 10 * image_n->get_ysize (),
|
313
|
+
image_n->get_xsize (), image_n->get_ysize ());
|
314
|
+
|
315
|
+
sv_show_sub_image (image_n,
|
316
|
+
0, 0,
|
317
|
+
image_n->get_xsize (), image_n->get_ysize (),
|
318
|
+
n_im_window, 0, 0);
|
319
|
+
|
320
|
+
n_im_window->Pen(255,0,0);
|
321
|
+
for (i = 1; i < image_n->get_xsize (); i++) {
|
322
|
+
n_im_window->Line(i, 0, i, image_n->get_ysize ());
|
323
|
+
}
|
324
|
+
for (i = 1; i < image_n->get_ysize (); i++) {
|
325
|
+
n_im_window->Line(0, i, image_n->get_xsize (), i);
|
326
|
+
}
|
327
|
+
|
328
|
+
match_window = new ScrollView ("Match Result", 460, 100,
|
329
|
+
10 * match_image->get_xsize (), 10 * match_image->get_ysize (),
|
330
|
+
match_image->get_xsize (), match_image->get_ysize ());
|
331
|
+
|
332
|
+
match_window->Clear();
|
333
|
+
sv_show_sub_image (match_image,
|
334
|
+
0, 0,
|
335
|
+
match_image->get_xsize (), match_image->get_ysize (),
|
336
|
+
match_window, 0, 0);
|
337
|
+
|
338
|
+
match_window->Pen(255,0,0);
|
339
|
+
for (i = 1; i < match_image->get_xsize (); i++) {
|
340
|
+
match_window->Line(i, 0, i, match_image->get_ysize ());
|
341
|
+
}
|
342
|
+
for (i = 1; i < match_image->get_ysize (); i++) {
|
343
|
+
match_window->Line(0, i, match_image->get_xsize (), i);
|
344
|
+
}
|
345
|
+
SVEvent* sve = match_window->AwaitEvent(SVET_DESTROY);
|
346
|
+
delete sve;
|
347
|
+
|
348
|
+
delete w_im_window;
|
349
|
+
delete n_im_window;
|
350
|
+
delete match_window;
|
351
|
+
}
|
352
|
+
|
353
|
+
|
354
|
+
/*************************************************************************
|
355
|
+
* display_image()
|
356
|
+
*
|
357
|
+
* Show a single image
|
358
|
+
*
|
359
|
+
*************************************************************************/
|
360
|
+
|
361
|
+
ScrollView* display_image(IMAGE *image,
|
362
|
+
const char *title,
|
363
|
+
inT32 x,
|
364
|
+
inT32 y,
|
365
|
+
BOOL8 wait) {
|
366
|
+
ScrollView* im_window;
|
367
|
+
inT16 i;
|
368
|
+
|
369
|
+
im_window = new ScrollView (title, x, y,
|
370
|
+
10 * image->get_xsize (), 10 * image->get_ysize (),
|
371
|
+
image->get_xsize (), image->get_ysize ());
|
372
|
+
|
373
|
+
sv_show_sub_image (image,
|
374
|
+
0, 0,
|
375
|
+
image->get_xsize (), image->get_ysize (), im_window, 0, 0);
|
376
|
+
|
377
|
+
im_window->Pen(255,0,0);
|
378
|
+
for (i = 1; i < image->get_xsize (); i++) {
|
379
|
+
im_window->SetCursor(i, 0);
|
380
|
+
im_window->DrawTo(i, image->get_ysize());
|
381
|
+
}
|
382
|
+
for (i = 1; i < image->get_ysize (); i++) {
|
383
|
+
im_window->SetCursor(0, i);
|
384
|
+
im_window->DrawTo(image->get_xsize(),i);
|
385
|
+
}
|
386
|
+
|
387
|
+
if (wait) { delete im_window->AwaitEvent(SVET_CLICK); }
|
388
|
+
|
389
|
+
return im_window;
|
390
|
+
}
|
391
|
+
#endif
|