tesseract_bin 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,2050 @@
|
|
1
|
+
# Microsoft Developer Studio Project File - Name="tessdll" - Package Owner=<4>
|
2
|
+
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
3
|
+
# ** DO NOT EDIT **
|
4
|
+
|
5
|
+
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
6
|
+
|
7
|
+
CFG=tessdll - Win32 load
|
8
|
+
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
9
|
+
!MESSAGE use the Export Makefile command and run
|
10
|
+
!MESSAGE
|
11
|
+
!MESSAGE NMAKE /f "tessdll.mak".
|
12
|
+
!MESSAGE
|
13
|
+
!MESSAGE You can specify a configuration when running NMAKE
|
14
|
+
!MESSAGE by defining the macro CFG on the command line. For example:
|
15
|
+
!MESSAGE
|
16
|
+
!MESSAGE NMAKE /f "tessdll.mak" CFG="tessdll - Win32 load"
|
17
|
+
!MESSAGE
|
18
|
+
!MESSAGE Possible choices for configuration are:
|
19
|
+
!MESSAGE
|
20
|
+
!MESSAGE "tessdll - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
21
|
+
!MESSAGE "tessdll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
22
|
+
!MESSAGE "tessdll - Win32 load" (based on "Win32 (x86) Dynamic-Link Library")
|
23
|
+
!MESSAGE
|
24
|
+
|
25
|
+
# Begin Project
|
26
|
+
# PROP AllowPerConfigDependencies 0
|
27
|
+
# PROP Scc_ProjName ""
|
28
|
+
# PROP Scc_LocalPath ""
|
29
|
+
CPP=cl.exe
|
30
|
+
MTL=midl.exe
|
31
|
+
RSC=rc.exe
|
32
|
+
|
33
|
+
!IF "$(CFG)" == "tessdll - Win32 Release"
|
34
|
+
|
35
|
+
# PROP BASE Use_MFC 0
|
36
|
+
# PROP BASE Use_Debug_Libraries 0
|
37
|
+
# PROP BASE Output_Dir "Release"
|
38
|
+
# PROP BASE Intermediate_Dir "Release"
|
39
|
+
# PROP BASE Target_Dir ""
|
40
|
+
# PROP Use_MFC 0
|
41
|
+
# PROP Use_Debug_Libraries 0
|
42
|
+
# PROP Output_Dir "."
|
43
|
+
# PROP Intermediate_Dir "dll.Release6"
|
44
|
+
# PROP Ignore_Export_Lib 0
|
45
|
+
# PROP Target_Dir ""
|
46
|
+
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TESSDLL_EXPORTS" /Yu"stdafx.h" /FD /c
|
47
|
+
# ADD CPP /nologo /MT /W3 /GX /O2 /I "aspirin" /I "ccutil" /I "ccstruct" /I "classify" /I "cutil" /I "dict" /I "display" /I "image" /I "textord" /I "viewer" /I "wordrec" /I "ccmain" /I "." /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "_USRDLL" /D "TESSDLL_EXPORTS" /D "__MSW32__" /D "__IPEREGDLL" /D "PURIFY" /FD /c
|
48
|
+
# SUBTRACT CPP /YX /Yc /Yu
|
49
|
+
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
50
|
+
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
51
|
+
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
52
|
+
# ADD RSC /l 0x409 /d "NDEBUG"
|
53
|
+
BSC32=bscmake.exe
|
54
|
+
# ADD BASE BSC32 /nologo
|
55
|
+
# ADD BSC32 /nologo
|
56
|
+
LINK32=link.exe
|
57
|
+
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
|
58
|
+
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /dll /machine:I386 /out:"tessdll.dll"
|
59
|
+
|
60
|
+
!ELSEIF "$(CFG)" == "tessdll - Win32 Debug"
|
61
|
+
|
62
|
+
# PROP BASE Use_MFC 0
|
63
|
+
# PROP BASE Use_Debug_Libraries 1
|
64
|
+
# PROP BASE Output_Dir "tessdll___Win32_Debug"
|
65
|
+
# PROP BASE Intermediate_Dir "tessdll___Win32_Debug"
|
66
|
+
# PROP BASE Target_Dir ""
|
67
|
+
# PROP Use_MFC 0
|
68
|
+
# PROP Use_Debug_Libraries 1
|
69
|
+
# PROP Output_Dir "bin.dbg6"
|
70
|
+
# PROP Intermediate_Dir "dll.Debug6"
|
71
|
+
# PROP Ignore_Export_Lib 0
|
72
|
+
# PROP Target_Dir ""
|
73
|
+
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TESSDLL_EXPORTS" /Yu"stdafx.h" /FD /GZ /c
|
74
|
+
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "aspirin" /I "ccutil" /I "ccstruct" /I "classify" /I "cutil" /I "dict" /I "display" /I "image" /I "textord" /I "viewer" /I "wordrec" /I "." /D "_DEBUG" /D "_CRTDBG_MAP_ALLOC" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "_USRDLL" /D "TESSDLL_EXPORTS" /D "__MSW32__" /D "__IPEREGDLL" /D "PURIFY" /FD /GZ /c
|
75
|
+
# SUBTRACT CPP /YX /Yc /Yu
|
76
|
+
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
77
|
+
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
78
|
+
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
79
|
+
# ADD RSC /l 0x409 /d "_DEBUG"
|
80
|
+
BSC32=bscmake.exe
|
81
|
+
# ADD BASE BSC32 /nologo
|
82
|
+
# ADD BSC32 /nologo
|
83
|
+
LINK32=link.exe
|
84
|
+
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
85
|
+
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
86
|
+
|
87
|
+
!ELSEIF "$(CFG)" == "tessdll - Win32 load"
|
88
|
+
|
89
|
+
# PROP BASE Use_MFC 0
|
90
|
+
# PROP BASE Use_Debug_Libraries 1
|
91
|
+
# PROP BASE Output_Dir "tessdll___Win32_load"
|
92
|
+
# PROP BASE Intermediate_Dir "tessdll___Win32_load"
|
93
|
+
# PROP BASE Ignore_Export_Lib 0
|
94
|
+
# PROP BASE Target_Dir ""
|
95
|
+
# PROP Use_MFC 0
|
96
|
+
# PROP Use_Debug_Libraries 1
|
97
|
+
# PROP Output_Dir "tessdll___Win32_load"
|
98
|
+
# PROP Intermediate_Dir "tessdll.load"
|
99
|
+
# PROP Ignore_Export_Lib 0
|
100
|
+
# PROP Target_Dir ""
|
101
|
+
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "aspirin" /I "ccutil" /I "ccstruct" /I "classify" /I "cutil" /I "dict" /I "display" /I "image" /I "textord" /I "viewer" /I "wordrec" /I "." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TESSDLL_EXPORTS" /D "__MSW32__" /D "__IPEREGDLL" /D "_CRTDBG_MAP_ALLOC" /D "PURIFY" /FD /GZ /c
|
102
|
+
# SUBTRACT BASE CPP /YX /Yc /Yu
|
103
|
+
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "aspirin" /I "ccutil" /I "ccstruct" /I "classify" /I "cutil" /I "dict" /I "display" /I "image" /I "textord" /I "viewer" /I "wordrec" /I "." /D "_DEBUG" /D "_CRTDBG_MAP_ALLOC" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "_USRDLL" /D "TESSDLL_EXPORTS" /D "__MSW32__" /D "__IPEREGDLL" /D "PURIFY" /FD /GZ /c
|
104
|
+
# SUBTRACT CPP /YX /Yc /Yu
|
105
|
+
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
106
|
+
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
107
|
+
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
108
|
+
# ADD RSC /l 0x409 /d "_DEBUG"
|
109
|
+
BSC32=bscmake.exe
|
110
|
+
# ADD BASE BSC32 /nologo
|
111
|
+
# ADD BSC32 /nologo
|
112
|
+
LINK32=link.exe
|
113
|
+
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /out:"C:\Program Files\JetsoftOCR\tessdll.dll" /pdbtype:sept
|
114
|
+
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /dll /debug /machine:I386 /out:"C:\Documents and Settings\Glen Wernersbach\Desktop\loan\tessdll.dll" /pdbtype:sept
|
115
|
+
|
116
|
+
!ENDIF
|
117
|
+
|
118
|
+
# Begin Target
|
119
|
+
|
120
|
+
# Name "tessdll - Win32 Release"
|
121
|
+
# Name "tessdll - Win32 Debug"
|
122
|
+
# Name "tessdll - Win32 load"
|
123
|
+
# Begin Group "Source Files"
|
124
|
+
|
125
|
+
# PROP Default_Filter ""
|
126
|
+
# Begin Group "ccmain"
|
127
|
+
|
128
|
+
# PROP Default_Filter ""
|
129
|
+
# Begin Source File
|
130
|
+
|
131
|
+
SOURCE=.\ccmain\adaptions.cpp
|
132
|
+
# End Source File
|
133
|
+
# Begin Source File
|
134
|
+
|
135
|
+
SOURCE=.\ccmain\applybox.cpp
|
136
|
+
# End Source File
|
137
|
+
# Begin Source File
|
138
|
+
|
139
|
+
SOURCE=.\ccmain\baseapi.cpp
|
140
|
+
# End Source File
|
141
|
+
# Begin Source File
|
142
|
+
|
143
|
+
SOURCE=.\ccmain\blobcmp.cpp
|
144
|
+
# End Source File
|
145
|
+
# Begin Source File
|
146
|
+
|
147
|
+
SOURCE=.\ccmain\callnet.cpp
|
148
|
+
# End Source File
|
149
|
+
# Begin Source File
|
150
|
+
|
151
|
+
SOURCE=.\ccmain\charcut.cpp
|
152
|
+
# End Source File
|
153
|
+
# Begin Source File
|
154
|
+
|
155
|
+
SOURCE=.\ccmain\charsample.cpp
|
156
|
+
# End Source File
|
157
|
+
# Begin Source File
|
158
|
+
|
159
|
+
SOURCE=.\ccmain\control.cpp
|
160
|
+
# End Source File
|
161
|
+
# Begin Source File
|
162
|
+
|
163
|
+
SOURCE=.\ccmain\docqual.cpp
|
164
|
+
# End Source File
|
165
|
+
# Begin Source File
|
166
|
+
|
167
|
+
SOURCE=.\ccmain\expandblob.cpp
|
168
|
+
# End Source File
|
169
|
+
# Begin Source File
|
170
|
+
|
171
|
+
SOURCE=.\ccmain\fixspace.cpp
|
172
|
+
# End Source File
|
173
|
+
# Begin Source File
|
174
|
+
|
175
|
+
SOURCE=.\ccmain\fixxht.cpp
|
176
|
+
# End Source File
|
177
|
+
# Begin Source File
|
178
|
+
|
179
|
+
SOURCE=.\ccmain\imgscale.cpp
|
180
|
+
# End Source File
|
181
|
+
# Begin Source File
|
182
|
+
|
183
|
+
SOURCE=.\ccmain\matmatch.cpp
|
184
|
+
# End Source File
|
185
|
+
# Begin Source File
|
186
|
+
|
187
|
+
SOURCE=.\ccmain\output.cpp
|
188
|
+
# End Source File
|
189
|
+
# Begin Source File
|
190
|
+
|
191
|
+
SOURCE=.\ccmain\pagewalk.cpp
|
192
|
+
# End Source File
|
193
|
+
# Begin Source File
|
194
|
+
|
195
|
+
SOURCE=.\ccmain\paircmp.cpp
|
196
|
+
# End Source File
|
197
|
+
# Begin Source File
|
198
|
+
|
199
|
+
SOURCE=.\ccmain\pgedit.cpp
|
200
|
+
# End Source File
|
201
|
+
# Begin Source File
|
202
|
+
|
203
|
+
SOURCE=.\ccmain\reject.cpp
|
204
|
+
# End Source File
|
205
|
+
# Begin Source File
|
206
|
+
|
207
|
+
SOURCE=.\ccmain\scaleimg.cpp
|
208
|
+
# End Source File
|
209
|
+
# Begin Source File
|
210
|
+
|
211
|
+
SOURCE=.\ccmain\tessbox.cpp
|
212
|
+
# End Source File
|
213
|
+
# Begin Source File
|
214
|
+
|
215
|
+
SOURCE=.\ccmain\tessedit.cpp
|
216
|
+
# End Source File
|
217
|
+
# Begin Source File
|
218
|
+
|
219
|
+
SOURCE=.\ccmain\tesseractmain.cpp
|
220
|
+
# End Source File
|
221
|
+
# Begin Source File
|
222
|
+
|
223
|
+
SOURCE=.\ccmain\tessvars.cpp
|
224
|
+
# End Source File
|
225
|
+
# Begin Source File
|
226
|
+
|
227
|
+
SOURCE=.\ccmain\tfacepp.cpp
|
228
|
+
# End Source File
|
229
|
+
# Begin Source File
|
230
|
+
|
231
|
+
SOURCE=.\ccmain\tstruct.cpp
|
232
|
+
# End Source File
|
233
|
+
# Begin Source File
|
234
|
+
|
235
|
+
SOURCE=.\ccmain\varabled.cpp
|
236
|
+
# End Source File
|
237
|
+
# Begin Source File
|
238
|
+
|
239
|
+
SOURCE=.\ccmain\werdit.cpp
|
240
|
+
# End Source File
|
241
|
+
# End Group
|
242
|
+
# Begin Group "ccstruct"
|
243
|
+
|
244
|
+
# PROP Default_Filter ""
|
245
|
+
# Begin Source File
|
246
|
+
|
247
|
+
SOURCE=.\ccstruct\blobbox.cpp
|
248
|
+
# End Source File
|
249
|
+
# Begin Source File
|
250
|
+
|
251
|
+
SOURCE=.\ccstruct\blobs.cpp
|
252
|
+
# End Source File
|
253
|
+
# Begin Source File
|
254
|
+
|
255
|
+
SOURCE=.\ccstruct\blread.cpp
|
256
|
+
# End Source File
|
257
|
+
# Begin Source File
|
258
|
+
|
259
|
+
SOURCE=.\ccstruct\callcpp.cpp
|
260
|
+
# End Source File
|
261
|
+
# Begin Source File
|
262
|
+
|
263
|
+
SOURCE=.\ccstruct\coutln.cpp
|
264
|
+
# End Source File
|
265
|
+
# Begin Source File
|
266
|
+
|
267
|
+
SOURCE=.\ccstruct\genblob.cpp
|
268
|
+
# End Source File
|
269
|
+
# Begin Source File
|
270
|
+
|
271
|
+
SOURCE=.\ccstruct\labls.cpp
|
272
|
+
# End Source File
|
273
|
+
# Begin Source File
|
274
|
+
|
275
|
+
SOURCE=.\ccstruct\linlsq.cpp
|
276
|
+
# End Source File
|
277
|
+
# Begin Source File
|
278
|
+
|
279
|
+
SOURCE=.\ccstruct\lmedsq.cpp
|
280
|
+
# End Source File
|
281
|
+
# Begin Source File
|
282
|
+
|
283
|
+
SOURCE=.\ccstruct\mod128.cpp
|
284
|
+
# End Source File
|
285
|
+
# Begin Source File
|
286
|
+
|
287
|
+
SOURCE=.\ccstruct\normalis.cpp
|
288
|
+
# End Source File
|
289
|
+
# Begin Source File
|
290
|
+
|
291
|
+
SOURCE=.\ccstruct\ocrblock.cpp
|
292
|
+
# End Source File
|
293
|
+
# Begin Source File
|
294
|
+
|
295
|
+
SOURCE=.\ccstruct\ocrrow.cpp
|
296
|
+
# End Source File
|
297
|
+
# Begin Source File
|
298
|
+
|
299
|
+
SOURCE=.\ccstruct\pageblk.cpp
|
300
|
+
# End Source File
|
301
|
+
# Begin Source File
|
302
|
+
|
303
|
+
SOURCE=.\ccstruct\pageres.cpp
|
304
|
+
# End Source File
|
305
|
+
# Begin Source File
|
306
|
+
|
307
|
+
SOURCE=.\ccstruct\pdblock.cpp
|
308
|
+
# End Source File
|
309
|
+
# Begin Source File
|
310
|
+
|
311
|
+
SOURCE=.\ccstruct\points.cpp
|
312
|
+
# End Source File
|
313
|
+
# Begin Source File
|
314
|
+
|
315
|
+
SOURCE=.\ccstruct\polyaprx.cpp
|
316
|
+
# End Source File
|
317
|
+
# Begin Source File
|
318
|
+
|
319
|
+
SOURCE=.\ccstruct\polyblk.cpp
|
320
|
+
# End Source File
|
321
|
+
# Begin Source File
|
322
|
+
|
323
|
+
SOURCE=.\ccstruct\polyblob.cpp
|
324
|
+
# End Source File
|
325
|
+
# Begin Source File
|
326
|
+
|
327
|
+
SOURCE=.\ccstruct\polyvert.cpp
|
328
|
+
# End Source File
|
329
|
+
# Begin Source File
|
330
|
+
|
331
|
+
SOURCE=.\ccstruct\poutline.cpp
|
332
|
+
# End Source File
|
333
|
+
# Begin Source File
|
334
|
+
|
335
|
+
SOURCE=.\ccstruct\quadlsq.cpp
|
336
|
+
# End Source File
|
337
|
+
# Begin Source File
|
338
|
+
|
339
|
+
SOURCE=.\ccstruct\quadratc.cpp
|
340
|
+
# End Source File
|
341
|
+
# Begin Source File
|
342
|
+
|
343
|
+
SOURCE=.\ccstruct\quspline.cpp
|
344
|
+
# End Source File
|
345
|
+
# Begin Source File
|
346
|
+
|
347
|
+
SOURCE=.\ccstruct\ratngs.cpp
|
348
|
+
# End Source File
|
349
|
+
# Begin Source File
|
350
|
+
|
351
|
+
SOURCE=.\ccstruct\rect.cpp
|
352
|
+
# End Source File
|
353
|
+
# Begin Source File
|
354
|
+
|
355
|
+
SOURCE=.\ccstruct\rejctmap.cpp
|
356
|
+
# End Source File
|
357
|
+
# Begin Source File
|
358
|
+
|
359
|
+
SOURCE=.\ccstruct\rwpoly.cpp
|
360
|
+
# End Source File
|
361
|
+
# Begin Source File
|
362
|
+
|
363
|
+
SOURCE=.\ccstruct\statistc.cpp
|
364
|
+
# End Source File
|
365
|
+
# Begin Source File
|
366
|
+
|
367
|
+
SOURCE=.\ccstruct\stepblob.cpp
|
368
|
+
# End Source File
|
369
|
+
# Begin Source File
|
370
|
+
|
371
|
+
SOURCE=.\ccstruct\txtregn.cpp
|
372
|
+
# End Source File
|
373
|
+
# Begin Source File
|
374
|
+
|
375
|
+
SOURCE=.\ccstruct\vecfuncs.cpp
|
376
|
+
# End Source File
|
377
|
+
# Begin Source File
|
378
|
+
|
379
|
+
SOURCE=.\ccstruct\werd.cpp
|
380
|
+
# End Source File
|
381
|
+
# End Group
|
382
|
+
# Begin Group "ccutil"
|
383
|
+
|
384
|
+
# PROP Default_Filter ""
|
385
|
+
# Begin Source File
|
386
|
+
|
387
|
+
SOURCE=.\ccutil\basedir.cpp
|
388
|
+
# End Source File
|
389
|
+
# Begin Source File
|
390
|
+
|
391
|
+
SOURCE=.\ccutil\bits16.cpp
|
392
|
+
# End Source File
|
393
|
+
# Begin Source File
|
394
|
+
|
395
|
+
SOURCE=.\ccutil\boxread.cpp
|
396
|
+
# End Source File
|
397
|
+
# Begin Source File
|
398
|
+
|
399
|
+
SOURCE=.\ccutil\clst.cpp
|
400
|
+
# End Source File
|
401
|
+
# Begin Source File
|
402
|
+
|
403
|
+
SOURCE=.\ccutil\debugwin.cpp
|
404
|
+
# End Source File
|
405
|
+
# Begin Source File
|
406
|
+
|
407
|
+
SOURCE=.\ccutil\elst.cpp
|
408
|
+
# End Source File
|
409
|
+
# Begin Source File
|
410
|
+
|
411
|
+
SOURCE=.\ccutil\elst2.cpp
|
412
|
+
# End Source File
|
413
|
+
# Begin Source File
|
414
|
+
|
415
|
+
SOURCE=.\ccutil\errcode.cpp
|
416
|
+
# End Source File
|
417
|
+
# Begin Source File
|
418
|
+
|
419
|
+
SOURCE=.\ccutil\globaloc.cpp
|
420
|
+
# End Source File
|
421
|
+
# Begin Source File
|
422
|
+
|
423
|
+
SOURCE=.\ccutil\hashfn.cpp
|
424
|
+
# End Source File
|
425
|
+
# Begin Source File
|
426
|
+
|
427
|
+
SOURCE=.\ccutil\mainblk.cpp
|
428
|
+
# End Source File
|
429
|
+
# Begin Source File
|
430
|
+
|
431
|
+
SOURCE=.\ccutil\memblk.cpp
|
432
|
+
# End Source File
|
433
|
+
# Begin Source File
|
434
|
+
|
435
|
+
SOURCE=.\ccutil\memry.cpp
|
436
|
+
# End Source File
|
437
|
+
# Begin Source File
|
438
|
+
|
439
|
+
SOURCE=.\ccutil\mfcpch.cpp
|
440
|
+
# End Source File
|
441
|
+
# Begin Source File
|
442
|
+
|
443
|
+
SOURCE=.\ccutil\ocrshell.cpp
|
444
|
+
# End Source File
|
445
|
+
# Begin Source File
|
446
|
+
|
447
|
+
SOURCE=.\ccutil\serialis.cpp
|
448
|
+
# End Source File
|
449
|
+
# Begin Source File
|
450
|
+
|
451
|
+
SOURCE=.\ccutil\strngs.cpp
|
452
|
+
# End Source File
|
453
|
+
# Begin Source File
|
454
|
+
|
455
|
+
SOURCE=.\ccutil\tessopt.cpp
|
456
|
+
# End Source File
|
457
|
+
# Begin Source File
|
458
|
+
|
459
|
+
SOURCE=.\ccutil\tprintf.cpp
|
460
|
+
# End Source File
|
461
|
+
# Begin Source File
|
462
|
+
|
463
|
+
SOURCE=.\ccutil\unichar.cpp
|
464
|
+
# End Source File
|
465
|
+
# Begin Source File
|
466
|
+
|
467
|
+
SOURCE=.\ccutil\unicharmap.cpp
|
468
|
+
# End Source File
|
469
|
+
# Begin Source File
|
470
|
+
|
471
|
+
SOURCE=.\ccutil\unicharset.cpp
|
472
|
+
# End Source File
|
473
|
+
# Begin Source File
|
474
|
+
|
475
|
+
SOURCE=.\ccutil\varable.cpp
|
476
|
+
# End Source File
|
477
|
+
# End Group
|
478
|
+
# Begin Group "classify"
|
479
|
+
|
480
|
+
# PROP Default_Filter ""
|
481
|
+
# Begin Source File
|
482
|
+
|
483
|
+
SOURCE=.\classify\adaptive.cpp
|
484
|
+
# End Source File
|
485
|
+
# Begin Source File
|
486
|
+
|
487
|
+
SOURCE=.\classify\adaptmatch.cpp
|
488
|
+
# End Source File
|
489
|
+
# Begin Source File
|
490
|
+
|
491
|
+
SOURCE=.\classify\baseline.cpp
|
492
|
+
# End Source File
|
493
|
+
# Begin Source File
|
494
|
+
|
495
|
+
SOURCE=.\classify\blobclass.cpp
|
496
|
+
# End Source File
|
497
|
+
# Begin Source File
|
498
|
+
|
499
|
+
SOURCE=.\classify\chartoname.cpp
|
500
|
+
# End Source File
|
501
|
+
# Begin Source File
|
502
|
+
|
503
|
+
SOURCE=.\classify\cluster.cpp
|
504
|
+
# End Source File
|
505
|
+
# Begin Source File
|
506
|
+
|
507
|
+
SOURCE=.\classify\clusttool.cpp
|
508
|
+
# End Source File
|
509
|
+
# Begin Source File
|
510
|
+
|
511
|
+
SOURCE=.\classify\cutoffs.cpp
|
512
|
+
# End Source File
|
513
|
+
# Begin Source File
|
514
|
+
|
515
|
+
SOURCE=.\classify\extract.cpp
|
516
|
+
# End Source File
|
517
|
+
# Begin Source File
|
518
|
+
|
519
|
+
SOURCE=.\classify\featdefs.cpp
|
520
|
+
# End Source File
|
521
|
+
# Begin Source File
|
522
|
+
|
523
|
+
SOURCE=.\classify\flexfx.cpp
|
524
|
+
# End Source File
|
525
|
+
# Begin Source File
|
526
|
+
|
527
|
+
SOURCE=.\classify\float2int.cpp
|
528
|
+
# End Source File
|
529
|
+
# Begin Source File
|
530
|
+
|
531
|
+
SOURCE=.\classify\fpoint.cpp
|
532
|
+
# End Source File
|
533
|
+
# Begin Source File
|
534
|
+
|
535
|
+
SOURCE=.\classify\fxdefs.cpp
|
536
|
+
# End Source File
|
537
|
+
# Begin Source File
|
538
|
+
|
539
|
+
SOURCE=.\classify\hideedge.cpp
|
540
|
+
# End Source File
|
541
|
+
# Begin Source File
|
542
|
+
|
543
|
+
SOURCE=.\classify\intfx.cpp
|
544
|
+
# End Source File
|
545
|
+
# Begin Source File
|
546
|
+
|
547
|
+
SOURCE=.\classify\intmatcher.cpp
|
548
|
+
# End Source File
|
549
|
+
# Begin Source File
|
550
|
+
|
551
|
+
SOURCE=.\classify\intproto.cpp
|
552
|
+
# End Source File
|
553
|
+
# Begin Source File
|
554
|
+
|
555
|
+
SOURCE=.\classify\kdtree.cpp
|
556
|
+
# End Source File
|
557
|
+
# Begin Source File
|
558
|
+
|
559
|
+
SOURCE=.\classify\mf.cpp
|
560
|
+
# End Source File
|
561
|
+
# Begin Source File
|
562
|
+
|
563
|
+
SOURCE=.\classify\mfdefs.cpp
|
564
|
+
# End Source File
|
565
|
+
# Begin Source File
|
566
|
+
|
567
|
+
SOURCE=.\classify\mfoutline.cpp
|
568
|
+
# End Source File
|
569
|
+
# Begin Source File
|
570
|
+
|
571
|
+
SOURCE=.\classify\mfx.cpp
|
572
|
+
# End Source File
|
573
|
+
# Begin Source File
|
574
|
+
|
575
|
+
SOURCE=.\classify\normfeat.cpp
|
576
|
+
# End Source File
|
577
|
+
# Begin Source File
|
578
|
+
|
579
|
+
SOURCE=.\classify\normmatch.cpp
|
580
|
+
# End Source File
|
581
|
+
# Begin Source File
|
582
|
+
|
583
|
+
SOURCE=.\classify\ocrfeatures.cpp
|
584
|
+
# End Source File
|
585
|
+
# Begin Source File
|
586
|
+
|
587
|
+
SOURCE=.\classify\outfeat.cpp
|
588
|
+
# End Source File
|
589
|
+
# Begin Source File
|
590
|
+
|
591
|
+
SOURCE=.\classify\picofeat.cpp
|
592
|
+
# End Source File
|
593
|
+
# Begin Source File
|
594
|
+
|
595
|
+
SOURCE=.\classify\protos.cpp
|
596
|
+
# End Source File
|
597
|
+
# Begin Source File
|
598
|
+
|
599
|
+
SOURCE=.\classify\sigmenu.cpp
|
600
|
+
# End Source File
|
601
|
+
# Begin Source File
|
602
|
+
|
603
|
+
SOURCE=.\classify\speckle.cpp
|
604
|
+
# End Source File
|
605
|
+
# Begin Source File
|
606
|
+
|
607
|
+
SOURCE=.\classify\xform2d.cpp
|
608
|
+
# End Source File
|
609
|
+
# End Group
|
610
|
+
# Begin Group "cutil"
|
611
|
+
|
612
|
+
# PROP Default_Filter ""
|
613
|
+
# Begin Source File
|
614
|
+
|
615
|
+
SOURCE=.\cutil\bitvec.cpp
|
616
|
+
# End Source File
|
617
|
+
# Begin Source File
|
618
|
+
|
619
|
+
SOURCE=.\cutil\cutil.cpp
|
620
|
+
# End Source File
|
621
|
+
# Begin Source File
|
622
|
+
|
623
|
+
SOURCE=.\cutil\danerror.cpp
|
624
|
+
# End Source File
|
625
|
+
# Begin Source File
|
626
|
+
|
627
|
+
SOURCE=.\cutil\debug.cpp
|
628
|
+
# End Source File
|
629
|
+
# Begin Source File
|
630
|
+
|
631
|
+
SOURCE=.\cutil\efio.cpp
|
632
|
+
# End Source File
|
633
|
+
# Begin Source File
|
634
|
+
|
635
|
+
SOURCE=.\cutil\emalloc.cpp
|
636
|
+
# End Source File
|
637
|
+
# Begin Source File
|
638
|
+
|
639
|
+
SOURCE=.\cutil\freelist.cpp
|
640
|
+
# End Source File
|
641
|
+
# Begin Source File
|
642
|
+
|
643
|
+
SOURCE=.\cutil\globals.cpp
|
644
|
+
# End Source File
|
645
|
+
# Begin Source File
|
646
|
+
|
647
|
+
SOURCE=.\cutil\listio.cpp
|
648
|
+
# End Source File
|
649
|
+
# Begin Source File
|
650
|
+
|
651
|
+
SOURCE=.\cutil\oldheap.cpp
|
652
|
+
# End Source File
|
653
|
+
# Begin Source File
|
654
|
+
|
655
|
+
SOURCE=.\cutil\oldlist.cpp
|
656
|
+
# End Source File
|
657
|
+
# Begin Source File
|
658
|
+
|
659
|
+
SOURCE=.\cutil\structures.cpp
|
660
|
+
# End Source File
|
661
|
+
# Begin Source File
|
662
|
+
|
663
|
+
SOURCE=.\cutil\tessarray.cpp
|
664
|
+
# End Source File
|
665
|
+
# Begin Source File
|
666
|
+
|
667
|
+
SOURCE=.\cutil\tordvars.cpp
|
668
|
+
# End Source File
|
669
|
+
# Begin Source File
|
670
|
+
|
671
|
+
SOURCE=.\cutil\variables.cpp
|
672
|
+
# End Source File
|
673
|
+
# End Group
|
674
|
+
# Begin Group "dict"
|
675
|
+
|
676
|
+
# PROP Default_Filter ""
|
677
|
+
# Begin Source File
|
678
|
+
|
679
|
+
SOURCE=.\dict\choices.cpp
|
680
|
+
# End Source File
|
681
|
+
# Begin Source File
|
682
|
+
|
683
|
+
SOURCE=.\dict\context.cpp
|
684
|
+
# End Source File
|
685
|
+
# Begin Source File
|
686
|
+
|
687
|
+
SOURCE=.\dict\dawg.cpp
|
688
|
+
# End Source File
|
689
|
+
# Begin Source File
|
690
|
+
|
691
|
+
SOURCE=.\dict\hyphen.cpp
|
692
|
+
# End Source File
|
693
|
+
# Begin Source File
|
694
|
+
|
695
|
+
SOURCE=.\dict\permdawg.cpp
|
696
|
+
# End Source File
|
697
|
+
# Begin Source File
|
698
|
+
|
699
|
+
SOURCE=.\dict\permngram.cpp
|
700
|
+
# End Source File
|
701
|
+
# Begin Source File
|
702
|
+
|
703
|
+
SOURCE=.\dict\permnum.cpp
|
704
|
+
# End Source File
|
705
|
+
# Begin Source File
|
706
|
+
|
707
|
+
SOURCE=.\dict\permute.cpp
|
708
|
+
# End Source File
|
709
|
+
# Begin Source File
|
710
|
+
|
711
|
+
SOURCE=.\dict\states.cpp
|
712
|
+
# End Source File
|
713
|
+
# Begin Source File
|
714
|
+
|
715
|
+
SOURCE=.\dict\stopper.cpp
|
716
|
+
# End Source File
|
717
|
+
# Begin Source File
|
718
|
+
|
719
|
+
SOURCE=.\dict\trie.cpp
|
720
|
+
# End Source File
|
721
|
+
# End Group
|
722
|
+
# Begin Group "display"
|
723
|
+
|
724
|
+
# PROP Default_Filter ""
|
725
|
+
# End Group
|
726
|
+
# Begin Group "image"
|
727
|
+
|
728
|
+
# PROP Default_Filter ""
|
729
|
+
# Begin Source File
|
730
|
+
|
731
|
+
SOURCE=.\image\bitstrm.cpp
|
732
|
+
# End Source File
|
733
|
+
# Begin Source File
|
734
|
+
|
735
|
+
SOURCE=.\image\imgbmp.cpp
|
736
|
+
# End Source File
|
737
|
+
# Begin Source File
|
738
|
+
|
739
|
+
SOURCE=.\image\imgio.cpp
|
740
|
+
# End Source File
|
741
|
+
# Begin Source File
|
742
|
+
|
743
|
+
SOURCE=.\image\imgs.cpp
|
744
|
+
# End Source File
|
745
|
+
# Begin Source File
|
746
|
+
|
747
|
+
SOURCE=.\image\imgtiff.cpp
|
748
|
+
# End Source File
|
749
|
+
# Begin Source File
|
750
|
+
|
751
|
+
SOURCE=.\image\svshowim.cpp
|
752
|
+
# End Source File
|
753
|
+
# End Group
|
754
|
+
# Begin Group "textord"
|
755
|
+
|
756
|
+
# PROP Default_Filter ""
|
757
|
+
# Begin Source File
|
758
|
+
|
759
|
+
SOURCE=.\textord\blkocc.cpp
|
760
|
+
# ADD CPP /I "pageseg"
|
761
|
+
# End Source File
|
762
|
+
# Begin Source File
|
763
|
+
|
764
|
+
SOURCE=.\textord\drawedg.cpp
|
765
|
+
# ADD CPP /I "pageseg"
|
766
|
+
# End Source File
|
767
|
+
# Begin Source File
|
768
|
+
|
769
|
+
SOURCE=.\textord\drawtord.cpp
|
770
|
+
# ADD CPP /I "pageseg"
|
771
|
+
# End Source File
|
772
|
+
# Begin Source File
|
773
|
+
|
774
|
+
SOURCE=.\textord\edgblob.cpp
|
775
|
+
# ADD CPP /I "pageseg"
|
776
|
+
# End Source File
|
777
|
+
# Begin Source File
|
778
|
+
|
779
|
+
SOURCE=.\textord\edgloop.cpp
|
780
|
+
# ADD CPP /I "pageseg"
|
781
|
+
# End Source File
|
782
|
+
# Begin Source File
|
783
|
+
|
784
|
+
SOURCE=.\textord\fpchop.cpp
|
785
|
+
# ADD CPP /I "pageseg"
|
786
|
+
# End Source File
|
787
|
+
# Begin Source File
|
788
|
+
|
789
|
+
SOURCE=.\textord\gap_map.cpp
|
790
|
+
# ADD CPP /I "pageseg"
|
791
|
+
# End Source File
|
792
|
+
# Begin Source File
|
793
|
+
|
794
|
+
SOURCE=.\textord\makerow.cpp
|
795
|
+
# ADD CPP /I "pageseg"
|
796
|
+
# End Source File
|
797
|
+
# Begin Source File
|
798
|
+
|
799
|
+
SOURCE=.\textord\oldbasel.cpp
|
800
|
+
# ADD CPP /I "pageseg"
|
801
|
+
# End Source File
|
802
|
+
# Begin Source File
|
803
|
+
|
804
|
+
SOURCE=.\textord\pithsync.cpp
|
805
|
+
# ADD CPP /I "pageseg"
|
806
|
+
# End Source File
|
807
|
+
# Begin Source File
|
808
|
+
|
809
|
+
SOURCE=.\textord\pitsync1.cpp
|
810
|
+
# ADD CPP /I "pageseg"
|
811
|
+
# End Source File
|
812
|
+
# Begin Source File
|
813
|
+
|
814
|
+
SOURCE=.\textord\scanedg.cpp
|
815
|
+
# ADD CPP /I "pageseg"
|
816
|
+
# End Source File
|
817
|
+
# Begin Source File
|
818
|
+
|
819
|
+
SOURCE=.\textord\sortflts.cpp
|
820
|
+
# ADD CPP /I "pageseg"
|
821
|
+
# End Source File
|
822
|
+
# Begin Source File
|
823
|
+
|
824
|
+
SOURCE=.\textord\topitch.cpp
|
825
|
+
# ADD CPP /I "pageseg"
|
826
|
+
# End Source File
|
827
|
+
# Begin Source File
|
828
|
+
|
829
|
+
SOURCE=.\textord\tordmain.cpp
|
830
|
+
# ADD CPP /I "pageseg"
|
831
|
+
# End Source File
|
832
|
+
# Begin Source File
|
833
|
+
|
834
|
+
SOURCE=.\textord\tospace.cpp
|
835
|
+
# ADD CPP /I "pageseg"
|
836
|
+
# End Source File
|
837
|
+
# Begin Source File
|
838
|
+
|
839
|
+
SOURCE=.\textord\tovars.cpp
|
840
|
+
# ADD CPP /I "pageseg"
|
841
|
+
# End Source File
|
842
|
+
# Begin Source File
|
843
|
+
|
844
|
+
SOURCE=.\textord\underlin.cpp
|
845
|
+
# ADD CPP /I "pageseg"
|
846
|
+
# End Source File
|
847
|
+
# Begin Source File
|
848
|
+
|
849
|
+
SOURCE=.\textord\wordseg.cpp
|
850
|
+
# ADD CPP /I "pageseg"
|
851
|
+
# End Source File
|
852
|
+
# End Group
|
853
|
+
# Begin Group "viewer"
|
854
|
+
|
855
|
+
# PROP Default_Filter ""
|
856
|
+
# Begin Source File
|
857
|
+
|
858
|
+
SOURCE=.\viewer\scrollview.cpp
|
859
|
+
# End Source File
|
860
|
+
# Begin Source File
|
861
|
+
|
862
|
+
SOURCE=.\viewer\svmnode.cpp
|
863
|
+
# End Source File
|
864
|
+
# Begin Source File
|
865
|
+
|
866
|
+
SOURCE=.\viewer\svutil.cpp
|
867
|
+
# End Source File
|
868
|
+
# End Group
|
869
|
+
# Begin Group "wordrec"
|
870
|
+
|
871
|
+
# PROP Default_Filter ""
|
872
|
+
# Begin Source File
|
873
|
+
|
874
|
+
SOURCE=.\wordrec\associate.cpp
|
875
|
+
# End Source File
|
876
|
+
# Begin Source File
|
877
|
+
|
878
|
+
SOURCE=.\wordrec\badwords.cpp
|
879
|
+
# End Source File
|
880
|
+
# Begin Source File
|
881
|
+
|
882
|
+
SOURCE=.\wordrec\bestfirst.cpp
|
883
|
+
# End Source File
|
884
|
+
# Begin Source File
|
885
|
+
|
886
|
+
SOURCE=.\wordrec\chop.cpp
|
887
|
+
# End Source File
|
888
|
+
# Begin Source File
|
889
|
+
|
890
|
+
SOURCE=.\wordrec\chopper.cpp
|
891
|
+
# End Source File
|
892
|
+
# Begin Source File
|
893
|
+
|
894
|
+
SOURCE=.\wordrec\closed.cpp
|
895
|
+
# End Source File
|
896
|
+
# Begin Source File
|
897
|
+
|
898
|
+
SOURCE=.\wordrec\djmenus.cpp
|
899
|
+
# End Source File
|
900
|
+
# Begin Source File
|
901
|
+
|
902
|
+
SOURCE=.\wordrec\drawfx.cpp
|
903
|
+
# End Source File
|
904
|
+
# Begin Source File
|
905
|
+
|
906
|
+
SOURCE=.\wordrec\findseam.cpp
|
907
|
+
# End Source File
|
908
|
+
# Begin Source File
|
909
|
+
|
910
|
+
SOURCE=.\wordrec\gradechop.cpp
|
911
|
+
# End Source File
|
912
|
+
# Begin Source File
|
913
|
+
|
914
|
+
SOURCE=.\wordrec\heuristic.cpp
|
915
|
+
# End Source File
|
916
|
+
# Begin Source File
|
917
|
+
|
918
|
+
SOURCE=.\wordrec\makechop.cpp
|
919
|
+
# End Source File
|
920
|
+
# Begin Source File
|
921
|
+
|
922
|
+
SOURCE=.\wordrec\matchtab.cpp
|
923
|
+
# End Source File
|
924
|
+
# Begin Source File
|
925
|
+
|
926
|
+
SOURCE=.\wordrec\matrix.cpp
|
927
|
+
# End Source File
|
928
|
+
# Begin Source File
|
929
|
+
|
930
|
+
SOURCE=.\wordrec\metrics.cpp
|
931
|
+
# End Source File
|
932
|
+
# Begin Source File
|
933
|
+
|
934
|
+
SOURCE=.\wordrec\mfvars.cpp
|
935
|
+
# End Source File
|
936
|
+
# Begin Source File
|
937
|
+
|
938
|
+
SOURCE=.\wordrec\msmenus.cpp
|
939
|
+
# End Source File
|
940
|
+
# Begin Source File
|
941
|
+
|
942
|
+
SOURCE=.\wordrec\olutil.cpp
|
943
|
+
# End Source File
|
944
|
+
# Begin Source File
|
945
|
+
|
946
|
+
SOURCE=.\wordrec\outlines.cpp
|
947
|
+
# End Source File
|
948
|
+
# Begin Source File
|
949
|
+
|
950
|
+
SOURCE=.\wordrec\pieces.cpp
|
951
|
+
# End Source File
|
952
|
+
# Begin Source File
|
953
|
+
|
954
|
+
SOURCE=.\wordrec\plotedges.cpp
|
955
|
+
# End Source File
|
956
|
+
# Begin Source File
|
957
|
+
|
958
|
+
SOURCE=.\wordrec\plotseg.cpp
|
959
|
+
# End Source File
|
960
|
+
# Begin Source File
|
961
|
+
|
962
|
+
SOURCE=.\wordrec\render.cpp
|
963
|
+
# End Source File
|
964
|
+
# Begin Source File
|
965
|
+
|
966
|
+
SOURCE=.\wordrec\seam.cpp
|
967
|
+
# End Source File
|
968
|
+
# Begin Source File
|
969
|
+
|
970
|
+
SOURCE=.\wordrec\split.cpp
|
971
|
+
# End Source File
|
972
|
+
# Begin Source File
|
973
|
+
|
974
|
+
SOURCE=.\wordrec\tally.cpp
|
975
|
+
# End Source File
|
976
|
+
# Begin Source File
|
977
|
+
|
978
|
+
SOURCE=.\wordrec\tessinit.cpp
|
979
|
+
# End Source File
|
980
|
+
# Begin Source File
|
981
|
+
|
982
|
+
SOURCE=.\wordrec\tface.cpp
|
983
|
+
# End Source File
|
984
|
+
# Begin Source File
|
985
|
+
|
986
|
+
SOURCE=.\wordrec\wordclass.cpp
|
987
|
+
# End Source File
|
988
|
+
# End Group
|
989
|
+
# Begin Group "ccmain header"
|
990
|
+
|
991
|
+
# PROP Default_Filter ""
|
992
|
+
# Begin Source File
|
993
|
+
|
994
|
+
SOURCE=.\ccmain\adaptions.h
|
995
|
+
# End Source File
|
996
|
+
# Begin Source File
|
997
|
+
|
998
|
+
SOURCE=.\ccmain\applybox.h
|
999
|
+
# End Source File
|
1000
|
+
# Begin Source File
|
1001
|
+
|
1002
|
+
SOURCE=.\ccmain\blobcmp.h
|
1003
|
+
# End Source File
|
1004
|
+
# Begin Source File
|
1005
|
+
|
1006
|
+
SOURCE=.\ccmain\callnet.h
|
1007
|
+
# End Source File
|
1008
|
+
# Begin Source File
|
1009
|
+
|
1010
|
+
SOURCE=.\ccmain\charcut.h
|
1011
|
+
# End Source File
|
1012
|
+
# Begin Source File
|
1013
|
+
|
1014
|
+
SOURCE=.\ccmain\charsample.h
|
1015
|
+
# End Source File
|
1016
|
+
# Begin Source File
|
1017
|
+
|
1018
|
+
SOURCE=.\ccmain\control.h
|
1019
|
+
# End Source File
|
1020
|
+
# Begin Source File
|
1021
|
+
|
1022
|
+
SOURCE=.\ccmain\docqual.h
|
1023
|
+
# End Source File
|
1024
|
+
# Begin Source File
|
1025
|
+
|
1026
|
+
SOURCE=.\ccmain\expandblob.h
|
1027
|
+
# End Source File
|
1028
|
+
# Begin Source File
|
1029
|
+
|
1030
|
+
SOURCE=.\ccmain\fixspace.h
|
1031
|
+
# End Source File
|
1032
|
+
# Begin Source File
|
1033
|
+
|
1034
|
+
SOURCE=.\ccmain\fixxht.h
|
1035
|
+
# End Source File
|
1036
|
+
# Begin Source File
|
1037
|
+
|
1038
|
+
SOURCE=.\ccmain\imgscale.h
|
1039
|
+
# End Source File
|
1040
|
+
# Begin Source File
|
1041
|
+
|
1042
|
+
SOURCE=.\ccmain\matmatch.h
|
1043
|
+
# End Source File
|
1044
|
+
# Begin Source File
|
1045
|
+
|
1046
|
+
SOURCE=.\ccmain\paircmp.h
|
1047
|
+
# End Source File
|
1048
|
+
# Begin Source File
|
1049
|
+
|
1050
|
+
SOURCE=.\ccmain\reject.h
|
1051
|
+
# End Source File
|
1052
|
+
# Begin Source File
|
1053
|
+
|
1054
|
+
SOURCE=.\ccmain\scaleimg.h
|
1055
|
+
# End Source File
|
1056
|
+
# Begin Source File
|
1057
|
+
|
1058
|
+
SOURCE=.\ccmain\tessbox.h
|
1059
|
+
# End Source File
|
1060
|
+
# Begin Source File
|
1061
|
+
|
1062
|
+
SOURCE=.\ccmain\tessedit.h
|
1063
|
+
# End Source File
|
1064
|
+
# Begin Source File
|
1065
|
+
|
1066
|
+
SOURCE=.\ccmain\tessvars.h
|
1067
|
+
# End Source File
|
1068
|
+
# Begin Source File
|
1069
|
+
|
1070
|
+
SOURCE=.\ccmain\tfacep.h
|
1071
|
+
# End Source File
|
1072
|
+
# Begin Source File
|
1073
|
+
|
1074
|
+
SOURCE=.\ccmain\tfacepp.h
|
1075
|
+
# End Source File
|
1076
|
+
# Begin Source File
|
1077
|
+
|
1078
|
+
SOURCE=.\ccmain\tstruct.h
|
1079
|
+
# End Source File
|
1080
|
+
# Begin Source File
|
1081
|
+
|
1082
|
+
SOURCE=.\ccmain\werdit.h
|
1083
|
+
# End Source File
|
1084
|
+
# End Group
|
1085
|
+
# Begin Group "ccstruct header"
|
1086
|
+
|
1087
|
+
# PROP Default_Filter ""
|
1088
|
+
# Begin Source File
|
1089
|
+
|
1090
|
+
SOURCE=.\ccstruct\blckerr.h
|
1091
|
+
# End Source File
|
1092
|
+
# Begin Source File
|
1093
|
+
|
1094
|
+
SOURCE=.\ccstruct\blobbox.h
|
1095
|
+
# End Source File
|
1096
|
+
# Begin Source File
|
1097
|
+
|
1098
|
+
SOURCE=.\ccstruct\blobs.h
|
1099
|
+
# End Source File
|
1100
|
+
# Begin Source File
|
1101
|
+
|
1102
|
+
SOURCE=.\ccstruct\blread.h
|
1103
|
+
# End Source File
|
1104
|
+
# Begin Source File
|
1105
|
+
|
1106
|
+
SOURCE=.\ccstruct\coutln.h
|
1107
|
+
# End Source File
|
1108
|
+
# Begin Source File
|
1109
|
+
|
1110
|
+
SOURCE=.\ccstruct\crakedge.h
|
1111
|
+
# End Source File
|
1112
|
+
# Begin Source File
|
1113
|
+
|
1114
|
+
SOURCE=.\ccstruct\genblob.h
|
1115
|
+
# End Source File
|
1116
|
+
# Begin Source File
|
1117
|
+
|
1118
|
+
SOURCE=.\ccstruct\hpddef.h
|
1119
|
+
# End Source File
|
1120
|
+
# Begin Source File
|
1121
|
+
|
1122
|
+
SOURCE=.\ccstruct\hpdsizes.h
|
1123
|
+
# End Source File
|
1124
|
+
# Begin Source File
|
1125
|
+
|
1126
|
+
SOURCE=.\ccstruct\ipoints.h
|
1127
|
+
# End Source File
|
1128
|
+
# Begin Source File
|
1129
|
+
|
1130
|
+
SOURCE=.\ccstruct\labls.h
|
1131
|
+
# End Source File
|
1132
|
+
# Begin Source File
|
1133
|
+
|
1134
|
+
SOURCE=.\ccstruct\linlsq.h
|
1135
|
+
# End Source File
|
1136
|
+
# Begin Source File
|
1137
|
+
|
1138
|
+
SOURCE=.\ccstruct\lmedsq.h
|
1139
|
+
# End Source File
|
1140
|
+
# Begin Source File
|
1141
|
+
|
1142
|
+
SOURCE=.\ccstruct\mod128.h
|
1143
|
+
# End Source File
|
1144
|
+
# Begin Source File
|
1145
|
+
|
1146
|
+
SOURCE=.\ccstruct\normalis.h
|
1147
|
+
# End Source File
|
1148
|
+
# Begin Source File
|
1149
|
+
|
1150
|
+
SOURCE=.\ccstruct\ocrblock.h
|
1151
|
+
# End Source File
|
1152
|
+
# Begin Source File
|
1153
|
+
|
1154
|
+
SOURCE=.\ccstruct\ocrrow.h
|
1155
|
+
# End Source File
|
1156
|
+
# Begin Source File
|
1157
|
+
|
1158
|
+
SOURCE=.\ccstruct\pageblk.h
|
1159
|
+
# End Source File
|
1160
|
+
# Begin Source File
|
1161
|
+
|
1162
|
+
SOURCE=.\ccstruct\pageres.h
|
1163
|
+
# End Source File
|
1164
|
+
# Begin Source File
|
1165
|
+
|
1166
|
+
SOURCE=.\ccstruct\pdblock.h
|
1167
|
+
# End Source File
|
1168
|
+
# Begin Source File
|
1169
|
+
|
1170
|
+
SOURCE=.\ccstruct\pdclass.h
|
1171
|
+
# End Source File
|
1172
|
+
# Begin Source File
|
1173
|
+
|
1174
|
+
SOURCE=.\ccstruct\points.h
|
1175
|
+
# End Source File
|
1176
|
+
# Begin Source File
|
1177
|
+
|
1178
|
+
SOURCE=.\ccstruct\polyaprx.h
|
1179
|
+
# End Source File
|
1180
|
+
# Begin Source File
|
1181
|
+
|
1182
|
+
SOURCE=.\ccstruct\polyblk.h
|
1183
|
+
# End Source File
|
1184
|
+
# Begin Source File
|
1185
|
+
|
1186
|
+
SOURCE=.\ccstruct\polyblob.h
|
1187
|
+
# End Source File
|
1188
|
+
# Begin Source File
|
1189
|
+
|
1190
|
+
SOURCE=.\ccstruct\polyvert.h
|
1191
|
+
# End Source File
|
1192
|
+
# Begin Source File
|
1193
|
+
|
1194
|
+
SOURCE=.\ccstruct\poutline.h
|
1195
|
+
# End Source File
|
1196
|
+
# Begin Source File
|
1197
|
+
|
1198
|
+
SOURCE=.\ccstruct\quadlsq.h
|
1199
|
+
# End Source File
|
1200
|
+
# Begin Source File
|
1201
|
+
|
1202
|
+
SOURCE=.\ccstruct\quadratc.h
|
1203
|
+
# End Source File
|
1204
|
+
# Begin Source File
|
1205
|
+
|
1206
|
+
SOURCE=.\ccstruct\quspline.h
|
1207
|
+
# End Source File
|
1208
|
+
# Begin Source File
|
1209
|
+
|
1210
|
+
SOURCE=.\ccstruct\ratngs.h
|
1211
|
+
# End Source File
|
1212
|
+
# Begin Source File
|
1213
|
+
|
1214
|
+
SOURCE=.\ccstruct\rect.h
|
1215
|
+
# End Source File
|
1216
|
+
# Begin Source File
|
1217
|
+
|
1218
|
+
SOURCE=.\ccstruct\rejctmap.h
|
1219
|
+
# End Source File
|
1220
|
+
# Begin Source File
|
1221
|
+
|
1222
|
+
SOURCE=.\ccstruct\rwpoly.h
|
1223
|
+
# End Source File
|
1224
|
+
# Begin Source File
|
1225
|
+
|
1226
|
+
SOURCE=.\ccstruct\statistc.h
|
1227
|
+
# End Source File
|
1228
|
+
# Begin Source File
|
1229
|
+
|
1230
|
+
SOURCE=.\ccstruct\stepblob.h
|
1231
|
+
# End Source File
|
1232
|
+
# Begin Source File
|
1233
|
+
|
1234
|
+
SOURCE=.\ccstruct\tessclas.h
|
1235
|
+
# End Source File
|
1236
|
+
# Begin Source File
|
1237
|
+
|
1238
|
+
SOURCE=.\ccstruct\txtregn.h
|
1239
|
+
# End Source File
|
1240
|
+
# Begin Source File
|
1241
|
+
|
1242
|
+
SOURCE=.\ccstruct\vecfuncs.h
|
1243
|
+
# End Source File
|
1244
|
+
# Begin Source File
|
1245
|
+
|
1246
|
+
SOURCE=.\ccstruct\werd.h
|
1247
|
+
# End Source File
|
1248
|
+
# End Group
|
1249
|
+
# Begin Group "ccutil header"
|
1250
|
+
|
1251
|
+
# PROP Default_Filter ""
|
1252
|
+
# Begin Source File
|
1253
|
+
|
1254
|
+
SOURCE=.\cutil\array.h
|
1255
|
+
# End Source File
|
1256
|
+
# Begin Source File
|
1257
|
+
|
1258
|
+
SOURCE=.\ccutil\basedir.h
|
1259
|
+
# End Source File
|
1260
|
+
# Begin Source File
|
1261
|
+
|
1262
|
+
SOURCE=.\ccutil\bits16.h
|
1263
|
+
# End Source File
|
1264
|
+
# Begin Source File
|
1265
|
+
|
1266
|
+
SOURCE=.\ccutil\clst.h
|
1267
|
+
# End Source File
|
1268
|
+
# Begin Source File
|
1269
|
+
|
1270
|
+
SOURCE=.\ccutil\debugwin.h
|
1271
|
+
# End Source File
|
1272
|
+
# Begin Source File
|
1273
|
+
|
1274
|
+
SOURCE=.\ccutil\elst.h
|
1275
|
+
# End Source File
|
1276
|
+
# Begin Source File
|
1277
|
+
|
1278
|
+
SOURCE=.\ccutil\elst2.h
|
1279
|
+
# End Source File
|
1280
|
+
# Begin Source File
|
1281
|
+
|
1282
|
+
SOURCE=.\ccutil\errcode.h
|
1283
|
+
# End Source File
|
1284
|
+
# Begin Source File
|
1285
|
+
|
1286
|
+
SOURCE=.\ccutil\fileerr.h
|
1287
|
+
# End Source File
|
1288
|
+
# Begin Source File
|
1289
|
+
|
1290
|
+
SOURCE=.\ccutil\globaloc.h
|
1291
|
+
# End Source File
|
1292
|
+
# Begin Source File
|
1293
|
+
|
1294
|
+
SOURCE=.\ccutil\hashfn.h
|
1295
|
+
# End Source File
|
1296
|
+
# Begin Source File
|
1297
|
+
|
1298
|
+
SOURCE=.\ccutil\host.h
|
1299
|
+
# End Source File
|
1300
|
+
# Begin Source File
|
1301
|
+
|
1302
|
+
SOURCE=.\ccutil\hosthplb.h
|
1303
|
+
# End Source File
|
1304
|
+
# Begin Source File
|
1305
|
+
|
1306
|
+
SOURCE=.\ccutil\lsterr.h
|
1307
|
+
# End Source File
|
1308
|
+
# Begin Source File
|
1309
|
+
|
1310
|
+
SOURCE=.\ccutil\mainblk.h
|
1311
|
+
# End Source File
|
1312
|
+
# Begin Source File
|
1313
|
+
|
1314
|
+
SOURCE=.\ccutil\memblk.h
|
1315
|
+
# End Source File
|
1316
|
+
# Begin Source File
|
1317
|
+
|
1318
|
+
SOURCE=.\ccutil\memry.h
|
1319
|
+
# End Source File
|
1320
|
+
# Begin Source File
|
1321
|
+
|
1322
|
+
SOURCE=.\ccutil\memryerr.h
|
1323
|
+
# End Source File
|
1324
|
+
# Begin Source File
|
1325
|
+
|
1326
|
+
SOURCE=.\ccutil\mfcpch.h
|
1327
|
+
# End Source File
|
1328
|
+
# Begin Source File
|
1329
|
+
|
1330
|
+
SOURCE=.\ccutil\ndminx.h
|
1331
|
+
# End Source File
|
1332
|
+
# Begin Source File
|
1333
|
+
|
1334
|
+
SOURCE=.\ccutil\notdll.h
|
1335
|
+
# End Source File
|
1336
|
+
# Begin Source File
|
1337
|
+
|
1338
|
+
SOURCE=.\ccutil\nwmain.h
|
1339
|
+
# End Source File
|
1340
|
+
# Begin Source File
|
1341
|
+
|
1342
|
+
SOURCE=.\ccutil\ocrclass.h
|
1343
|
+
# End Source File
|
1344
|
+
# Begin Source File
|
1345
|
+
|
1346
|
+
SOURCE=.\ccutil\ocrshell.h
|
1347
|
+
# End Source File
|
1348
|
+
# Begin Source File
|
1349
|
+
|
1350
|
+
SOURCE=.\ccutil\platform.h
|
1351
|
+
# End Source File
|
1352
|
+
# Begin Source File
|
1353
|
+
|
1354
|
+
SOURCE=.\ccutil\secname.h
|
1355
|
+
# End Source File
|
1356
|
+
# Begin Source File
|
1357
|
+
|
1358
|
+
SOURCE=.\ccutil\serialis.h
|
1359
|
+
# End Source File
|
1360
|
+
# Begin Source File
|
1361
|
+
|
1362
|
+
SOURCE=.\ccutil\stderr.h
|
1363
|
+
# End Source File
|
1364
|
+
# Begin Source File
|
1365
|
+
|
1366
|
+
SOURCE=.\ccutil\strngs.h
|
1367
|
+
# End Source File
|
1368
|
+
# Begin Source File
|
1369
|
+
|
1370
|
+
SOURCE=.\ccutil\tessopt.h
|
1371
|
+
# End Source File
|
1372
|
+
# Begin Source File
|
1373
|
+
|
1374
|
+
SOURCE=.\ccutil\tprintf.h
|
1375
|
+
# End Source File
|
1376
|
+
# Begin Source File
|
1377
|
+
|
1378
|
+
SOURCE=.\ccutil\unicharmap.h
|
1379
|
+
# End Source File
|
1380
|
+
# Begin Source File
|
1381
|
+
|
1382
|
+
SOURCE=.\ccutil\unicharset.h
|
1383
|
+
# End Source File
|
1384
|
+
# Begin Source File
|
1385
|
+
|
1386
|
+
SOURCE=.\ccutil\varable.h
|
1387
|
+
# End Source File
|
1388
|
+
# End Group
|
1389
|
+
# Begin Group "classify header"
|
1390
|
+
|
1391
|
+
# PROP Default_Filter ""
|
1392
|
+
# Begin Source File
|
1393
|
+
|
1394
|
+
SOURCE=.\classify\adaptive.h
|
1395
|
+
# End Source File
|
1396
|
+
# Begin Source File
|
1397
|
+
|
1398
|
+
SOURCE=.\classify\adaptmatch.h
|
1399
|
+
# End Source File
|
1400
|
+
# Begin Source File
|
1401
|
+
|
1402
|
+
SOURCE=.\classify\baseline.h
|
1403
|
+
# End Source File
|
1404
|
+
# Begin Source File
|
1405
|
+
|
1406
|
+
SOURCE=.\classify\blobclass.h
|
1407
|
+
# End Source File
|
1408
|
+
# Begin Source File
|
1409
|
+
|
1410
|
+
SOURCE=.\classify\chartoname.h
|
1411
|
+
# End Source File
|
1412
|
+
# Begin Source File
|
1413
|
+
|
1414
|
+
SOURCE=.\classify\cluster.h
|
1415
|
+
# End Source File
|
1416
|
+
# Begin Source File
|
1417
|
+
|
1418
|
+
SOURCE=.\classify\clusttool.h
|
1419
|
+
# End Source File
|
1420
|
+
# Begin Source File
|
1421
|
+
|
1422
|
+
SOURCE=.\classify\cutoffs.h
|
1423
|
+
# End Source File
|
1424
|
+
# Begin Source File
|
1425
|
+
|
1426
|
+
SOURCE=.\classify\extern.h
|
1427
|
+
# End Source File
|
1428
|
+
# Begin Source File
|
1429
|
+
|
1430
|
+
SOURCE=.\classify\extract.h
|
1431
|
+
# End Source File
|
1432
|
+
# Begin Source File
|
1433
|
+
|
1434
|
+
SOURCE=.\classify\featdefs.h
|
1435
|
+
# End Source File
|
1436
|
+
# Begin Source File
|
1437
|
+
|
1438
|
+
SOURCE=.\classify\flexfx.h
|
1439
|
+
# End Source File
|
1440
|
+
# Begin Source File
|
1441
|
+
|
1442
|
+
SOURCE=.\classify\float2int.h
|
1443
|
+
# End Source File
|
1444
|
+
# Begin Source File
|
1445
|
+
|
1446
|
+
SOURCE=.\classify\fpoint.h
|
1447
|
+
# End Source File
|
1448
|
+
# Begin Source File
|
1449
|
+
|
1450
|
+
SOURCE=.\classify\fxdefs.h
|
1451
|
+
# End Source File
|
1452
|
+
# Begin Source File
|
1453
|
+
|
1454
|
+
SOURCE=.\classify\fxid.h
|
1455
|
+
# End Source File
|
1456
|
+
# Begin Source File
|
1457
|
+
|
1458
|
+
SOURCE=.\classify\hideedge.h
|
1459
|
+
# End Source File
|
1460
|
+
# Begin Source File
|
1461
|
+
|
1462
|
+
SOURCE=.\classify\intfx.h
|
1463
|
+
# End Source File
|
1464
|
+
# Begin Source File
|
1465
|
+
|
1466
|
+
SOURCE=.\classify\intmatcher.h
|
1467
|
+
# End Source File
|
1468
|
+
# Begin Source File
|
1469
|
+
|
1470
|
+
SOURCE=.\classify\intproto.h
|
1471
|
+
# End Source File
|
1472
|
+
# Begin Source File
|
1473
|
+
|
1474
|
+
SOURCE=.\classify\kdtree.h
|
1475
|
+
# End Source File
|
1476
|
+
# Begin Source File
|
1477
|
+
|
1478
|
+
SOURCE=.\classify\matchdefs.h
|
1479
|
+
# End Source File
|
1480
|
+
# Begin Source File
|
1481
|
+
|
1482
|
+
SOURCE=.\classify\mf.h
|
1483
|
+
# End Source File
|
1484
|
+
# Begin Source File
|
1485
|
+
|
1486
|
+
SOURCE=.\classify\mfdefs.h
|
1487
|
+
# End Source File
|
1488
|
+
# Begin Source File
|
1489
|
+
|
1490
|
+
SOURCE=.\classify\mfoutline.h
|
1491
|
+
# End Source File
|
1492
|
+
# Begin Source File
|
1493
|
+
|
1494
|
+
SOURCE=.\classify\mfx.h
|
1495
|
+
# End Source File
|
1496
|
+
# Begin Source File
|
1497
|
+
|
1498
|
+
SOURCE=.\classify\normfeat.h
|
1499
|
+
# End Source File
|
1500
|
+
# Begin Source File
|
1501
|
+
|
1502
|
+
SOURCE=.\classify\normmatch.h
|
1503
|
+
# End Source File
|
1504
|
+
# Begin Source File
|
1505
|
+
|
1506
|
+
SOURCE=.\classify\ocrfeatures.h
|
1507
|
+
# End Source File
|
1508
|
+
# Begin Source File
|
1509
|
+
|
1510
|
+
SOURCE=.\classify\outfeat.h
|
1511
|
+
# End Source File
|
1512
|
+
# Begin Source File
|
1513
|
+
|
1514
|
+
SOURCE=.\classify\picofeat.h
|
1515
|
+
# End Source File
|
1516
|
+
# Begin Source File
|
1517
|
+
|
1518
|
+
SOURCE=.\classify\protos.h
|
1519
|
+
# End Source File
|
1520
|
+
# Begin Source File
|
1521
|
+
|
1522
|
+
SOURCE=.\classify\sigmenu.h
|
1523
|
+
# End Source File
|
1524
|
+
# Begin Source File
|
1525
|
+
|
1526
|
+
SOURCE=.\classify\speckle.h
|
1527
|
+
# End Source File
|
1528
|
+
# Begin Source File
|
1529
|
+
|
1530
|
+
SOURCE=.\classify\xform2d.h
|
1531
|
+
# End Source File
|
1532
|
+
# End Group
|
1533
|
+
# Begin Group "cutil header"
|
1534
|
+
|
1535
|
+
# PROP Default_Filter ""
|
1536
|
+
# Begin Source File
|
1537
|
+
|
1538
|
+
SOURCE=.\cutil\bitvec.h
|
1539
|
+
# End Source File
|
1540
|
+
# Begin Source File
|
1541
|
+
|
1542
|
+
SOURCE=.\cutil\callcpp.h
|
1543
|
+
# End Source File
|
1544
|
+
# Begin Source File
|
1545
|
+
|
1546
|
+
SOURCE=.\cutil\const.h
|
1547
|
+
# End Source File
|
1548
|
+
# Begin Source File
|
1549
|
+
|
1550
|
+
SOURCE=.\cutil\danerror.h
|
1551
|
+
# End Source File
|
1552
|
+
# Begin Source File
|
1553
|
+
|
1554
|
+
SOURCE=.\cutil\debug.h
|
1555
|
+
# End Source File
|
1556
|
+
# Begin Source File
|
1557
|
+
|
1558
|
+
SOURCE=.\cutil\efio.h
|
1559
|
+
# End Source File
|
1560
|
+
# Begin Source File
|
1561
|
+
|
1562
|
+
SOURCE=.\cutil\emalloc.h
|
1563
|
+
# End Source File
|
1564
|
+
# Begin Source File
|
1565
|
+
|
1566
|
+
SOURCE=.\cutil\freelist.h
|
1567
|
+
# End Source File
|
1568
|
+
# Begin Source File
|
1569
|
+
|
1570
|
+
SOURCE=.\cutil\funcdefs.h
|
1571
|
+
# End Source File
|
1572
|
+
# Begin Source File
|
1573
|
+
|
1574
|
+
SOURCE=.\cutil\general.h
|
1575
|
+
# End Source File
|
1576
|
+
# Begin Source File
|
1577
|
+
|
1578
|
+
SOURCE=.\cutil\globals.h
|
1579
|
+
# End Source File
|
1580
|
+
# Begin Source File
|
1581
|
+
|
1582
|
+
SOURCE=.\cutil\listio.h
|
1583
|
+
# End Source File
|
1584
|
+
# Begin Source File
|
1585
|
+
|
1586
|
+
SOURCE=.\cutil\oldheap.h
|
1587
|
+
# End Source File
|
1588
|
+
# Begin Source File
|
1589
|
+
|
1590
|
+
SOURCE=.\cutil\oldlist.h
|
1591
|
+
# End Source File
|
1592
|
+
# Begin Source File
|
1593
|
+
|
1594
|
+
SOURCE=.\cutil\structures.h
|
1595
|
+
# End Source File
|
1596
|
+
# Begin Source File
|
1597
|
+
|
1598
|
+
SOURCE=.\cutil\tessarray.h
|
1599
|
+
# End Source File
|
1600
|
+
# Begin Source File
|
1601
|
+
|
1602
|
+
SOURCE=.\cutil\tordvars.h
|
1603
|
+
# End Source File
|
1604
|
+
# Begin Source File
|
1605
|
+
|
1606
|
+
SOURCE=.\cutil\util.h
|
1607
|
+
# End Source File
|
1608
|
+
# Begin Source File
|
1609
|
+
|
1610
|
+
SOURCE=.\cutil\variables.h
|
1611
|
+
# End Source File
|
1612
|
+
# End Group
|
1613
|
+
# Begin Group "dict header"
|
1614
|
+
|
1615
|
+
# PROP Default_Filter ""
|
1616
|
+
# Begin Source File
|
1617
|
+
|
1618
|
+
SOURCE=.\dict\choicearr.h
|
1619
|
+
# End Source File
|
1620
|
+
# Begin Source File
|
1621
|
+
|
1622
|
+
SOURCE=.\dict\choices.h
|
1623
|
+
# End Source File
|
1624
|
+
# Begin Source File
|
1625
|
+
|
1626
|
+
SOURCE=.\dict\context.h
|
1627
|
+
# End Source File
|
1628
|
+
# Begin Source File
|
1629
|
+
|
1630
|
+
SOURCE=.\dict\dawg.h
|
1631
|
+
# End Source File
|
1632
|
+
# Begin Source File
|
1633
|
+
|
1634
|
+
SOURCE=.\dict\hyphen.h
|
1635
|
+
# End Source File
|
1636
|
+
# Begin Source File
|
1637
|
+
|
1638
|
+
SOURCE=.\dict\permdawg.h
|
1639
|
+
# End Source File
|
1640
|
+
# Begin Source File
|
1641
|
+
|
1642
|
+
SOURCE=.\dict\permnum.h
|
1643
|
+
# End Source File
|
1644
|
+
# Begin Source File
|
1645
|
+
|
1646
|
+
SOURCE=.\dict\permute.h
|
1647
|
+
# End Source File
|
1648
|
+
# Begin Source File
|
1649
|
+
|
1650
|
+
SOURCE=.\dict\states.h
|
1651
|
+
# End Source File
|
1652
|
+
# Begin Source File
|
1653
|
+
|
1654
|
+
SOURCE=.\dict\stopper.h
|
1655
|
+
# End Source File
|
1656
|
+
# Begin Source File
|
1657
|
+
|
1658
|
+
SOURCE=.\dict\trie.h
|
1659
|
+
# End Source File
|
1660
|
+
# End Group
|
1661
|
+
# Begin Group "display header"
|
1662
|
+
|
1663
|
+
# PROP Default_Filter ""
|
1664
|
+
# Begin Source File
|
1665
|
+
|
1666
|
+
SOURCE=.\display\cmndwin.h
|
1667
|
+
# End Source File
|
1668
|
+
# Begin Source File
|
1669
|
+
|
1670
|
+
SOURCE=.\display\pagewalk.h
|
1671
|
+
# End Source File
|
1672
|
+
# Begin Source File
|
1673
|
+
|
1674
|
+
SOURCE=.\display\pgedit.h
|
1675
|
+
# End Source File
|
1676
|
+
# Begin Source File
|
1677
|
+
|
1678
|
+
SOURCE=.\display\pgeditx.h
|
1679
|
+
# End Source File
|
1680
|
+
# Begin Source File
|
1681
|
+
|
1682
|
+
SOURCE=.\display\sbdmenu.h
|
1683
|
+
# End Source File
|
1684
|
+
# Begin Source File
|
1685
|
+
|
1686
|
+
SOURCE=.\display\varabled.h
|
1687
|
+
# End Source File
|
1688
|
+
# Begin Source File
|
1689
|
+
|
1690
|
+
SOURCE=.\display\varblmen.h
|
1691
|
+
# End Source File
|
1692
|
+
# Begin Source File
|
1693
|
+
|
1694
|
+
SOURCE=.\display\varblwin.h
|
1695
|
+
# End Source File
|
1696
|
+
# End Group
|
1697
|
+
# Begin Group "image header"
|
1698
|
+
|
1699
|
+
# PROP Default_Filter ""
|
1700
|
+
# Begin Source File
|
1701
|
+
|
1702
|
+
SOURCE=.\image\bitstrm.h
|
1703
|
+
# End Source File
|
1704
|
+
# Begin Source File
|
1705
|
+
|
1706
|
+
SOURCE=.\image\img.h
|
1707
|
+
# End Source File
|
1708
|
+
# Begin Source File
|
1709
|
+
|
1710
|
+
SOURCE=.\image\imgbmp.h
|
1711
|
+
# End Source File
|
1712
|
+
# Begin Source File
|
1713
|
+
|
1714
|
+
SOURCE=.\image\imgerrs.h
|
1715
|
+
# End Source File
|
1716
|
+
# Begin Source File
|
1717
|
+
|
1718
|
+
SOURCE=.\image\imgio.h
|
1719
|
+
# End Source File
|
1720
|
+
# Begin Source File
|
1721
|
+
|
1722
|
+
SOURCE=.\image\imgs.h
|
1723
|
+
# End Source File
|
1724
|
+
# Begin Source File
|
1725
|
+
|
1726
|
+
SOURCE=.\image\imgtiff.h
|
1727
|
+
# End Source File
|
1728
|
+
# Begin Source File
|
1729
|
+
|
1730
|
+
SOURCE=.\image\imgunpk.h
|
1731
|
+
# End Source File
|
1732
|
+
# End Group
|
1733
|
+
# Begin Group "textord header"
|
1734
|
+
|
1735
|
+
# PROP Default_Filter ""
|
1736
|
+
# Begin Source File
|
1737
|
+
|
1738
|
+
SOURCE=.\textord\blkocc.h
|
1739
|
+
# End Source File
|
1740
|
+
# Begin Source File
|
1741
|
+
|
1742
|
+
SOURCE=.\textord\blobcmpl.h
|
1743
|
+
# End Source File
|
1744
|
+
# Begin Source File
|
1745
|
+
|
1746
|
+
SOURCE=.\textord\drawedg.h
|
1747
|
+
# End Source File
|
1748
|
+
# Begin Source File
|
1749
|
+
|
1750
|
+
SOURCE=.\textord\drawtord.h
|
1751
|
+
# End Source File
|
1752
|
+
# Begin Source File
|
1753
|
+
|
1754
|
+
SOURCE=.\textord\edgblob.h
|
1755
|
+
# End Source File
|
1756
|
+
# Begin Source File
|
1757
|
+
|
1758
|
+
SOURCE=.\textord\edgloop.h
|
1759
|
+
# End Source File
|
1760
|
+
# Begin Source File
|
1761
|
+
|
1762
|
+
SOURCE=.\textord\fpchop.h
|
1763
|
+
# End Source File
|
1764
|
+
# Begin Source File
|
1765
|
+
|
1766
|
+
SOURCE=.\textord\gap_map.h
|
1767
|
+
# End Source File
|
1768
|
+
# Begin Source File
|
1769
|
+
|
1770
|
+
SOURCE=.\textord\makerow.h
|
1771
|
+
# End Source File
|
1772
|
+
# Begin Source File
|
1773
|
+
|
1774
|
+
SOURCE=.\textord\oldbasel.h
|
1775
|
+
# End Source File
|
1776
|
+
# Begin Source File
|
1777
|
+
|
1778
|
+
SOURCE=.\textord\pithsync.h
|
1779
|
+
# End Source File
|
1780
|
+
# Begin Source File
|
1781
|
+
|
1782
|
+
SOURCE=.\textord\pitsync1.h
|
1783
|
+
# End Source File
|
1784
|
+
# Begin Source File
|
1785
|
+
|
1786
|
+
SOURCE=.\textord\scanedg.h
|
1787
|
+
# End Source File
|
1788
|
+
# Begin Source File
|
1789
|
+
|
1790
|
+
SOURCE=.\textord\sortflts.h
|
1791
|
+
# End Source File
|
1792
|
+
# Begin Source File
|
1793
|
+
|
1794
|
+
SOURCE=.\textord\tessout.h
|
1795
|
+
# End Source File
|
1796
|
+
# Begin Source File
|
1797
|
+
|
1798
|
+
SOURCE=.\textord\topitch.h
|
1799
|
+
# End Source File
|
1800
|
+
# Begin Source File
|
1801
|
+
|
1802
|
+
SOURCE=.\textord\tordmain.h
|
1803
|
+
# End Source File
|
1804
|
+
# Begin Source File
|
1805
|
+
|
1806
|
+
SOURCE=.\textord\tospace.h
|
1807
|
+
# End Source File
|
1808
|
+
# Begin Source File
|
1809
|
+
|
1810
|
+
SOURCE=.\textord\tovars.h
|
1811
|
+
# End Source File
|
1812
|
+
# Begin Source File
|
1813
|
+
|
1814
|
+
SOURCE=.\textord\underlin.h
|
1815
|
+
# End Source File
|
1816
|
+
# Begin Source File
|
1817
|
+
|
1818
|
+
SOURCE=.\textord\wordseg.h
|
1819
|
+
# End Source File
|
1820
|
+
# End Group
|
1821
|
+
# Begin Group "viewer header"
|
1822
|
+
|
1823
|
+
# PROP Default_Filter ""
|
1824
|
+
# Begin Source File
|
1825
|
+
|
1826
|
+
SOURCE=.\viewer\evntlst.h
|
1827
|
+
# End Source File
|
1828
|
+
# Begin Source File
|
1829
|
+
|
1830
|
+
SOURCE=.\viewer\evnts.h
|
1831
|
+
# End Source File
|
1832
|
+
# Begin Source File
|
1833
|
+
|
1834
|
+
SOURCE=.\viewer\grphics.h
|
1835
|
+
# End Source File
|
1836
|
+
# Begin Source File
|
1837
|
+
|
1838
|
+
SOURCE=.\viewer\grphshm.h
|
1839
|
+
# End Source File
|
1840
|
+
# Begin Source File
|
1841
|
+
|
1842
|
+
SOURCE=.\viewer\sbgconst.h
|
1843
|
+
# End Source File
|
1844
|
+
# Begin Source File
|
1845
|
+
|
1846
|
+
SOURCE=.\viewer\sbgdefs.h
|
1847
|
+
# End Source File
|
1848
|
+
# Begin Source File
|
1849
|
+
|
1850
|
+
SOURCE=.\viewer\sbgtypes.h
|
1851
|
+
# End Source File
|
1852
|
+
# Begin Source File
|
1853
|
+
|
1854
|
+
SOURCE=.\viewer\showim.h
|
1855
|
+
# End Source File
|
1856
|
+
# End Group
|
1857
|
+
# Begin Group "wordrec header"
|
1858
|
+
|
1859
|
+
# PROP Default_Filter ""
|
1860
|
+
# Begin Source File
|
1861
|
+
|
1862
|
+
SOURCE=.\wordrec\associate.h
|
1863
|
+
# End Source File
|
1864
|
+
# Begin Source File
|
1865
|
+
|
1866
|
+
SOURCE=.\wordrec\badwords.h
|
1867
|
+
# End Source File
|
1868
|
+
# Begin Source File
|
1869
|
+
|
1870
|
+
SOURCE=.\wordrec\bestfirst.h
|
1871
|
+
# End Source File
|
1872
|
+
# Begin Source File
|
1873
|
+
|
1874
|
+
SOURCE=.\wordrec\bitvec.h
|
1875
|
+
# End Source File
|
1876
|
+
# Begin Source File
|
1877
|
+
|
1878
|
+
SOURCE=.\wordrec\charsample.h
|
1879
|
+
# End Source File
|
1880
|
+
# Begin Source File
|
1881
|
+
|
1882
|
+
SOURCE=.\wordrec\chop.h
|
1883
|
+
# End Source File
|
1884
|
+
# Begin Source File
|
1885
|
+
|
1886
|
+
SOURCE=.\wordrec\chopper.h
|
1887
|
+
# End Source File
|
1888
|
+
# Begin Source File
|
1889
|
+
|
1890
|
+
SOURCE=.\wordrec\closed.h
|
1891
|
+
# End Source File
|
1892
|
+
# Begin Source File
|
1893
|
+
|
1894
|
+
SOURCE=.\wordrec\control.h
|
1895
|
+
# End Source File
|
1896
|
+
# Begin Source File
|
1897
|
+
|
1898
|
+
SOURCE=.\wordrec\djmenus.h
|
1899
|
+
# End Source File
|
1900
|
+
# Begin Source File
|
1901
|
+
|
1902
|
+
SOURCE=.\wordrec\drawfx.h
|
1903
|
+
# End Source File
|
1904
|
+
# Begin Source File
|
1905
|
+
|
1906
|
+
SOURCE=.\wordrec\findseam.h
|
1907
|
+
# End Source File
|
1908
|
+
# Begin Source File
|
1909
|
+
|
1910
|
+
SOURCE=.\wordrec\gradechop.h
|
1911
|
+
# End Source File
|
1912
|
+
# Begin Source File
|
1913
|
+
|
1914
|
+
SOURCE=.\wordrec\heuristic.h
|
1915
|
+
# End Source File
|
1916
|
+
# Begin Source File
|
1917
|
+
|
1918
|
+
SOURCE=.\wordrec\makechop.h
|
1919
|
+
# End Source File
|
1920
|
+
# Begin Source File
|
1921
|
+
|
1922
|
+
SOURCE=.\wordrec\matchtab.h
|
1923
|
+
# End Source File
|
1924
|
+
# Begin Source File
|
1925
|
+
|
1926
|
+
SOURCE=.\wordrec\matrix.h
|
1927
|
+
# End Source File
|
1928
|
+
# Begin Source File
|
1929
|
+
|
1930
|
+
SOURCE=.\wordrec\measure.h
|
1931
|
+
# End Source File
|
1932
|
+
# Begin Source File
|
1933
|
+
|
1934
|
+
SOURCE=.\wordrec\metrics.h
|
1935
|
+
# End Source File
|
1936
|
+
# Begin Source File
|
1937
|
+
|
1938
|
+
SOURCE=.\wordrec\mfvars.h
|
1939
|
+
# End Source File
|
1940
|
+
# Begin Source File
|
1941
|
+
|
1942
|
+
SOURCE=.\wordrec\olutil.h
|
1943
|
+
# End Source File
|
1944
|
+
# Begin Source File
|
1945
|
+
|
1946
|
+
SOURCE=.\wordrec\outlines.h
|
1947
|
+
# End Source File
|
1948
|
+
# Begin Source File
|
1949
|
+
|
1950
|
+
SOURCE=.\wordrec\pieces.h
|
1951
|
+
# End Source File
|
1952
|
+
# Begin Source File
|
1953
|
+
|
1954
|
+
SOURCE=.\wordrec\plotedges.h
|
1955
|
+
# End Source File
|
1956
|
+
# Begin Source File
|
1957
|
+
|
1958
|
+
SOURCE=.\wordrec\plotseg.h
|
1959
|
+
# End Source File
|
1960
|
+
# Begin Source File
|
1961
|
+
|
1962
|
+
SOURCE=.\wordrec\render.h
|
1963
|
+
# End Source File
|
1964
|
+
# Begin Source File
|
1965
|
+
|
1966
|
+
SOURCE=.\wordrec\seam.h
|
1967
|
+
# End Source File
|
1968
|
+
# Begin Source File
|
1969
|
+
|
1970
|
+
SOURCE=.\wordrec\split.h
|
1971
|
+
# End Source File
|
1972
|
+
# Begin Source File
|
1973
|
+
|
1974
|
+
SOURCE=.\wordrec\tally.h
|
1975
|
+
# End Source File
|
1976
|
+
# Begin Source File
|
1977
|
+
|
1978
|
+
SOURCE=.\wordrec\tessinit.h
|
1979
|
+
# End Source File
|
1980
|
+
# Begin Source File
|
1981
|
+
|
1982
|
+
SOURCE=.\wordrec\tface.h
|
1983
|
+
# End Source File
|
1984
|
+
# Begin Source File
|
1985
|
+
|
1986
|
+
SOURCE=.\wordrec\wordclass.h
|
1987
|
+
# End Source File
|
1988
|
+
# End Group
|
1989
|
+
# Begin Group "pageseg"
|
1990
|
+
|
1991
|
+
# PROP Default_Filter ""
|
1992
|
+
# Begin Source File
|
1993
|
+
|
1994
|
+
SOURCE=.\pageseg\leptonica_pageseg.cpp
|
1995
|
+
# End Source File
|
1996
|
+
# Begin Source File
|
1997
|
+
|
1998
|
+
SOURCE=.\pageseg\leptonica_pageseg_interface.cpp
|
1999
|
+
# End Source File
|
2000
|
+
# Begin Source File
|
2001
|
+
|
2002
|
+
SOURCE=.\pageseg\pageseg.cpp
|
2003
|
+
# End Source File
|
2004
|
+
# End Group
|
2005
|
+
# Begin Source File
|
2006
|
+
|
2007
|
+
SOURCE=.\StdAfx.cpp
|
2008
|
+
# ADD CPP /Yc"stdafx.h"
|
2009
|
+
# End Source File
|
2010
|
+
# Begin Source File
|
2011
|
+
|
2012
|
+
SOURCE=.\tessdll.cpp
|
2013
|
+
|
2014
|
+
!IF "$(CFG)" == "tessdll - Win32 Release"
|
2015
|
+
|
2016
|
+
!ELSEIF "$(CFG)" == "tessdll - Win32 Debug"
|
2017
|
+
|
2018
|
+
# ADD CPP /I "ccmain"
|
2019
|
+
|
2020
|
+
!ELSEIF "$(CFG)" == "tessdll - Win32 load"
|
2021
|
+
|
2022
|
+
# ADD BASE CPP /I "ccmain"
|
2023
|
+
# ADD CPP /I "ccmain"
|
2024
|
+
|
2025
|
+
!ENDIF
|
2026
|
+
|
2027
|
+
# End Source File
|
2028
|
+
# End Group
|
2029
|
+
# Begin Group "Header Files"
|
2030
|
+
|
2031
|
+
# PROP Default_Filter ""
|
2032
|
+
# Begin Source File
|
2033
|
+
|
2034
|
+
SOURCE=.\StdAfx.h
|
2035
|
+
# End Source File
|
2036
|
+
# Begin Source File
|
2037
|
+
|
2038
|
+
SOURCE=.\tessdll.h
|
2039
|
+
# End Source File
|
2040
|
+
# Begin Source File
|
2041
|
+
|
2042
|
+
SOURCE=.\ccmain\tesseractmain.h
|
2043
|
+
# End Source File
|
2044
|
+
# End Group
|
2045
|
+
# Begin Source File
|
2046
|
+
|
2047
|
+
SOURCE=.\ReadMe.txt
|
2048
|
+
# End Source File
|
2049
|
+
# End Target
|
2050
|
+
# End Project
|