实例介绍
tesseract3.04最新源代码,从github下载而来。
【实例截图】
【核心代码】
4744302543439048226.zip
└── tesseract-3.04.00
├── android
│ ├── AndroidManifest.xml
│ ├── jni
│ │ ├── Android.mk
│ │ └── Application.mk
│ └── Makefile.am
├── api
│ ├── apitypes.h
│ ├── baseapi.cpp
│ ├── baseapi.h
│ ├── capi.cpp
│ ├── capi.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── pdfrenderer.cpp
│ ├── renderer.cpp
│ ├── renderer.h
│ └── tesseractmain.cpp
├── AUTHORS
├── autogen.sh
├── ccmain
│ ├── adaptions.cpp
│ ├── applybox.cpp
│ ├── control.cpp
│ ├── control.h
│ ├── cubeclassifier.cpp
│ ├── cubeclassifier.h
│ ├── cube_control.cpp
│ ├── cube_reco_context.cpp
│ ├── cube_reco_context.h
│ ├── docqual.cpp
│ ├── docqual.h
│ ├── equationdetect.cpp
│ ├── equationdetect.h
│ ├── fixspace.cpp
│ ├── fixspace.h
│ ├── fixxht.cpp
│ ├── ltrresultiterator.cpp
│ ├── ltrresultiterator.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── 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
│ ├── tesseract_cube_combiner.cpp
│ ├── tesseract_cube_combiner.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
│ ├── 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
│ ├── Makefile.in
│ ├── 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
│ ├── hashfn.h
│ ├── helpers.h
│ ├── host.h
│ ├── indexmapbidi.cpp
│ ├── indexmapbidi.h
│ ├── kdpair.h
│ ├── lsterr.h
│ ├── mainblk.cpp
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── 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
│ ├── secname.h
│ ├── serialis.cpp
│ ├── serialis.h
│ ├── sorthelper.h
│ ├── stderr.h
│ ├── strngs.cpp
│ ├── strngs.h
│ ├── tesscallback.h
│ ├── tessdatamanager.cpp
│ ├── tessdatamanager.h
│ ├── tprintf.cpp
│ ├── tprintf.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
│ ├── Makefile.in
│ ├── 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
├── config
│ ├── config.guess
│ ├── config.h.in
│ ├── config.sub
│ ├── depcomp
│ ├── install-sh
│ ├── ltmain.sh
│ └── missing
├── configure
├── configure.ac
├── contrib
│ ├── tesseract-c_api-demo.py
│ ├── tesseract.completion
│ └── traineddata.txt
├── COPYING
├── cube
│ ├── altlist.cpp
│ ├── altlist.h
│ ├── beam_search.cpp
│ ├── beam_search.h
│ ├── bmp_8.cpp
│ ├── bmp_8.h
│ ├── cached_file.cpp
│ ├── cached_file.h
│ ├── char_altlist.cpp
│ ├── char_altlist.h
│ ├── char_bigrams.cpp
│ ├── char_bigrams.h
│ ├── char_samp.cpp
│ ├── char_samp_enum.cpp
│ ├── char_samp_enum.h
│ ├── char_samp.h
│ ├── char_samp_set.cpp
│ ├── char_samp_set.h
│ ├── char_set.cpp
│ ├── char_set.h
│ ├── classifier_base.h
│ ├── classifier_factory.cpp
│ ├── classifier_factory.h
│ ├── con_comp.cpp
│ ├── con_comp.h
│ ├── conv_net_classifier.cpp
│ ├── conv_net_classifier.h
│ ├── cube_const.h
│ ├── cube_line_object.cpp
│ ├── cube_line_object.h
│ ├── cube_line_segmenter.cpp
│ ├── cube_line_segmenter.h
│ ├── cube_object.cpp
│ ├── cube_object.h
│ ├── cube_search_object.cpp
│ ├── cube_search_object.h
│ ├── cube_tuning_params.cpp
│ ├── cube_tuning_params.h
│ ├── cube_utils.cpp
│ ├── cube_utils.h
│ ├── feature_base.h
│ ├── feature_bmp.cpp
│ ├── feature_bmp.h
│ ├── feature_chebyshev.cpp
│ ├── feature_chebyshev.h
│ ├── feature_hybrid.cpp
│ ├── feature_hybrid.h
│ ├── hybrid_neural_net_classifier.cpp
│ ├── hybrid_neural_net_classifier.h
│ ├── lang_mod_edge.h
│ ├── lang_model.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── search_column.cpp
│ ├── search_column.h
│ ├── search_node.cpp
│ ├── search_node.h
│ ├── search_object.h
│ ├── string_32.h
│ ├── tess_lang_mod_edge.cpp
│ ├── tess_lang_mod_edge.h
│ ├── tess_lang_model.cpp
│ ├── tess_lang_model.h
│ ├── tuning_params.h
│ ├── word_altlist.cpp
│ ├── word_altlist.h
│ ├── word_list_lang_model.cpp
│ ├── word_list_lang_model.h
│ ├── word_size_model.cpp
│ ├── word_size_model.h
│ ├── word_unigrams.cpp
│ └── word_unigrams.h
├── 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
│ ├── listio.cpp
│ ├── listio.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── 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
│ ├── Makefile.in
│ ├── 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
│ ├── Makefile.in
│ ├── 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
├── INSTALL
├── INSTALL.GIT
├── java
│ ├── com
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ └── scrollview
│ │ │ ├── events
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── SVEventHandler.java
│ │ │ │ ├── SVEvent.java
│ │ │ │ └── SVEventType.java
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── ScrollView.java
│ │ │ └── ui
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── SVAbstractMenuItem.java
│ │ │ ├── SVCheckboxMenuItem.java
│ │ │ ├── SVEmptyMenuItem.java
│ │ │ ├── SVImageHandler.java
│ │ │ ├── SVMenuBar.java
│ │ │ ├── SVMenuItem.java
│ │ │ ├── SVPopupMenu.java
│ │ │ ├── SVSubMenuItem.java
│ │ │ └── SVWindow.java
│ │ ├── Makefile.am
│ │ └── Makefile.in
│ ├── Makefile.am
│ └── Makefile.in
├── Makefile.am
├── Makefile.in
├── neural_networks
│ └── runtime
│ ├── input_file_buffer.cpp
│ ├── input_file_buffer.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── neural_net.cpp
│ ├── neural_net.h
│ ├── neuron.cpp
│ ├── neuron.h
│ └── sigmoid_table.cpp
├── NEWS
├── opencl
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── oclkernels.h
│ ├── opencl_device_selection.h
│ ├── openclwrapper.cpp
│ └── openclwrapper.h
├── README
├── ReleaseNotes
├── tessdata
│ ├── configs
│ │ ├── ambigs.train
│ │ ├── api_config
│ │ ├── bazaar
│ │ ├── bigram
│ │ ├── box.train
│ │ ├── box.train.stderr
│ │ ├── digits
│ │ ├── get.image
│ │ ├── hocr
│ │ ├── inter
│ │ ├── kannada
│ │ ├── linebox
│ │ ├── logfile
│ │ ├── makebox
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── quiet
│ │ ├── rebox
│ │ ├── strokewidth
│ │ └── unlv
│ ├── eng.user-patterns
│ ├── eng.user-words
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── pdf.ttf
│ └── tessconfigs
│ ├── batch
│ ├── batch.nochop
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── matdemo
│ ├── msdemo
│ ├── nobatch
│ └── segdemo
├── tesseract.pc.in
├── testing
│ ├── counttestset.sh
│ ├── eurotext.tif
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── 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
│ ├── Makefile.in
│ ├── 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
│ ├── cntraining.cpp
│ ├── combine_tessdata.cpp
│ ├── commandlineflags.cpp
│ ├── commandlineflags.h
│ ├── commontraining.cpp
│ ├── commontraining.h
│ ├── dawg2wordlist.cpp
│ ├── degradeimage.cpp
│ ├── degradeimage.h
│ ├── fileio.cpp
│ ├── fileio.h
│ ├── GlyphLessFont.c
│ ├── GlyphLessFont.h
│ ├── icuerrorcode.h
│ ├── language-specific.sh
│ ├── ligature_table.cpp
│ ├── ligature_table.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── mergenf.cpp
│ ├── mergenf.h
│ ├── 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
│ ├── Makefile.in
│ ├── scrollview.cpp
│ ├── scrollview.h
│ ├── svmnode.cpp
│ ├── svmnode.h
│ ├── svpaint.cpp
│ ├── svutil.cpp
│ └── svutil.h
├── vs2010
│ ├── include
│ │ ├── leptonica_versionnumbers.props
│ │ └── tesseract_versionnumbers.props
│ ├── libtesseract
│ │ ├── libtesseract.rc
│ │ ├── libtesseract.vcxproj
│ │ ├── libtesseract.vcxproj.filters
│ │ └── resource.h
│ ├── port
│ │ ├── gettimeofday.cpp
│ │ ├── gettimeofday.h
│ │ ├── mathfix.h
│ │ ├── strcasestr.cpp
│ │ ├── strcasestr.h
│ │ ├── strtok_r.cpp
│ │ ├── strtok_r.h
│ │ └── vcsversion.h
│ ├── tesseract
│ │ ├── resource.h
│ │ ├── tesseract.rc
│ │ ├── tesseract.vcxproj
│ │ └── tesseract.vcxproj.filters
│ ├── tesseract.sln
│ ├── tesshelper.py
│ └── version.bat
└── 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
├── Makefile.in
├── 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
37 directories, 770 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论