实例介绍
Tesseract-OCR字符识别,包括中文英文的文字识别,里面可以训练自己的模型
【实例截图】
【核心代码】
74ea664b-f0be-4357-b044-942c4e500f34
└── tesseract-4.1.0最新版
├── appveyor.yml
├── AUTHORS
├── autogen.sh
├── ChangeLog
├── cmake
│ ├── AddCompilerFlag.cmake
│ ├── BuildFunctions.cmake
│ ├── CheckCCompilerFlag.cmake
│ ├── CheckCXXCompilerFlag.cmake
│ ├── Configure.cmake
│ ├── OptimizeForArchitecture.cmake
│ ├── SourceGroups.cmake
│ └── templates
│ ├── cmake_uninstall.cmake.in
│ ├── TesseractConfig.cmake.in
│ └── TesseractConfig-version.cmake.in
├── CMakeLists.txt
├── configure.ac
├── CONTRIBUTING.md
├── cppan.yml
├── doc
│ ├── ambiguous_words.1.asc
│ ├── classifier_tester.1.asc
│ ├── cntraining.1.asc
│ ├── combine_lang_model.1.asc
│ ├── combine_tessdata.1.asc
│ ├── dawg2wordlist.1.asc
│ ├── Doxyfile
│ ├── generate_manpages.sh
│ ├── lstmeval.1.asc
│ ├── lstmtraining.1.asc
│ ├── Makefile.am
│ ├── merge_unicharsets.1.asc
│ ├── mftraining.1.asc
│ ├── set_unicharset_properties.1.asc
│ ├── shapeclustering.1.asc
│ ├── tesseract.1.asc
│ ├── tesseract.bib
│ ├── text2image.1.asc
│ ├── unicharambigs.5.asc
│ ├── unicharset.5.asc
│ ├── unicharset_extractor.1.asc
│ └── wordlist2dawg.1.asc
├── docker-compose.yml
├── Dockerfile
├── INSTALL
├── INSTALL.GIT.md
├── java
│ ├── com
│ │ │ ├── Makefile.am
│ │ │ └── scrollview
│ │ │ ├── events
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── SVEventHandler.java
│ │ │ │ ├── SVEvent.java
│ │ │ │ └── SVEventType.java
│ │ │ ├── Makefile.am
│ │ │ ├── ScrollView.java
│ │ │ └── ui
│ │ │ ├── Makefile.am
│ │ │ ├── SVAbstractMenuItem.java
│ │ │ ├── SVCheckboxMenuItem.java
│ │ │ ├── SVEmptyMenuItem.java
│ │ │ ├── SVImageHandler.java
│ │ │ ├── SVMenuBar.java
│ │ │ ├── SVMenuItem.java
│ │ │ ├── SVPopupMenu.java
│ │ │ ├── SVSubMenuItem.java
│ │ │ └── SVWindow.java
│ │ └── Makefile.am
│ ├── Makefile.am
│ └── Manifest.txt
├── LICENSE
├── m4
│ ├── ax_check_compile_flag.m4
│ └── ax_split_version.m4
├── Makefile.am
├── README.md
├── snap
│ └── snapcraft.yaml
├── src
│ ├── api
│ │ ├── altorenderer.cpp
│ │ ├── apitypes.h
│ │ ├── baseapi.cpp
│ │ ├── baseapi.h
│ │ ├── capi.cpp
│ │ ├── capi.h
│ │ ├── hocrrenderer.cpp
│ │ ├── lstmboxrenderer.cpp
│ │ ├── Makefile.am
│ │ ├── pdfrenderer.cpp
│ │ ├── renderer.cpp
│ │ ├── renderer.h
│ │ ├── tesseractmain.cpp
│ │ ├── tess_version.h.in
│ │ └── wordstrboxrenderer.cpp
│ ├── arch
│ │ ├── dotproductavx.cpp
│ │ ├── dotproductavx.h
│ │ ├── dotproduct.cpp
│ │ ├── dotproduct.h
│ │ ├── dotproductsse.cpp
│ │ ├── dotproductsse.h
│ │ ├── intsimdmatrixavx2.cpp
│ │ ├── intsimdmatrix.cpp
│ │ ├── intsimdmatrix.h
│ │ ├── intsimdmatrixsse.cpp
│ │ ├── Makefile.am
│ │ ├── simddetect.cpp
│ │ └── simddetect.h
│ ├── ccmain
│ │ ├── adaptions.cpp
│ │ ├── applybox.cpp
│ │ ├── control.cpp
│ │ ├── control.h
│ │ ├── docqual.cpp
│ │ ├── docqual.h
│ │ ├── equationdetect.cpp
│ │ ├── equationdetect.h
│ │ ├── fixspace.cpp
│ │ ├── fixspace.h
│ │ ├── fixxht.cpp
│ │ ├── linerec.cpp
│ │ ├── ltrresultiterator.cpp
│ │ ├── ltrresultiterator.h
│ │ ├── Makefile.am
│ │ ├── mutableiterator.cpp
│ │ ├── mutableiterator.h
│ │ ├── osdetect.cpp
│ │ ├── osdetect.h
│ │ ├── output.cpp
│ │ ├── output.h
│ │ ├── pageiterator.cpp
│ │ ├── pageiterator.h
│ │ ├── pagesegmain.cpp
│ │ ├── pagewalk.cpp
│ │ ├── paragraphs.cpp
│ │ ├── paragraphs.h
│ │ ├── paragraphs_internal.h
│ │ ├── paramsd.cpp
│ │ ├── paramsd.h
│ │ ├── par_control.cpp
│ │ ├── pgedit.cpp
│ │ ├── pgedit.h
│ │ ├── recogtraining.cpp
│ │ ├── reject.cpp
│ │ ├── reject.h
│ │ ├── resultiterator.cpp
│ │ ├── resultiterator.h
│ │ ├── superscript.cpp
│ │ ├── tessbox.cpp
│ │ ├── tessedit.cpp
│ │ ├── tesseractclass.cpp
│ │ ├── tesseractclass.h
│ │ ├── tessvars.cpp
│ │ ├── tessvars.h
│ │ ├── tfacepp.cpp
│ │ ├── thresholder.cpp
│ │ ├── thresholder.h
│ │ ├── werdit.cpp
│ │ └── werdit.h
│ ├── ccstruct
│ │ ├── blamer.cpp
│ │ ├── blamer.h
│ │ ├── blobbox.cpp
│ │ ├── blobbox.h
│ │ ├── blobs.cpp
│ │ ├── blobs.h
│ │ ├── blread.cpp
│ │ ├── blread.h
│ │ ├── boxread.cpp
│ │ ├── boxread.h
│ │ ├── boxword.cpp
│ │ ├── boxword.h
│ │ ├── ccstruct.cpp
│ │ ├── ccstruct.h
│ │ ├── coutln.cpp
│ │ ├── coutln.h
│ │ ├── crakedge.h
│ │ ├── debugpixa.h
│ │ ├── detlinefit.cpp
│ │ ├── detlinefit.h
│ │ ├── dppoint.cpp
│ │ ├── dppoint.h
│ │ ├── fontinfo.cpp
│ │ ├── fontinfo.h
│ │ ├── imagedata.cpp
│ │ ├── imagedata.h
│ │ ├── linlsq.cpp
│ │ ├── linlsq.h
│ │ ├── Makefile.am
│ │ ├── matrix.cpp
│ │ ├── matrix.h
│ │ ├── mod128.cpp
│ │ ├── mod128.h
│ │ ├── normalis.cpp
│ │ ├── normalis.h
│ │ ├── ocrblock.cpp
│ │ ├── ocrblock.h
│ │ ├── ocrpara.cpp
│ │ ├── ocrpara.h
│ │ ├── ocrrow.cpp
│ │ ├── ocrrow.h
│ │ ├── otsuthr.cpp
│ │ ├── otsuthr.h
│ │ ├── pageres.cpp
│ │ ├── pageres.h
│ │ ├── params_training_featdef.cpp
│ │ ├── params_training_featdef.h
│ │ ├── pdblock.cpp
│ │ ├── pdblock.h
│ │ ├── points.cpp
│ │ ├── points.h
│ │ ├── polyaprx.cpp
│ │ ├── polyaprx.h
│ │ ├── polyblk.cpp
│ │ ├── polyblk.h
│ │ ├── publictypes.cpp
│ │ ├── publictypes.h
│ │ ├── quadlsq.cpp
│ │ ├── quadlsq.h
│ │ ├── quadratc.h
│ │ ├── quspline.cpp
│ │ ├── quspline.h
│ │ ├── ratngs.cpp
│ │ ├── ratngs.h
│ │ ├── rect.cpp
│ │ ├── rect.h
│ │ ├── rejctmap.cpp
│ │ ├── rejctmap.h
│ │ ├── seam.cpp
│ │ ├── seam.h
│ │ ├── split.cpp
│ │ ├── split.h
│ │ ├── statistc.cpp
│ │ ├── statistc.h
│ │ ├── stepblob.cpp
│ │ ├── stepblob.h
│ │ ├── vecfuncs.cpp
│ │ ├── vecfuncs.h
│ │ ├── werd.cpp
│ │ └── werd.h
│ ├── ccutil
│ │ ├── ambigs.cpp
│ │ ├── ambigs.h
│ │ ├── basedir.cpp
│ │ ├── basedir.h
│ │ ├── bits16.h
│ │ ├── bitvector.cpp
│ │ ├── bitvector.h
│ │ ├── ccutil.cpp
│ │ ├── ccutil.h
│ │ ├── clst.cpp
│ │ ├── clst.h
│ │ ├── doubleptr.h
│ │ ├── elst2.cpp
│ │ ├── elst2.h
│ │ ├── elst.cpp
│ │ ├── elst.h
│ │ ├── errcode.cpp
│ │ ├── errcode.h
│ │ ├── fileerr.h
│ │ ├── fileio.cpp
│ │ ├── fileio.h
│ │ ├── genericheap.h
│ │ ├── genericvector.h
│ │ ├── globaloc.cpp
│ │ ├── globaloc.h
│ │ ├── helpers.h
│ │ ├── host.h
│ │ ├── indexmapbidi.cpp
│ │ ├── indexmapbidi.h
│ │ ├── kdpair.h
│ │ ├── lsterr.h
│ │ ├── mainblk.cpp
│ │ ├── Makefile.am
│ │ ├── object_cache.h
│ │ ├── ocrclass.h
│ │ ├── params.cpp
│ │ ├── params.h
│ │ ├── platform.h
│ │ ├── qrsequence.h
│ │ ├── scanutils.cpp
│ │ ├── scanutils.h
│ │ ├── serialis.cpp
│ │ ├── serialis.h
│ │ ├── sorthelper.h
│ │ ├── strngs.cpp
│ │ ├── strngs.h
│ │ ├── tesscallback.h
│ │ ├── tessdatamanager.cpp
│ │ ├── tessdatamanager.h
│ │ ├── tprintf.cpp
│ │ ├── tprintf.h
│ │ ├── unicharcompress.cpp
│ │ ├── unicharcompress.h
│ │ ├── unichar.cpp
│ │ ├── unichar.h
│ │ ├── unicharmap.cpp
│ │ ├── unicharmap.h
│ │ ├── unicharset.cpp
│ │ ├── unicharset.h
│ │ ├── unicity_table.h
│ │ ├── unicodes.cpp
│ │ ├── unicodes.h
│ │ ├── universalambigs.cpp
│ │ └── universalambigs.h
│ ├── classify
│ │ ├── adaptive.cpp
│ │ ├── adaptive.h
│ │ ├── adaptmatch.cpp
│ │ ├── blobclass.cpp
│ │ ├── blobclass.h
│ │ ├── classify.cpp
│ │ ├── classify.h
│ │ ├── cluster.cpp
│ │ ├── cluster.h
│ │ ├── clusttool.cpp
│ │ ├── clusttool.h
│ │ ├── cutoffs.cpp
│ │ ├── errorcounter.cpp
│ │ ├── errorcounter.h
│ │ ├── featdefs.cpp
│ │ ├── featdefs.h
│ │ ├── float2int.cpp
│ │ ├── float2int.h
│ │ ├── fpoint.cpp
│ │ ├── fpoint.h
│ │ ├── intfeaturedist.cpp
│ │ ├── intfeaturedist.h
│ │ ├── intfeaturemap.cpp
│ │ ├── intfeaturemap.h
│ │ ├── intfeaturespace.cpp
│ │ ├── intfeaturespace.h
│ │ ├── intfx.cpp
│ │ ├── intfx.h
│ │ ├── intmatcher.cpp
│ │ ├── intmatcher.h
│ │ ├── intproto.cpp
│ │ ├── intproto.h
│ │ ├── kdtree.cpp
│ │ ├── kdtree.h
│ │ ├── Makefile.am
│ │ ├── mastertrainer.cpp
│ │ ├── mastertrainer.h
│ │ ├── mf.cpp
│ │ ├── mfdefs.cpp
│ │ ├── mfdefs.h
│ │ ├── mf.h
│ │ ├── mfoutline.cpp
│ │ ├── mfoutline.h
│ │ ├── mfx.cpp
│ │ ├── mfx.h
│ │ ├── normfeat.cpp
│ │ ├── normfeat.h
│ │ ├── normmatch.cpp
│ │ ├── normmatch.h
│ │ ├── ocrfeatures.cpp
│ │ ├── ocrfeatures.h
│ │ ├── outfeat.cpp
│ │ ├── outfeat.h
│ │ ├── picofeat.cpp
│ │ ├── picofeat.h
│ │ ├── protos.cpp
│ │ ├── protos.h
│ │ ├── sampleiterator.cpp
│ │ ├── sampleiterator.h
│ │ ├── shapeclassifier.cpp
│ │ ├── shapeclassifier.h
│ │ ├── shapetable.cpp
│ │ ├── shapetable.h
│ │ ├── tessclassifier.cpp
│ │ ├── tessclassifier.h
│ │ ├── trainingsample.cpp
│ │ ├── trainingsample.h
│ │ ├── trainingsampleset.cpp
│ │ └── trainingsampleset.h
│ ├── cutil
│ │ ├── bitvec.cpp
│ │ ├── bitvec.h
│ │ ├── callcpp.cpp
│ │ ├── callcpp.h
│ │ ├── cutil_class.cpp
│ │ ├── cutil_class.h
│ │ ├── emalloc.cpp
│ │ ├── emalloc.h
│ │ ├── Makefile.am
│ │ ├── oldlist.cpp
│ │ ├── oldlist.h
│ │ ├── structures.cpp
│ │ └── structures.h
│ ├── dict
│ │ ├── context.cpp
│ │ ├── dawg_cache.cpp
│ │ ├── dawg_cache.h
│ │ ├── dawg.cpp
│ │ ├── dawg.h
│ │ ├── dict.cpp
│ │ ├── dict.h
│ │ ├── hyphen.cpp
│ │ ├── Makefile.am
│ │ ├── matchdefs.h
│ │ ├── permdawg.cpp
│ │ ├── stopper.cpp
│ │ ├── stopper.h
│ │ ├── trie.cpp
│ │ └── trie.h
│ ├── lstm
│ │ ├── convolve.cpp
│ │ ├── convolve.h
│ │ ├── ctc.cpp
│ │ ├── ctc.h
│ │ ├── fullyconnected.cpp
│ │ ├── fullyconnected.h
│ │ ├── functions.cpp
│ │ ├── functions.h
│ │ ├── input.cpp
│ │ ├── input.h
│ │ ├── lstm.cpp
│ │ ├── lstm.h
│ │ ├── lstmrecognizer.cpp
│ │ ├── lstmrecognizer.h
│ │ ├── lstmtrainer.cpp
│ │ ├── lstmtrainer.h
│ │ ├── Makefile.am
│ │ ├── maxpool.cpp
│ │ ├── maxpool.h
│ │ ├── networkbuilder.cpp
│ │ ├── networkbuilder.h
│ │ ├── network.cpp
│ │ ├── network.h
│ │ ├── networkio.cpp
│ │ ├── networkio.h
│ │ ├── networkscratch.h
│ │ ├── parallel.cpp
│ │ ├── parallel.h
│ │ ├── plumbing.cpp
│ │ ├── plumbing.h
│ │ ├── recodebeam.cpp
│ │ ├── recodebeam.h
│ │ ├── reconfig.cpp
│ │ ├── reconfig.h
│ │ ├── reversed.cpp
│ │ ├── reversed.h
│ │ ├── series.cpp
│ │ ├── series.h
│ │ ├── static_shape.h
│ │ ├── stridemap.cpp
│ │ ├── stridemap.h
│ │ ├── tfnetwork.cpp
│ │ ├── tfnetwork.h
│ │ ├── tfnetwork.pb.cc
│ │ ├── tfnetwork.pb.h
│ │ ├── tfnetwork.proto
│ │ ├── weightmatrix.cpp
│ │ └── weightmatrix.h
│ ├── opencl
│ │ ├── Makefile.am
│ │ ├── oclkernels.h
│ │ ├── openclwrapper.cpp
│ │ └── openclwrapper.h
│ ├── textord
│ │ ├── alignedblob.cpp
│ │ ├── alignedblob.h
│ │ ├── baselinedetect.cpp
│ │ ├── baselinedetect.h
│ │ ├── bbgrid.cpp
│ │ ├── bbgrid.h
│ │ ├── blkocc.cpp
│ │ ├── blkocc.h
│ │ ├── blobgrid.cpp
│ │ ├── blobgrid.h
│ │ ├── ccnontextdetect.cpp
│ │ ├── ccnontextdetect.h
│ │ ├── cjkpitch.cpp
│ │ ├── cjkpitch.h
│ │ ├── colfind.cpp
│ │ ├── colfind.h
│ │ ├── colpartition.cpp
│ │ ├── colpartitiongrid.cpp
│ │ ├── colpartitiongrid.h
│ │ ├── colpartition.h
│ │ ├── colpartitionset.cpp
│ │ ├── colpartitionset.h
│ │ ├── devanagari_processing.cpp
│ │ ├── devanagari_processing.h
│ │ ├── drawedg.cpp
│ │ ├── drawedg.h
│ │ ├── drawtord.cpp
│ │ ├── drawtord.h
│ │ ├── edgblob.cpp
│ │ ├── edgblob.h
│ │ ├── edgloop.cpp
│ │ ├── edgloop.h
│ │ ├── equationdetectbase.cpp
│ │ ├── equationdetectbase.h
│ │ ├── fpchop.cpp
│ │ ├── fpchop.h
│ │ ├── gap_map.cpp
│ │ ├── gap_map.h
│ │ ├── imagefind.cpp
│ │ ├── imagefind.h
│ │ ├── linefind.cpp
│ │ ├── linefind.h
│ │ ├── Makefile.am
│ │ ├── makerow.cpp
│ │ ├── makerow.h
│ │ ├── oldbasel.cpp
│ │ ├── oldbasel.h
│ │ ├── pithsync.cpp
│ │ ├── pithsync.h
│ │ ├── pitsync1.cpp
│ │ ├── pitsync1.h
│ │ ├── scanedg.cpp
│ │ ├── scanedg.h
│ │ ├── sortflts.cpp
│ │ ├── sortflts.h
│ │ ├── strokewidth.cpp
│ │ ├── strokewidth.h
│ │ ├── tabfind.cpp
│ │ ├── tabfind.h
│ │ ├── tablefind.cpp
│ │ ├── tablefind.h
│ │ ├── tablerecog.cpp
│ │ ├── tablerecog.h
│ │ ├── tabvector.cpp
│ │ ├── tabvector.h
│ │ ├── textlineprojection.cpp
│ │ ├── textlineprojection.h
│ │ ├── textord.cpp
│ │ ├── textord.h
│ │ ├── topitch.cpp
│ │ ├── topitch.h
│ │ ├── tordmain.cpp
│ │ ├── tordmain.h
│ │ ├── tospace.cpp
│ │ ├── tovars.cpp
│ │ ├── tovars.h
│ │ ├── underlin.cpp
│ │ ├── underlin.h
│ │ ├── wordseg.cpp
│ │ ├── wordseg.h
│ │ ├── workingpartset.cpp
│ │ └── workingpartset.h
│ ├── training
│ │ ├── ambiguous_words.cpp
│ │ ├── boxchar.cpp
│ │ ├── boxchar.h
│ │ ├── classifier_tester.cpp
│ │ ├── CMakeLists.txt
│ │ ├── cntraining.cpp
│ │ ├── combine_lang_model.cpp
│ │ ├── combine_tessdata.cpp
│ │ ├── commandlineflags.cpp
│ │ ├── commandlineflags.h
│ │ ├── commontraining.cpp
│ │ ├── commontraining.h
│ │ ├── dawg2wordlist.cpp
│ │ ├── degradeimage.cpp
│ │ ├── degradeimage.h
│ │ ├── icuerrorcode.cpp
│ │ ├── icuerrorcode.h
│ │ ├── lang_model_helpers.cpp
│ │ ├── lang_model_helpers.h
│ │ ├── language_specific.py
│ │ ├── language-specific.sh
│ │ ├── ligature_table.cpp
│ │ ├── ligature_table.h
│ │ ├── lstmeval.cpp
│ │ ├── lstmtester.cpp
│ │ ├── lstmtester.h
│ │ ├── lstmtraining.cpp
│ │ ├── Makefile.am
│ │ ├── mergenf.cpp
│ │ ├── mergenf.h
│ │ ├── merge_unicharsets.cpp
│ │ ├── mftraining.cpp
│ │ ├── normstrngs.cpp
│ │ ├── normstrngs.h
│ │ ├── pango_font_info.cpp
│ │ ├── pango_font_info.h
│ │ ├── set_unicharset_properties.cpp
│ │ ├── shapeclustering.cpp
│ │ ├── stringrenderer.cpp
│ │ ├── stringrenderer.h
│ │ ├── tessopt.cpp
│ │ ├── tessopt.h
│ │ ├── tesstrain.py
│ │ ├── tesstrain.sh
│ │ ├── tesstrain_utils.py
│ │ ├── tesstrain_utils.sh
│ │ ├── text2image.cpp
│ │ ├── tlog.cpp
│ │ ├── tlog.h
│ │ ├── unicharset_extractor.cpp
│ │ ├── unicharset_training_utils.cpp
│ │ ├── unicharset_training_utils.h
│ │ ├── util.h
│ │ ├── validate_grapheme.cpp
│ │ ├── validate_grapheme.h
│ │ ├── validate_indic.cpp
│ │ ├── validate_indic.h
│ │ ├── validate_javanese.cpp
│ │ ├── validate_javanese.h
│ │ ├── validate_khmer.cpp
│ │ ├── validate_khmer.h
│ │ ├── validate_myanmar.cpp
│ │ ├── validate_myanmar.h
│ │ ├── validator.cpp
│ │ ├── validator.h
│ │ └── wordlist2dawg.cpp
│ ├── viewer
│ │ ├── Makefile.am
│ │ ├── scrollview.cpp
│ │ ├── scrollview.h
│ │ ├── svmnode.cpp
│ │ ├── svmnode.h
│ │ ├── svpaint.cpp
│ │ ├── svutil.cpp
│ │ └── svutil.h
│ ├── vs2010
│ │ └── tesseract
│ │ ├── libtesseract.rc.in
│ │ ├── resource.h
│ │ └── tesseract.rc.in
│ └── wordrec
│ ├── associate.cpp
│ ├── associate.h
│ ├── chop.cpp
│ ├── chop.h
│ ├── chopper.cpp
│ ├── drawfx.cpp
│ ├── drawfx.h
│ ├── findseam.cpp
│ ├── findseam.h
│ ├── gradechop.cpp
│ ├── language_model.cpp
│ ├── language_model.h
│ ├── lm_consistency.cpp
│ ├── lm_consistency.h
│ ├── lm_pain_points.cpp
│ ├── lm_pain_points.h
│ ├── lm_state.cpp
│ ├── lm_state.h
│ ├── Makefile.am
│ ├── measure.h
│ ├── outlines.cpp
│ ├── outlines.h
│ ├── params_model.cpp
│ ├── params_model.h
│ ├── pieces.cpp
│ ├── plotedges.cpp
│ ├── plotedges.h
│ ├── render.cpp
│ ├── render.h
│ ├── segsearch.cpp
│ ├── tface.cpp
│ ├── wordclass.cpp
│ ├── wordrec.cpp
│ └── wordrec.h
├── sw.cpp
├── tessdata
│ ├── configs
│ │ ├── alto
│ │ ├── ambigs.train
│ │ ├── api_config
│ │ ├── bazaar
│ │ ├── bigram
│ │ ├── box.train
│ │ ├── box.train.stderr
│ │ ├── digits
│ │ ├── get.images
│ │ ├── hocr
│ │ ├── inter
│ │ ├── kannada
│ │ ├── linebox
│ │ ├── logfile
│ │ ├── lstmbox
│ │ ├── lstmdebug
│ │ ├── lstm.train
│ │ ├── makebox
│ │ ├── Makefile.am
│ │ ├── quiet
│ │ ├── rebox
│ │ ├── strokewidth
│ │ ├── tsv
│ │ ├── txt
│ │ ├── unlv
│ │ └── wordstrbox
│ ├── eng.user-patterns
│ ├── eng.user-words
│ ├── Makefile.am
│ ├── pdf.ttf
│ └── tessconfigs
│ ├── batch
│ ├── batch.nochop
│ ├── Makefile.am
│ ├── matdemo
│ ├── msdemo
│ ├── nobatch
│ └── segdemo
├── tesseract.pc.cmake
├── tesseract.pc.in
├── unittest
│ ├── apiexample_test.cc
│ ├── applybox_test.cc
│ ├── baseapi_test.cc
│ ├── baseapi_thread_test.cc
│ ├── bitvector_test.cc
│ ├── cleanapi_test.cc
│ ├── colpartition_test.cc
│ ├── commandlineflags_test.cc
│ ├── cycletimer.h
│ ├── dawg_test.cc
│ ├── denorm_test.cc
│ ├── equationdetect_test.cc
│ ├── fileio_test.cc
│ ├── fuzzers
│ │ └── fuzzer-api.cpp
│ ├── heap_test.cc
│ ├── imagedata_test.cc
│ ├── include_gunit.h
│ ├── indexmapbidi_test.cc
│ ├── intfeaturemap_test.cc
│ ├── intsimdmatrix_test.cc
│ ├── lang_model_test.cc
│ ├── layout_test.cc
│ ├── ligature_table_test.cc
│ ├── linlsq_test.cc
│ ├── loadlang_test.cc
│ ├── log.h
│ ├── lstm_recode_test.cc
│ ├── lstm_squashed_test.cc
│ ├── lstm_test.cc
│ ├── lstm_test.h
│ ├── lstmtrainer_test.cc
│ ├── Makefile.am
│ ├── mastertrainer_test.cc
│ ├── matrix_test.cc
│ ├── networkio_test.cc
│ ├── normstrngs_test.cc
│ ├── normstrngs_test.h
│ ├── nthitem_test.cc
│ ├── osd_test.cc
│ ├── pagesegmode_test.cc
│ ├── pango_font_info_test.cc
│ ├── paragraphs_test.cc
│ ├── params_model_test.cc
│ ├── progress_test.cc
│ ├── qrsequence_test.cc
│ ├── README.md
│ ├── recodebeam_test.cc
│ ├── rect_test.cc
│ ├── resultiterator_test.cc
│ ├── scanutils_test.cc
│ ├── shapetable_test.cc
│ ├── stats_test.cc
│ ├── stridemap_test.cc
│ ├── stringrenderer_test.cc
│ ├── tablefind_test.cc
│ ├── tablerecog_test.cc
│ ├── tabvector_test.cc
│ ├── tatweel_test.cc
│ ├── textlineprojection_test.cc
│ ├── tfile_test.cc
│ ├── unicharcompress_test.cc
│ ├── unicharset_test.cc
│ ├── unichar_test.cc
│ ├── validate_grapheme_test.cc
│ ├── validate_indic_test.cc
│ ├── validate_khmer_test.cc
│ ├── validate_myanmar_test.cc
│ └── validator_test.cc
└── VERSION
34 directories, 744 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论