温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C#怎么调用USB摄像头

发布时间:2022-03-28 09:12:49 来源:亿速云 阅读:534 作者:iii 栏目:开发技术

这篇文章主要介绍“C#怎么调用USB摄像头”,在日常操作中,相信很多人在C#怎么调用USB摄像头问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”C#怎么调用USB摄像头”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

1、AForge安装

右击工程,在管理NuGet程序包中搜索Aforge类库,选择安装,如下图所示

C#怎么调用USB摄像头

C#怎么调用USB摄像头

2、进行USB摄像头类封装

a、初始化,初始化时要注意,加载的设备分辨率需要人工配置,如果配置分辨率不存在需要从默认的分辨率中选择

videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice);
  if (videoDevices.Count > 0 && videoDevices.Count >= CameraIndex)
       {
         FilterInfo info = videoDevices[videoDevices.Count - 1];
         videoSource = new VideoCaptureDevice(info.MonikerString);
          if (videoSource.VideoCapabilities.Length > 0)
            {
             VideoCapabilities tmp = videoSource.VideoCapabilities.
               First(x => x.FrameSize.Width == LocalSize.Width &&
                       x.FrameSize.Height == LocalSize.Height);
                   if (tmp != null)
                   {
                    videoSource.SnapshotResolution = tmp;
                    videoSource.VideoResolution = tmp;
                   }
                 else
                  {
                    int index = (videoSource.VideoCapabilities.Length + 1) / 2;
                    tmp = videoSource.VideoCapabilities[index];
                    }
                  videoSourcePlayer.VideoSource = videoSource;
                  videoSourcePlayer.Start();
                  videoSource.NewFrame += new NewFrameEventHandler(Video_NewFrame);
                    }
                }
            }
      catch (Exception ex)
       {
        LogHelper.Debug(ex);
}

b、绑定回调方法,此方法在摄像头成功预览之后会实时返回数据帧,封装时可以传入PictureBox,把回调旋转后的图片显示在此控件上

private void Video_NewFrame(object sender, NewFrameEventArgs eventArgs)
        {
            try
            {
                Bitmap video = (Bitmap)eventArgs.Frame.Clone();
                BmpRotate(video);
                if (UsbVideo != null)
                    UsbVideo.Image = video;
            }
            catch (Exception ex)
            {
                LogHelper.Debug(ex);
            }
        }
 
        /// <summary>
        /// 图像旋转
        /// </summary>
        /// <param name="_bmp"></param>
        private void BmpRotate(Bitmap _bmp)
        {
            try
            {
                if (CameraRotate == "0")
                {
                }
                else if (CameraRotate == "90")
                {
                    _bmp.RotateFlip(RotateFlipType.Rotate90FlipNone);
                }
                else if (CameraRotate == "180")
                {
                    _bmp.RotateFlip(RotateFlipType.Rotate180FlipNone);
                }
                else if (CameraRotate == "270")
                {
                    _bmp.RotateFlip(RotateFlipType.Rotate270FlipNone);
                }
            }
            catch (Exception ex)
            {
                LogHelper.Debug(ex);
            }
}

c、抓图事件,手动抓图事件,通过调用GetCurrentVideoFrame()方法获取Bitmap图片

public Bitmap GetCurrentVideoFrame()
      {
            Bitmap bmp = null;
            try
            {
                bmp = videoSourcePlayer.GetCurrentVideoFrame();
                BmpRotate(bmp);
            }
            catch (Exception ex)
            {
                LogHelper.Debug(ex);
            }
            return bmp;
        }

d、摄像头重连,此类库中videoSourcePlayer有个属性IsRunning可以判断是否USB摄像头预览中,可以对设备进行重连

private FilterInfoCollection videoDevices = null; //摄像头设备
public VideoCaptureDevice videoSource = null; //视频的来源选择
private VideoSourcePlayer videoSourcePlayer = new VideoSourcePlayer();
public Bitmap img = null;
public int CameraIndex = 1;
        /// <summary>
        /// 默认分辨率
        /// </summary>
        public Size LocalSize = new Size(640, 480);
        bool isHave = false;
        public string CameraRotate = "0";
        private System.Windows.Forms.PictureBox UsbVideo = null;
        public void ReConnect()
        {
            try
            {
                if (!videoSourcePlayer.IsRunning)
                {
                   videoSource.Stop();
                   videoSource.Start();
                }
            }
            catch (Exception)
            {
     }
}

到此,关于“C#怎么调用USB摄像头”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

usb
AI