赞
踩
连接:Tesseract OCR with C# .NET | Iron OCR (ironsoftware.com)
- // PM > Install-Package IronOcr
- // using IronOcr;
- var Ocr = new IronTesseract();
- using (var Input = new OcrInput())
- {
- OcrInput.Add(@"img\example.tiff")
- Input.DeNoise(); //fixes digital noise
- Input.Deskew(); //fixes rotation and perspective
- // there are dozens more filters, but most users wont need them
- IronOcr.OcrResult Result = Ocr.Read(Input);
- Console.WriteLine(Result.Text);
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。