winform 调用摄像头扫码识别二维码的实现步骤

本文详细介绍了如何在Windows Forms应用中创建一个简单的界面,通过调用摄像头并利用AForge和ZXing库实现实时二维码识别。首先创建一个Winform项目,设置窗体属性,然后添加必要的UI元素。接着引入AForge和ZXing库,创建CameraQR窗体,配置摄像头,设置定时器每隔200毫秒识别一次图像。当识别到二维码时,关闭窗体并将结果返回。最后展示了识别效果及代码链接。
摘要由CSDN通过智能技术生成

因为公司业务需求,需要在Windows系统下调用摄像头识别二维码需求,就有了这个功能。

我根据网上网友提供的一些资料,自己整合应用到项目中,效果还不错(就是感觉像素不是太好)

现在将调用摄像头+识别二维码这两个功能单独出来写到这里,供大家讨论和参考。

有什么不足或者问题大家可以提出来,共同改进共同进步

创建一个空的winform项目解决方案,我起名叫他:ScanQRCode

将Form1作为主窗体,设置相关属性:

StartPosition:CenterScreen (窗体居中)

添加一个居中标题:

private void LoadTitleCenterData()
 {
      string titleMsg ="二维码识别主界面";
      Graphics g = this.CreateGraphics();
      Double startingPoint = (this.Width / 2) - (g.MeasureString(titleMsg, this.Font).Width / 2);
      Double widthOfASpace = g.MeasureString(" ", this.Font).Width;
      String tmp = " ";
      Double tmpWidth = 0;
 
      while ((tmpWidth + widthOfASpace) < startingPoint)
      {
        tmp += " ";
        tmpWidth += widthOfASpace;
      }
      this.Text = tmp + titleMsg;
 }

最大最小化禁用:

public Form1()
{
  this.MinimizeBox = false;
  this.MaximizeBox = false;
  InitializeComponent();
  LoadTitleCenterData();
}

Form1中添加一个TableLayoutPanel,三行三列,比例按照百分比:10%,80%,10%这样

在TableLayoutPanel的80%中再添加一个TableLayoutPanel,还是行比例:20%,80%这样(二八定律)

在TableLayoutPanel中添加Panel,在其中手动在添加几个按钮和label

最终界面这样(能看就行):

在这里插入图片描述

添加一个二维码识别界面CameraQR:

使用Nuget添加引用,搜索AForge,将如下程序包引入:
在这里插入图片描述

添加一个识别二维码的窗体,命名名称为:CameraQR

将VideoSourcePlayer添加到窗体中,Fill显示:

窗体中定义几个私有变量:

1
2
3
private AForge.Video.DirectShow.FilterInfoCollection _videoDevices;//摄像设备
System.Timers.Timer timer;//定时器
CameraHelper _cameraHelper = new CameraHelper();//视屏设备操作类
窗体Load事件中获取拍照设备列表,并将第一个设备作为摄像设备(如有前后两个或多个摄像头,自己去改一下代码,设置成可以选择的,在CameraHelper中的CreateFilterInfoCollection()中):

private void CameraQR_Load(object sender, EventArgs e)
{
      // 获取视频输入设备
      _videoDevices = _cameraHelper.CreateFilterInfoCollection();//获取拍照设备列表
      if (_videoDevices.Count == 0)
      {
        MessageBox.Show("无设备");
        this.Dispose();
        this.Close();
        return;
      }
      resultStr = "";//二维码识别字符串清空
      _cameraHelper.ConnectDevice(videoSourcePlayer1);//连接打开设备
}

组件初始化完成之后,添加一个定时任务,用来阶段性识别摄像设备中的图片资源,我写的是每200毫秒去识别一次,如果c#教程图片中有二维码,就识别二维码;识别成功之后,关闭窗体,将识别结果返回给上一个界面,此处需要一个有识别二维码程序包

使用Nuget添加引用,搜索ZXing,将如下程序包引入:

在这里插入图片描述

代码如下(核心代码基本就这些):

public CameraQR()
{
  this.MinimizeBox = false;
  this.MaximizeBox = false;
  InitializeComponent();
  LoadTitleCenterData();
  CheckForIllegalCrossThreadCalls = false;//多线程中访问窗体控件资源不会异常
  AddTimer();//定时识别图片
}
 
private void AddTimer()
{
 timer = new System.Timers.Timer();
 timer.Enabled = true;
 timer.Interval = 200;
 timer.Start();
 timer.Elapsed += new ElapsedEventHandler(PicToQRCode);
}
private void PicToQRCode(object sender, ElapsedEventArgs e)
{
      if (_cameraHelper.img == null)
        return;
      BinaryBitmap bitmap = null;
      try
      {
        MemoryStream ms = new MemoryStream();
        _cameraHelper.img.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp);
        byte[] bt = ms.GetBuffer();
        ms.Close();
        LuminanceSource source = new RGBLuminanceSource(bt, _cameraHelper.img.Width, _cameraHelper.img.Height);
        bitmap = new BinaryBitmap(new ZXing.Common.HybridBinarizer(source));
      }
      catch (Exception ex)
      {
        return;
      }
 
      Result result=null;
      try
      {
        //开始解码
        result = new MultiFormatReader().decode(bitmap);
      }
      catch (ReaderException ex)
      {
        resultStr = ex.ToString();
      }
      if (result != null)
      {
        resultStr = result.Text;
        this.DialogResult = DialogResult.OK;
        this.Close();
      }}

