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