使用aforg.net 捕獲網路攝影機 附源碼

來源:互聯網
上載者:User

標籤:class   blog   c   code   tar   http   

?
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 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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.