窗体关闭时,记得释放定时器 关闭摄像头(不然异常满天飞):

private void CameraQR_FormClosing(object sender, FormClosingEventArgs e)
{
   if (timer != null)
   {
     timer.Dispose();
   }
    _cameraHelper.CloseDevice();
 }

CameraHelper类:

public class CameraHelper
{
  public FilterInfoCollection _videoDevices;//本机摄像硬件设备列表
  public VideoSourcePlayer _videoSourcePlayer;//视频画布
  public Bitmap img = null;//全局变量,保存每一次捕获的图像
  public System.Drawing.Image CaptureImage(VideoSourcePlayer sourcePlayer = null)
  {
 
    if (sourcePlayer == null || sourcePlayer.VideoSource == null)
    {
      if (_videoSourcePlayer == null)
        return null;
      else
      {
        sourcePlayer = _videoSourcePlayer;
      }
    }
 
    try
    {
      if (sourcePlayer.IsRunning)
      {
        System.Drawing.Image bitmap = sourcePlayer.GetCurrentVideoFrame();
        return bitmap;
      }
      return null;
 
    }
    catch (Exception ex)
    {
      return null;
    }
  }
 
  public FilterInfoCollection CreateFilterInfoCollection()
  {
    if (_videoDevices != null)
      return _videoDevices;
    _videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice);
    return _videoDevices;
  }
 
  public VideoCaptureDevice ConnectDevice(VideoSourcePlayer videoSourcePlayer, FilterInfo filterInfo = null)
  {
    VideoCaptureDevice videoSource = new VideoCaptureDevice();
    if (filterInfo == null)
    {
      videoSource = new VideoCaptureDevice(_videoDevices[_videoDevices.Count - 1].MonikerString);
    }
    else
    {
      videoSource = new VideoCaptureDevice(filterInfo.MonikerString);
    }
 
    videoSource.NewFrame += new NewFrameEventHandler(video_NewFrame);
    videoSourcePlayer.VideoSource = videoSource;
    videoSourcePlayer.Start();
    _videoSourcePlayer = videoSourcePlayer;
    return videoSource;
  }
 
  private void video_NewFrame(object sender, NewFrameEventArgs eventArgs)
  {
    img = (Bitmap)eventArgs.Frame.Clone();
  }
 
  public void CloseDevice(VideoSourcePlayer videoSourcePlayer = null)
  {
    if (videoSourcePlayer == null)
    {
      if (_videoSourcePlayer == null)
        return;
      _videoSourcePlayer.SignalToStop();
    }
    else
    {
      videoSourcePlayer.SignalToStop();
    }
  }
}

我用的测试二维码是:

在这里插入图片描述

最终的别结果为:

在这里插入图片描述

代码:https://github.com/Binzm/ScanQRCode.git

以上就是winform 调用摄像头扫码识别二维码的实现步骤的详细内容

实现winform调用摄像头扫描识别条形码并在文本框中显示,需要以下三个组件: 1. AForge.NET Framework (用于调用摄像头,处理图像) 2. ZXing.NET (用于识别条形码) 3. Windows Forms (用于创建界面) 以下是完整的代码: ```csharp using AForge.Video; using AForge.Video.DirectShow; using ZXing; public partial class Form1 : Form { private FilterInfoCollection videoDevices; private VideoCaptureDevice videoSource; private Bitmap currentFrame; private BarcodeReader reader; public Form1() { InitializeComponent(); reader = new BarcodeReader(); videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice); foreach (FilterInfo device in videoDevices) { comboBox1.Items.Add(device.Name); } if (comboBox1.Items.Count > 0) { comboBox1.SelectedIndex = 0; } } private void videoSource_NewFrame(object sender, NewFrameEventArgs eventArgs) { currentFrame = (Bitmap)eventArgs.Frame.Clone(); pictureBox1.Image = currentFrame; ReadBarcode(); } private void ReadBarcode() { Result result = null; try { result = reader.Decode(currentFrame); } catch (Exception ex) { MessageBox.Show(ex.Message); } if (result != null) { textBox1.Invoke(new Action(() => textBox1.Text = result.Text)); videoSource.SignalToStop(); } } private void button1_Click(object sender, EventArgs e) { if (comboBox1.Items.Count == 0) { MessageBox.Show("No camera detected."); return; } videoSource = new VideoCaptureDevice(videoDevices[comboBox1.SelectedIndex].MonikerString); videoSource.NewFrame += new NewFrameEventHandler(videoSource_NewFrame); videoSource.Start(); } private void button2_Click(object sender, EventArgs e) { if (videoSource != null && videoSource.IsRunning) { videoSource.SignalToStop(); } } } ``` 上面的代码中,我们首先在构造函数中初始化了BarcodeReader对象,并且在comboBox1中添加了可用的视频设备。当点击button1时,我们调用videoSource对象的Start()方法来开始捕获视频并且在pictureBox1中显示图像。每次videoSource捕获到新的图像时,会触发videoSource_NewFrame事件,并且在该事件中进行条形码识别。如果识别到了条形码,我们将其显示在textBox1中,并且停止视频捕获。当点击button2时,我们停止视频捕获。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值