资源是C#源代码,带DLL可以直接运行。基于AspriseOCR识别的,识别英文和数字准确率比较高。
2021-08-17 17:55:08 1.33MB AspriseOCR
1
资源有两块内容: 1:AspriseOcr.DLL 该3个dll为无弹窗dll。 2:AspriseOcr的VB.net实例,用于图像识别技术OCR。里面的源码及dll没有改过,你可以感受一下替换1的内容后的不同。 希望对程序猿的你有用。
2021-06-12 15:12:13 102.12MB Aspriseocr.dll OCR识别 vb.net OCR
1
已经去掉窗口弹出功能,相比较于tesseract(一堆的DLL,合计来几百MB),只有一个DLL,小巧,识别率高。tesseract还得自己训练数据。网上默认的识别率很差。但AspriseOCR官网上下载的只是测试版,循环1000次发现有非常严重的内存泄漏(跟是否破解无关)。
2021-04-10 14:34:44 30.93MB ocr
1
之前一个朋友在csdn上传了64位java版的破解版,但是还存在弹框问题。我这里把弹框解决了。仅提供关键的dll,另外两个dll和jar去官网下。
2019-12-21 20:24:09 496KB AspriseOcr java
1
带有3个DLL文件 很简单,使用非常方便
2019-12-21 19:37:04 1.12MB AspriseOcr 32 图像识别 验证码识别
1
其中需要使用的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); 调用代码很简单只有一句: MessageBox.Show(Marshal.PtrToStringAnsi(OCRpart(img_path, -1, startX, startY, width, height))); 其中img_path:为图片路径,startX、startY坐标均为0即可,width、height图片的宽和高。
2012-05-15 00:00:00 726KB OCR
1