zoukankan      html  css  js  c++  java
  • 使用aforg.net 捕获摄像头 附源码

    using System;
    using System.Drawing;
    using System.Windows.Forms;
    using AForge.Video;
    using AForge.Video.DirectShow;
    
    namespace CameraCapture
    {
        public partial class Form1 : Form
        {
            FilterInfoCollection filterInfoCollection;
            VideoCaptureDevice captureDevice;
            public Form1()
            {
                InitializeComponent();
                filterInfoCollection = new FilterInfoCollection(FilterCategory.VideoInputDevice);
                foreach (FilterInfo item in filterInfoCollection)
                {
                    this.comboBox1.Items.Add(item.Name);
                }
                this.comboBox1.SelectedIndex = 0;
                //先初始化一下 否则在下面判断是否已运行时会报错
                captureDevice = new VideoCaptureDevice();
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
    
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                if (captureDevice.IsRunning)
                    captureDevice.Stop();
                captureDevice = new VideoCaptureDevice(filterInfoCollection[comboBox1.SelectedIndex].MonikerString);
                captureDevice.NewFrame += captureDevice_NewFrame;
                captureDevice.Start();
            }
    
            void captureDevice_NewFrame(object sender, NewFrameEventArgs eventArgs)
            {
                this.pictureBox1.Image = (Bitmap)eventArgs.Frame.Clone();
            }
            /// <summary>
            /// 关闭后结束捕获 释放资源
            /// </summary>
            /// <param name="sender"></param>
            /// <param name="e"></param>
            private void Form1_FormClosed(object sender, FormClosedEventArgs e)
            {
                if (captureDevice.IsRunning)
                {
                    captureDevice.Stop();
                }
            }
        }
    }
    

      

    源代码下载:http://files.cnblogs.com/DragonX/CameraCapture.zip

  • 相关阅读:
    知乎
    热磁性储存系统转载
    超薄纳米纸张 比钢强250倍转载
    TFT LCD数据存储为BMP文件的C语言代码
    GPS NMEA0183协议详解 转载
    JPG文件结构分析转载
    SD/TF 引脚
    调试错误:No Algorithm found for(转载)
    STM32 USB IAP 步骤
    追踪“善恶有报” 解开生命健康福寿秘密(转载)
  • 原文地址:https://www.cnblogs.com/DragonX/p/3751072.html
Copyright © 2011-2022 走看看