您好,登錄后才能下訂單哦!
基于C#的Aforge類調(diào)用簡單示例,供大家參考,具體內(nèi)容如下
由題,本程序是使用Aforge類庫調(diào)用攝像頭的demo。
功能:
1.預(yù)覽
2.前后攝像頭切換
1.判斷是否有攝像頭,無則提示
2.有,判斷攝像頭個數(shù),有1個則直接打開預(yù)覽
3.有2個或以上,提示選擇后打開相應(yīng)攝像頭預(yù)覽
3.拍照功能
控件:
1.攝像頭列表下拉框:用于選擇攝像頭,如無攝像頭則不能下拉
2.拍照按鈕:用于拍照,照片默認(rèn)存儲在當(dāng)前程序運(yùn)行目錄,名稱為“Aforge.bmp”。如無攝像頭則不能點(diǎn)擊
3.預(yù)覽按鈕:用于打開當(dāng)前選擇攝像頭預(yù)覽,如當(dāng)前選擇攝像頭不變,則不進(jìn)行重新預(yù)覽。如沒有攝像頭則不能點(diǎn)擊
4.提示標(biāo)簽:用于給出軟件的一些提示
5.預(yù)覽控件videoSourcePlayer:用于預(yù)覽拍照界面以及實現(xiàn)拍照功能
該控件需要右擊工具箱-選擇項-.NET選項卡中-瀏覽,找到Aforge.Controls.dll庫添加后才會出現(xiàn)
程序設(shè)計
1.加載窗體
查找所有攝像頭設(shè)備
2.預(yù)覽按鈕:
根據(jù)選中攝像頭打開該攝像頭并預(yù)覽
3.拍照按鈕:
記錄當(dāng)前幀保存為圖像
代碼
程序主要代碼:
添加引用 using AForge.Video.DirectShow;
///查找所有攝像頭設(shè)備 private void loadCameraList() { VideoCaptureDevice cameraDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice); if (cameraDevices.Count == 0) { capture_btn.Enabled = false; cameraId_cob.Enabled = false; preview_btn.Enabled = false; guide_lab.Text = noCameraDevice; cameraDevices = null; }else if(cameraDevices.Count == 1) { isSingleCamera = true; preview_btn.Enabled = false; guide_lab.Visible = false; } foreach (FilterInfo cameraDevice in cameraDevices) { cameraId_cob.Items.Add(cameraDevice.Name); cameraId_cob.SelectedIndex = 0; } } ///根據(jù)選中攝像頭打開該攝像頭并預(yù)覽 private VideoCaptureDevice cameraDevice; private void preview() { if (null != cameraDevice) {//在2個或以上攝像頭進(jìn)行切換時執(zhí)行 preview_player.SignalToStop(); preview_player.WaitForStop(); } cameraDevice = new VideoCaptureDevice(cameraDevices[cameraId_cob.SelectedIndex].MonikerString); cameraDevice.DesiredFrameSize = new Size(320, 240); cameraDevice.DesiredFrameRate = 1; preview_player.VideoSource = cameraDevice; preview_player.Start(); } ///記錄當(dāng)前幀保存為圖像 private void takePhoto() { if (cameraDevice == null) return; Bitmap bitmap = preview_player.GetCurrentVideoFrame(); string fullPath = Application.StartupPath + "\\"; if (!Directory.Exists(fullPath)) Directory.CreateDirectory(fullPath); string img = fullPath + "Aforge.jpg"; bitmap.Save(img); guide_lab.Text = img; guide_lab.Visible = true; }
備注
1.關(guān)閉窗體時需要關(guān)閉控件:
private void aforgeForm_FormClosing(object sender, FormClosingEventArgs e) { preview_player.SignalToStop(); preview_player.WaitForStop(); }
2.調(diào)用preview_player.GetCurrentVideoFrame()方法提示沒有該方法
由于使用的Aforge.Controls.dll庫版本過低導(dǎo)致,根據(jù)官方記錄,該方法需要 (in AForge.Controls.dll) Version: 2.2.5.0 (2.2.5.0)版本支持
3.在添加預(yù)覽控件videoSourcePlayer時提示沒有可以加入的控件
目前筆者遇到的這個問題比較奇葩,使用AForge.Controls.dll Version: 2.2.5.0 庫文件添加會報這個錯誤,看過各種解法,比如直接把庫文件拖到工具面板上,還是沒能解決。說奇葩是因為目前親測到的解決方法步驟是:
1).引用那邊先不要添加AForge.Controls.dll文件
2).找到AForge.Controls.dll Version: 2.0.0.0 注意版本號是低版本的。將這個低版本的加入工具面板就可以看到預(yù)覽控件videoSourcePlayer。
3).但是,此時代碼里會出現(xiàn)第二個錯誤(調(diào)用preview_player.GetCurrentVideoFrame()方法提示沒有該方法)。原因就不解釋了,解決方法是:在引用里面的AForge.Controls.dll(這個時候可以看下屬性是Version: 2.0.0.0)刪除這個舊版本,添加新的版本的AForge.Controls.dll Version: 2.2.5.0。
至此,大功告成。可以正常編譯了。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。