分享C#识别图片上的数字
通过Emgu实现对图片上的数字进行识别。
前期步骤:
1.下载Emgu安装文件,我的版本是2.4.2.1777。3.0版本则实现对中文的支持。
2.安装后需填写环境变量,环境变量Path值后加入Emgu安装路径到bin下。如C:\Emgu\emgucv-windows-x86-gpu 2.4.2.1777\bin;
3.在bin下查找需要的dll如Emgu.CV.dll与Emgu.CV.OCR.dll等。
4.将C:\Emgu\emgucv-windows-x86-gpu 2.4.2.1777\bin下的文件夹tessdata赋值到程序运行目录下。
注:安装后的Emgu路径下有C#版本的demo可供参考
关键代码:
将需要的dll导入到项目中。
- private static Tesseract _ocr;//创建识别对象
- //传入图片进行识别
- public static string ORC_(Bitmap img)
- {
- //""标示OCR识别调用失败
- string re = "";
- if (img == null)
- return re;
- else
- {
- Bgr drawColor = new Bgr(Color.Blue);
- try
- {
- Image<Bgr, Byte> image = new Image<Bgr, byte>(img);
- using (Image<Gray, byte> gray = image.Convert<Gray, Byte>())
- {
- _ocr.Recognize(gray);
- Tesseract.Charactor[] charactors = _ocr.GetCharactors();
- foreach (Tesseract.Charactor c in charactors)
- {
- image.Draw(c.Region, drawColor, );
- }
- re = _ocr.GetText();
- }
- return re;
- }
- catch (Exception ex)
- {
- return re;
- }
- }
- }
- //识别方法如点击按钮识别
- private void btnXIdentification_Click(object sender, EventArgs e)
- {
- try
- {
- _ocr = new Tesseract(@"C:\Emgu\emgucv-windows-x86-gpu 2.4.2.1777\bin\tessdata", "eng", Tesseract.OcrEngineMode.OEM_TESSERACT_CUBE_COMBINED);//方法第一个参数可为""表示通过环境变量调用字库,第二个参数表示字库的文件,第三个表示识别方式,可看文档与资料查找。
- _ocr.SetVariable("tessedit_char_whitelist", "0123456789X");//此方法表示只识别1234567890与x字母
- string result = "";
- Bitmap bitmap = new Bitmap(_emguImage.ToBitmap());
- bitmap = BrightnessP(bitmap, Convert.ToInt32(this.textBoxX3.Text));//图片加亮处理
- bitmap = KiContrast(bitmap, Convert.ToInt32(this.textBoxX2.Text));//调整对比对
- this.pictureBox3.Image = bitmap;
- result = ORC_(bitmap);
- this.textBoxX1.Text = result;
- _ocr.Dispose();
- }
- catch (Exception exception)
- {
- MessageBox.Show(exception.Message);
- }
- }
- /// <summary>
- /// 增加图像亮度
- /// </summary>
- /// <param name="a"></param>
- /// <param name="v"></param>
- /// <returns></returns>
- public static Bitmap BrightnessP(Bitmap a, int v)
- {
- System.Drawing.Imaging.BitmapData bmpData = a.LockBits(new Rectangle(, , a.Width, a.Height), System.Drawing.Imaging.ImageLockMode.ReadWrite, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
- int bytes = a.Width * a.Height * ;
- IntPtr ptr = bmpData.Scan0;
- int stride = bmpData.Stride;
- unsafe
- {
- byte* p = (byte*)ptr;
- int temp;
- for (int j = ; j < a.Height; j++)
- {
- for (int i = ; i < a.Width * ; i++, p++)
- {
- temp = (int)(p[] + v);
- temp = (temp > ) ? : temp < ? : temp;
- p[] = (byte)temp;
- }
- p += stride - a.Width * ;
- }
- }
- a.UnlockBits(bmpData);
- return a;
- }
- ///<summary>
- ///图像对比度调整
- ///</summary>
- ///<param name="b">原始图</param>
- ///<param name="degree">对比度[-100, 100]</param>
- ///<returns></returns>
- public static Bitmap KiContrast(Bitmap b, int degree)
- {
- if (b == null)
- {
- return null;
- }
- if (degree < -) degree = -;
- if (degree > ) degree = ;
- try
- {
- double pixel = ;
- double contrast = (100.0 + degree) / 100.0;
- contrast *= contrast;
- int width = b.Width;
- int height = b.Height;
- BitmapData data = b.LockBits(new Rectangle(, , width, height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);
- unsafe
- {
- byte* p = (byte*)data.Scan0;
- int offset = data.Stride - width * ;
- for (int y = ; y < height; y++)
- {
- for (int x = ; x < width; x++)
- {
- // 处理指定位置像素的对比度
- for (int i = ; i < ; i++)
- {
- pixel = ((p / 255.0 - 0.5) * contrast + 0.5) * ;
- if (pixel < ) pixel = ;
- if (pixel > ) pixel = ;
- p = (byte)pixel;
- } // i
- p += ;
- } // x
- p += offset;
- } // y
- }
- b.UnlockBits(data);
- return b;
- }
- catch (Exception ex)
- {
- return null;
- }
- }
OEM_TESSERACT_ONLY, // Run Tesseract only - fastest运行只TESSERACT - 最快
OEM_CUBE_ONLY, // Run Cube only - better accuracy, but slower只运行立方 - 更好的精度,但速度较慢
OEM_TESSERACT_CUBE_COMBINED, // Run both and combine results - best accuracy运行和结果相结合 - 最佳精度
OEM_DEFAULT // Specify this mode when calling init_*(),指定此模式下,当调用init_*()
分享C#识别图片上的数字的更多相关文章
- C#识别图片上的数字
通过Emgu实现对图片上的数字进行识别. 前期步骤: 1.下载Emgu安装文件,我的版本是2.4.2.1777.3.0版本则实现对中文的支持. 2.安装后需填写环境变量,环境变量Path值后加入Emg ...
- python 识别图片上的数字
https://blog.csdn.net/qq_31446377/article/details/81708006 ython 3.6 版本 Pytesseract 图像验证码识别 环境: (1) ...
- c#实现识别图片上的验证码数字
这篇文章主要介绍了c#实现识别图片上的验证码数字的方法,本文给大家汇总了2种方法,有需要的小伙伴可以参考下. ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 ...
- Python3.x:如何识别图片上的文字
Python3.x:如何识别图片上的文字 安装pytesseract库,必须先安装其依赖的PIL及tesseract-ocr,其中PIL为图像处理库,而后面的tesseract-ocr则为google ...
- python 图片上添加数字源代码
最近因工作需要,需要在图片上添加数字,查询了资料,自己写了一个方法,并进行了测试,由于代码用到了PIL库,需要下载安装,下载地址:http://www.pythonware.com/products/ ...
- PHP识别简单的图片上面的数字(可扩展)
1.场景 最近在学习图片处理,就是特意把数字生成一个图片,然后再用程序去识别图片的数字.这就有了一下的学习过程. 2.原理分析 2.1 首先是将图片像素化,二值化,然后和字模去对比(需要相对于配置字模 ...
- KNN识别图像上的数字及python实现
领导让我每天手工录入BI系统中的数据并判断数据是否存在异常,若有异常点,则检测是系统问题还是业务问题.为了解放双手,我决定写个程序完成每天录入管理驾驶舱数据的任务.首先用按键精灵录了一套脚本把系统中的 ...
- vuejs开发组件分享之H5图片上传、压缩及拍照旋转的问题处理
一.前言 三年.net开发转前端已经四个月了,前端主要用webpack+vue,由于后端转过来的,前端不够系统,希望分享下开发心得与园友一起学习. 图片的上传之前都是用的插件(ajaxupload), ...
- 分享一个react 图片上传组件 支持OSS 七牛云
react-uplod-img 是一个基于 React antd组件的图片上传组件 支持oss qiniu等服务端自定义获取签名,批量上传, 预览, 删除, 排序等功能 需要 react 版本大于 v ...
随机推荐
- javascript 计算倒计时
function timeDown(second) { var month = '', day = '', hour = '', minute = ''; if (second >= 86400 ...
- 使用cxf 发布 jax-rs 风格webservice 。并客户端测试。
详细介绍:http://www.ibm.com/developerworks/cn/java/j-lo-jaxrs/ 1.定义一个User对象 package com.zf.test; import ...
- Flask初学者:session操作
cookie:是一种保存数据的格式,也可以看成是保存数据的一个“盒子”,服务器返回cookie给浏览器(由服务器产生),由浏览器保存在本地,下次再访问此服务器时浏览器就会自动将此cookie一起发送给 ...
- Gym - 101908G Gasoline 二分+最大流
G - Gasoline Gym - 101908G 题意:给出R个提供点,P个接收点,每个接收点都要接收满,还有一个运输的时间,问最小时间能够完成所有的运输 题解:首先每次都必须要满流,所以我们只要 ...
- Fire Game FZU - 2150 (bfs)
Problem 2150 Fire Game Accept: 3772 Submit: 12868Time Limit: 1000 mSec Memory Limit : 32768 KB ...
- linux系统下单节点hadoop2的配置
Jdk安装: jdk-7u45-linux-x64.gz cp jdk-7u45-linux-x64.gz /usr/java/ cd /usr/java/ tar -zxvf jdk-7u45-li ...
- 从零开始到设计Python+Selenium自动化测试框架-如何开始
如何开始学习web ui自动化测试?如何选择一门脚本语言?选择什么自动化测试工具? 本人已经做测试快5年,很惭愧,感觉积累不够,很多测试都不会,三年多功能测试,最近两年才开始接触和学习自动化测试.打算 ...
- 微信小程序-----校园头条整体概括
1.项目需求 为了让在校师生可以更加方便的了解学校信息,从而合理的安排自己的时间,避免发生冲突和错过事件,通过小程序的便利性,可以达到随手一查的功能. 2.项目布局 3.效果展示 3.1登录 3.2首 ...
- Your branch is ahead of 'origin/master' by 21 commits.
当切换到主分支后,准备 git pull 拉取远程 master 分支时,提示本地主分支显示有 21 个commits 问题原因: 因为你修改了 local master 本地的主分支,可以选择以下方 ...
- sqlserver 操作access数据库
exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Quer ...