C#调用摄像头

添加DLL

下载地址:https://download.csdn.net/download/ssssswsrjhtdj/15449179

然后添加引用(不包括EXE和XML文件)

添加后拖入工具箱,然后添加videoSourcePlayer控件

源代码

先添加引用:

using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using AForge.Video.DirectShow;
public partial class 摄像头 : Form
{
        FilterInfoCollection videoDevices;
        VideoCaptureDevice videoSource;
        public int selectedDeviceIndex = 0;
        public 摄像头()
        {
            InitializeComponent();

        }
        
        
        private void hy_Load(object sender, EventArgs e)
        {
            videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice);
            selectedDeviceIndex = 0;
          
posted @   刘火火学电脑  阅读(119)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示