csharp: Emgu.CV.OCR and Tesseract.OCR Optical Character Recognition
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using Emgu.CV; //3.2.02 using Emgu.CV.VideoStab; using Emgu.CV.ML; using Emgu.CV.OCR; using Emgu.CV.Structure; //https://github.com/iobrains/OpenCV namespace CharacterRecognition { /// <summary> /// geovindu edit /// </summary> public partial class MainWnd : Form { string path; public MainWnd() { InitializeComponent(); } /// <summary> /// /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void loadImageToolStripMenuItem_Click( object sender, EventArgs e) { rtbOcrResult.Clear(); OpenFileDialog ofd = new OpenFileDialog(); ofd.Title = "Select an image" ; ofd.Filter = "Image Files(*.png; *.jpg; *.bmp; *.gif)|*.png; *.jpg; *.bmp; *.gif" ; if (ofd.ShowDialog() == DialogResult.OK) { path = System.IO.Path.GetFullPath(ofd.FileName); picBox.Image = new Bitmap(path); picBox.SizeMode = PictureBoxSizeMode.Zoom; statusLabelOCR.Text = path + " loaded." ; } } /// <summary> /// /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void exitToolStripMenuItem_Click( object sender, EventArgs e) { Close(); } /// <summary> /// /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnAnalyzeImage_Click( object sender, EventArgs e) { if (picBox.Image == null ) { MessageBox.Show( "Load an image first!" ); } else { statusLabelOCR.Text = "Analyzing invoice image..." ; Task.Run(() => { using ( var img = new Image<Bgr, byte >(path)) { //https://github.com/tesseract-ocr/tessdata/ //Environment.GetEnvironmentVariable("EMGU_ROOT") + string tessdata = @"D:\open source\face\tessdata" ; using ( var ocrProvider = new Tesseract(tessdata, "eng" , OcrEngineMode.TesseractOnly)) //TesseractCubeCombined { ocrProvider.SetImage(img); //Recognize string text = ocrProvider.GetUTF8Text().TrimEnd(); //GetText rtbOcrResult.Invoke((MethodInvoker) delegate { statusLabelOCR.Text = "Analysis completed." ; rtbOcrResult.AppendText(text); }); } } }); } } /// <summary> /// /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void MainWnd_Load( object sender, EventArgs e) { } } } |
哲学管理(学)人生, 文学艺术生活, 自动(计算机学)物理(学)工作, 生物(学)化学逆境, 历史(学)测绘(学)时间, 经济(学)数学金钱(理财), 心理(学)医学情绪, 诗词美容情感, 美学建筑(学)家园, 解构建构(分析)整合学习, 智商情商(IQ、EQ)运筹(学)生存.---Geovin Du(涂聚文)
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
2018-07-06 MySQL chartset
2011-07-06 jQuery jToday Plugin