Csharp/C#教程:如何在emgu cv中从网络摄像头获取video流?分享


如何在emgu cv中从网络摄像头获取video流?

我在c#中使用emgu cv。

我需要知道如何从emgu cv中的网络摄像头(默认网络摄像头)获取video流?

您可以使用以下代码制作应用程序以捕获和显示video流:

public class CameraCapture { private Capture capture; //takes images from camera as image frames private bool captureInProgress; private void ProcessFrame(object sender, EventArgs arg) { Image ImageFrame = capture.QueryFrame(); //line 1 CamImageBox.Image = ImageFrame; //line 2 } private void Form1_Load(object sender, EventArgs e) { if (capture == null) { try { capture = new Capture(); } catch (NullReferenceException excpt) { MessageBox.Show(excpt.Message); } } if (capture != null) { if (captureInProgress) { //if camera is getting frames then stop the capture and set button Text // "Start" for resuming capture btnStart.Text = "Start!"; // Application.Idle -= ProcessFrame; } else { //if camera is NOT getting frames then start the capture and set button // Text to "Stop" for pausing capture btnStart.Text = "Stop"; Application.Idle += ProcessFrame; } captureInProgress = !captureInProgress; } } } 

不确定你想要对数据做什么,但是这将从相机中获得一个帧(并在WinForm上的pictureBox中显示)

上述就是C#学习教程:如何在emgu cv中从网络摄像头获取video流?分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—计算机技术网(www.ctvol.com)!

 private void Form1_Load(object sender, EventArgs e) { var capture = new Emgu.CV.Capture(); using (var nextFrame = capture.QueryFrame()) { if (nextFrame != null) { pictureBox1.Image = nextFrame.ToBitmap(); } } } 

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/cdevelopment/1002168.html

(0)
上一篇 2021年12月28日
下一篇 2021年12月28日

精彩推荐