图片识别文字, OCR

Posted zxhome

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图片识别文字, OCR相关的知识,希望对你有一定的参考价值。

文章引用自: https://www.cnblogs.com/stone_w/archive/2011/10/08/2202397.html

方式一、Asprise-OCR的使用。

Asprise-OCR下载地址:

http://asprise.com/product/ocr/download.php?lang=csharp 

其中需要使用的3个dll是AspriseOCR.dll、DevIL.dll、ILU.dll。

需要注意的是这几个.dll是vc写的引用要在程序中用DllImport引用,关键代码:

[DllImport("AspriseOCR.dll", EntryPoint = "OCR", CallingConvention = CallingConvention.Cdecl)]

public static extern IntPtr OCR(string file, int type);

[DllImport("AspriseOCR.dll", EntryPoint = "OCRpart", CallingConvention = CallingConvention.Cdecl)]

static extern IntPtr OCRpart(string file, int type, int startX, int startY, int width, int height);

[DllImport("AspriseOCR.dll", EntryPoint = "OCRBarCodes", CallingConvention = CallingConvention.Cdecl)]

static extern IntPtr OCRBarCodes(string file, int type);

[DllImport("AspriseOCR.dll", EntryPoint = "OCRpartBarCodes", CallingConvention = CallingConvention.Cdecl)]

static extern IntPtr OCRpartBarCodes(string file, int type, int startX, int startY, int width, int height);

以上是关于图片识别文字, OCR的主要内容,如果未能解决你的问题,请参考以下文章

怎么在迅捷OCR文字识别软件中将图片文字识别出来

php怎么做图片识别

图片识别文字软件该怎么使用

如何在迅捷OCR文字识别软件中进行图片局部识别

项目管理Java OCR实现图片文字识别

如何通过迅捷OCR文字识别软件精准识别图片中的文字