【例子介绍】C#开发的图片识别程序,Tesseract-OCR;挺好用,可以用来做毕业设计,搞研究!
【相关图片】
【源码结构】
.
├── C#开发的图片识别程序,Tesseract-OCR;挺好用,可以用来做毕业设计,搞研究!_OCR_WinForm-master.zip
├── OCR_WinForm-master
│ ├── OCRImage.gif
│ ├── OCRImage.jpg
│ ├── OCRImage.tif
│ ├── OCRImage2.gif
│ ├── OCRImageCropped.jpg
│ ├── OCRImageCropped.tif
│ ├── OCRImage_BigChunk.jpg
│ ├── OCRResult_BigChunk.txt
│ ├── OCRSmall.jpg
│ ├── OCR_WinForm
│ │ ├── App.config
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── OCR_WinForm.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── OCR_WinForm.vshost.exe
│ │ │ ├── OCR_WinForm.vshost.exe.config
│ │ │ ├── OCR_WinForm.vshost.exe.manifest
│ │ │ └── tessdata
│ │ │ ├── eng.cube.bigrams
│ │ │ ├── eng.cube.fold
│ │ │ ├── eng.cube.lm
│ │ │ ├── eng.cube.nn
│ │ │ ├── eng.cube.params
│ │ │ ├── eng.cube.size
│ │ │ ├── eng.cube.word-freq
│ │ │ ├── eng.tesseract_cube.nn
│ │ │ └── eng.traineddata
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── OCR_WinForm.csproj.FileListAbsolute.txt
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── packages.config
│ │ ├── x64
│ │ │ ├── liblept172.dll
│ │ │ └── libtesseract304.dll
│ │ └── x86
│ │ ├── liblept172.dll
│ │ └── libtesseract304.dll
│ ├── OCR_WinForm.sln
│ ├── One_Line.jpg
│ ├── Preprocess_BeforeOCR.jpg
│ └── packages
│ └── Tesseract.3.0.2.0
│ ├── Tesseract.3.0.2.0.nupkg
│ ├── content
│ │ ├── x64
│ │ │ ├── liblept172.dll
│ │ │ └── libtesseract304.dll
│ │ └── x86
│ │ ├── liblept172.dll
│ │ └── libtesseract304.dll
│ ├── lib
│ │ ├── net20
│ │ │ ├── Tesseract.dll
│ │ │ └── Tesseract.xml
│ │ ├── net35
│ │ │ ├── Tesseract.dll
│ │ │ └── Tesseract.xml
│ │ ├── net40
│ │ │ ├── Tesseract.dll
│ │ │ └── Tesseract.xml
│ │ ├── net40-client
│ │ │ ├── Tesseract.dll
│ │ │ └── Tesseract.xml
│ │ ├── net45
│ │ │ ├── Tesseract.dll
│ │ │ └── Tesseract.xml
│ │ └── net451
│ │ ├── Tesseract.dll
│ │ └── Tesseract.xml
│ └── tools
│ └── install.ps1
└── OCR_WinForm-master.zip
23 directories, 66 files
评论