实例介绍
tesseract-ocr安装包和中文语言包,可以识别图片中的汉字的辅助工具!
【实例截图】
【核心代码】
tesseract-ocr安装包和中文语言包2018
└── tesseract-ocr安装包和中文语言包
├── 111.png
├── tesseract-ocr-setup-3.02.02.exe
├── tesseract源码
│ └── tesseract-master
│ ├── android
│ │ ├── AndroidManifest.xml
│ │ ├── jni
│ │ │ ├── Android.mk
│ │ │ └── Application.mk
│ │ └── Makefile.am
│ ├── api
│ │ ├── apitypes.h
│ │ ├── baseapi.cpp
│ │ ├── baseapi.h
│ │ ├── capi.cpp
│ │ ├── capi.h
│ │ ├── Makefile.am
│ │ ├── pdfrenderer.cpp
│ │ ├── renderer.cpp
│ │ ├── renderer.h
│ │ └── tesseractmain.cpp
│ ├── appveyor.yml
│ ├── arch
│ │ ├── dotproductavx.cpp
│ │ ├── dotproductavx.h
│ │ ├── dotproductsse.cpp
│ │ ├── dotproductsse.h
│ │ ├── Makefile.am
│ │ ├── simddetect.cpp
│ │ └── simddetect.h
│ ├── AUTHORS
│ ├── autogen.sh
│ ├── 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.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
│ │ ├── tessbox.h
│ │ ├── tessedit.cpp
│ │ ├── tessedit.h
│ │ ├── tesseractclass.cpp
│ │ ├── tesseractclass.h
│ │ ├── tessvars.cpp
│ │ ├── tessvars.h
│ │ ├── tfacepp.cpp
│ │ ├── thresholder.cpp
│ │ ├── thresholder.h
│ │ ├── werdit.cpp
│ │ └── werdit.h
│ ├── ccstruct
│ │ ├── blamer.cpp
│ │ ├── blamer.h
│ │ ├── blckerr.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
│ │ ├── genblob.cpp
│ │ ├── genblob.h
│ │ ├── hpdsizes.h
│ │ ├── imagedata.cpp
│ │ ├── imagedata.h
│ │ ├── ipoints.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.cpp
│ │ ├── 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
│ │ ├── genericheap.h
│ │ ├── genericvector.h
│ │ ├── globaloc.cpp
│ │ ├── globaloc.h
│ │ ├── helpers.h
│ │ ├── host.h
│ │ ├── indexmapbidi.cpp
│ │ ├── indexmapbidi.h
│ │ ├── kdpair.h
│ │ ├── lsterr.h
│ │ ├── mainblk.cpp
│ │ ├── Makefile.am
│ │ ├── memry.cpp
│ │ ├── memry.h
│ │ ├── ndminx.h
│ │ ├── nwmain.h
│ │ ├── object_cache.h
│ │ ├── ocrclass.h
│ │ ├── params.cpp
│ │ ├── params.h
│ │ ├── platform.h
│ │ ├── qrsequence.h
│ │ ├── scanutils.cpp
│ │ ├── scanutils.h
│ │ ├── serialis.cpp
│ │ ├── serialis.h
│ │ ├── sorthelper.h
│ │ ├── stderr.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
│ ├── ChangeLog
│ ├── 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
│ │ ├── cutoffs.h
│ │ ├── 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
│ ├── cmake
│ │ ├── BuildFunctions.cmake
│ │ ├── Configure.cmake
│ │ ├── FindICU.cmake
│ │ ├── SourceGroups.cmake
│ │ └── templates
│ │ ├── TesseractConfig.cmake.in
│ │ └── TesseractConfig-version.cmake.in
│ ├── CMakeLists.txt
│ ├── configure.ac
│ ├── contrib
│ │ ├── genlangdata.pl
│ │ ├── tesseract-c_api-demo.py
│ │ ├── tesseract.completion
│ │ └── traineddata.txt
│ ├── CONTRIBUTING.md
│ ├── COPYING
│ ├── cppan.yml
│ ├── cutil
│ │ ├── bitvec.cpp
│ │ ├── bitvec.h
│ │ ├── callcpp.cpp
│ │ ├── callcpp.h
│ │ ├── const.h
│ │ ├── cutil_class.cpp
│ │ ├── cutil_class.h
│ │ ├── cutil.cpp
│ │ ├── cutil.h
│ │ ├── danerror.cpp
│ │ ├── danerror.h
│ │ ├── efio.cpp
│ │ ├── efio.h
│ │ ├── emalloc.cpp
│ │ ├── emalloc.h
│ │ ├── freelist.cpp
│ │ ├── freelist.h
│ │ ├── globals.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
│ ├── doc
│ │ ├── ambiguous_words.1
│ │ ├── ambiguous_words.1.asc
│ │ ├── ambiguous_words.1.html
│ │ ├── ambiguous_words.1.xml
│ │ ├── cntraining.1
│ │ ├── cntraining.1.asc
│ │ ├── cntraining.1.html
│ │ ├── cntraining.1.xml
│ │ ├── combine_tessdata.1
│ │ ├── combine_tessdata.1.asc
│ │ ├── combine_tessdata.1.html
│ │ ├── combine_tessdata.1.xml
│ │ ├── dawg2wordlist.1
│ │ ├── dawg2wordlist.1.asc
│ │ ├── dawg2wordlist.1.html
│ │ ├── dawg2wordlist.1.xml
│ │ ├── Doxyfile
│ │ ├── generate_manpages.sh
│ │ ├── Makefile.am
│ │ ├── mftraining.1
│ │ ├── mftraining.1.asc
│ │ ├── mftraining.1.html
│ │ ├── mftraining.1.xml
│ │ ├── shapeclustering.1
│ │ ├── shapeclustering.1.asc
│ │ ├── shapeclustering.1.html
│ │ ├── shapeclustering.1.xml
│ │ ├── tesseract.1
│ │ ├── tesseract.1.asc
│ │ ├── tesseract.1.html
│ │ ├── tesseract.1.xml
│ │ ├── tesseract.bib
│ │ ├── unicharambigs.5
│ │ ├── unicharambigs.5.asc
│ │ ├── unicharambigs.5.html
│ │ ├── unicharambigs.5.xml
│ │ ├── unicharset.5
│ │ ├── unicharset.5.asc
│ │ ├── unicharset.5.html
│ │ ├── unicharset.5.xml
│ │ ├── unicharset_extractor.1
│ │ ├── unicharset_extractor.1.asc
│ │ ├── unicharset_extractor.1.html
│ │ ├── unicharset_extractor.1.xml
│ │ ├── wordlist2dawg.1
│ │ ├── wordlist2dawg.1.asc
│ │ ├── wordlist2dawg.1.html
│ │ └── wordlist2dawg.1.xml
│ ├── 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
│ ├── 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.proto
│ │ ├── weightmatrix.cpp
│ │ └── weightmatrix.h
│ ├── Makefile.am
│ ├── NEWS
│ ├── opencl
│ │ ├── Makefile.am
│ │ ├── oclkernels.h
│ │ ├── opencl_device_selection.h
│ │ ├── openclwrapper.cpp
│ │ └── openclwrapper.h
│ ├── README.md
│ ├── tessdata
│ │ ├── configs
│ │ │ ├── ambigs.train
│ │ │ ├── api_config
│ │ │ ├── bazaar
│ │ │ ├── bigram
│ │ │ ├── box.train
│ │ │ ├── box.train.stderr
│ │ │ ├── digits
│ │ │ ├── get.image
│ │ │ ├── hocr
│ │ │ ├── inter
│ │ │ ├── kannada
│ │ │ ├── linebox
│ │ │ ├── logfile
│ │ │ ├── lstm.train
│ │ │ ├── makebox
│ │ │ ├── Makefile.am
│ │ │ ├── quiet
│ │ │ ├── rebox
│ │ │ ├── strokewidth
│ │ │ ├── tsv
│ │ │ ├── txt
│ │ │ └── unlv
│ │ ├── eng.user-patterns
│ │ ├── eng.user-words
│ │ ├── Makefile.am
│ │ ├── pdf.ttf
│ │ └── tessconfigs
│ │ ├── batch
│ │ ├── batch.nochop
│ │ ├── Makefile.am
│ │ ├── matdemo
│ │ ├── msdemo
│ │ ├── nobatch
│ │ └── segdemo
│ ├── tesseract.pc.in
│ ├── testing
│ │ ├── counttestset.sh
│ │ ├── DuTillet1004Pg2LG.jpg
│ │ ├── eurotext.tif
│ │ ├── FILES
│ │ ├── hebrew-nikud-genesis-1-2.png
│ │ ├── hebrew.png
│ │ ├── hebtypo.jpg
│ │ ├── Makefile.am
│ │ ├── phototest.tif
│ │ ├── README
│ │ ├── reorgdata.sh
│ │ ├── reports
│ │ │ ├── 1995.bus.3B.sum
│ │ │ ├── 1995.doe3.3B.sum
│ │ │ ├── 1995.mag.3B.sum
│ │ │ ├── 1995.news.3B.sum
│ │ │ ├── 2.03.summary
│ │ │ └── 2.04.summary
│ │ ├── runalltests.sh
│ │ └── runtestset.sh
│ ├── 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_tessdata.cpp
│ │ ├── commandlineflags.cpp
│ │ ├── commandlineflags.h
│ │ ├── commontraining.cpp
│ │ ├── commontraining.h
│ │ ├── dawg2wordlist.cpp
│ │ ├── degradeimage.cpp
│ │ ├── degradeimage.h
│ │ ├── fileio.cpp
│ │ ├── fileio.h
│ │ ├── icuerrorcode.h
│ │ ├── 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.sh
│ │ ├── tesstrain_utils.sh
│ │ ├── text2image.cpp
│ │ ├── tlog.cpp
│ │ ├── tlog.h
│ │ ├── unicharset_extractor.cpp
│ │ ├── unicharset_training_utils.cpp
│ │ ├── unicharset_training_utils.h
│ │ ├── util.h
│ │ └── wordlist2dawg.cpp
│ ├── viewer
│ │ ├── Makefile.am
│ │ ├── scrollview.cpp
│ │ ├── scrollview.h
│ │ ├── svmnode.cpp
│ │ ├── svmnode.h
│ │ ├── svpaint.cpp
│ │ ├── svutil.cpp
│ │ └── svutil.h
│ ├── vs2010
│ │ ├── port
│ │ │ ├── gettimeofday.cpp
│ │ │ ├── gettimeofday.h
│ │ │ ├── mathfix.h
│ │ │ ├── strcasestr.cpp
│ │ │ ├── strcasestr.h
│ │ │ ├── strtok_r.cpp
│ │ │ ├── strtok_r.h
│ │ │ └── vcsversion.h
│ │ └── tesseract
│ │ ├── resource.h
│ │ └── tesseract.rc
│ └── wordrec
│ ├── associate.cpp
│ ├── associate.h
│ ├── chop.cpp
│ ├── chop.h
│ ├── chopper.cpp
│ ├── chopper.h
│ ├── drawfx.cpp
│ ├── drawfx.h
│ ├── findseam.cpp
│ ├── findseam.h
│ ├── gradechop.cpp
│ ├── gradechop.h
│ ├── 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
├── test.py
├── 中文语言包
│ └── chi_sim.traineddata
└── 注意事项.txt
38 directories, 723 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论