• 大小: 6.2MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-01
  • 语言: 其他
  • 标签: C#  

资源简介

How to use Tessnet2 library.zip

资源截图

代码片段和文件信息

using System;

namespace OCRTest
{
    using System.Drawing;

    using tessnet2;

    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                var image = new Bitmap(@“C:\OCRTest\number.jpg“);
                var ocr = new Tesseract();
                ocr.SetVariable(“tessedit_char_whitelist“ “0123456789“); // If digit only
                //@“C:\OCRTest\tessdata“ contains the language package without this the method crash and app breaks
                ocr.Init(@“C:\OCRTest\tessdata“ “eng“ true); 
                var result = ocr.DoOCR(image Rectangle.Empty);
                foreach (Word word in result)
                    Console.WriteLine(“{0} : {1}“ word.Confidence word.Text);

                Console.ReadLine();
            }
            catch (Exception exception)
            {

            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       16254  2014-08-29 17:09  description.html
     文件        1670  2014-08-29 17:09  description\offline.js
     文件           0  2014-08-29 17:09  description\Combined.css
     文件           0  2014-08-29 17:09  description\6c794fc6-124a-4c91-8fb7-5fa337e06c32Combined.css
     文件       10457  2014-08-29 17:09  description\Galleries.css
     文件        1727  2014-08-29 17:09  description\Layout.css
     文件       67972  2014-08-29 17:09  description\Brand.css
     文件        3369  2014-08-29 17:09  description\iframedescription.css
     文件       54183  2014-08-29 17:09  description\consoleapplication.png
     文件       33843  2014-08-29 17:09  description\ocrtest.png
     文件       64969  2014-08-29 17:09  description\reference.png
     文件       81509  2014-08-29 17:09  description\config.png
     文件       20045  2014-08-29 17:09  description\error.png
     文件      111711  2014-08-29 17:09  description\tessnet 2.png
     文件          49  2014-08-29 17:09  description\.html
     文件       14808  2014-08-29 17:09  license.rtf
     目录           0  2014-08-29 17:09  C#\
     文件        7241  2014-08-29 17:09  C#\number.jpg
     目录           0  2014-08-29 17:09  C#\OCRTest\
     文件         911  2014-08-29 17:09  C#\OCRTest.sln
     文件       27136  2014-08-29 17:09  C#\OCRTest.v11.suo
     文件         220  2014-08-29 17:09  C#\OCRTest\App.config
     文件        2719  2014-08-29 17:09  C#\OCRTest\OCRTest.csproj
     文件         931  2014-08-29 17:09  C#\OCRTest\Program.cs
     目录           0  2014-08-29 17:09  C#\OCRTest\Properties\
     文件        1426  2014-08-29 17:09  C#\OCRTest\Properties\AssemblyInfo.cs
     目录           0  2014-08-29 17:09  C#\tessdata\
     文件         392  2014-08-29 17:09  C#\tessdata\eng.DangAmbigs
     文件         672  2014-08-29 17:09  C#\tessdata\eng.freq-dawg
     文件      862544  2014-08-29 17:09  C#\tessdata\eng.inttemp
     文件       39862  2014-08-29 17:09  C#\tessdata\eng.normproto
............此处省略17个文件信息

评论

共有 条评论