资源简介

开源的Tesseract和ZXing库实现OCR 和条码二维码识别

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using OCR.TesseractWrapper;
using ZXing;
using ZXing.Common;
using System.Drawing.Imaging;



namespace TesseractAndZXing
{
    public partial class Form1 : Form
    {
   

        public int x1 y1 x2 y2;
        public int bs;
        public bool Doubleclick;
        public Bitmap Bmp;
        

        public Form1()
        {
            InitializeComponent();
          
            
        }

        private void OCR_bt1_Click(object sender EventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();
            ofd.Filter = “(*.jpg*.gif*.bmp*.png*.jpeg)|*.JPG;*.GIF;*.BMP;*.PNG;*.JPEG“;
            if (ofd.ShowDialog() == DialogRe

评论

共有 条评论