
[英]Record USB Webcam to MKV and other formats using DirectShow.Net
[英]Capturing frames from webcam using DirectShow.NET
我是 DirectShow 的新手,所以这个库的某些部分我不太了解。 我已经看到了 DxSnap 示例,但我需要在不预览的情况下捕获帧,以便进一步处理。 我该怎么做?
如果您主要关心的是“访问网络摄像头”而不是“使用 DirectShow 访问网络摄像头”,那么我会看看AForge.NET-Framework 。 我用 DirectShow 尝试过一次,只是为了发现我可以用更少的代码在更短的时间内对多个视频源做同样的事情。
下面是一些示例代码: 使用 DirectShow 访问 USB 摄像头和视频文件
你可以自己建一个。 如果您查看 windows sdk 7.0~ 文件夹,您可以转到示例 > 多媒体 > directshow > 并且应该有一个过滤器文件夹,向您展示如何制作通用过滤器并根据需要执行
这是一个例子。 构建一个如图所示的 Windows 窗体。
这些名称让我们将事件处理程序(下面的代码)与相应的控件相关联。
如果程序成功构建并运行,请使用组合框选择可用的源。 单击“开始”以查看视频源。 单击“复制”将图像克隆到剪贴板。 单击“停止”关闭图像源。
该代码已使用 Microsoft 进行了测试:
要构建代码,包含此代码的项目需要具有以下引用:
NuGet 可以将这些包拉入项目中。 在 Visual Studio IDE 中:
搜索“AForge”并安装相应的软件包。
代码:
using System;
using System.Drawing;
using System.Windows.Forms;
using CameraDevice;
using AForge.Video.DirectShow;
using System.Threading;
namespace CameraCaptureTest3
{
public partial class Form1 : Form
{
CameraImaging camImg;
bool StopVideo = true;
Thread thrVideo;
object mImageLock;
FilterInfoCollection videoDevices;
public Form1()
{
InitializeComponent();
camImg = new CameraImaging();
mImageLock = new object();
// enumerate video devices
videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice);
cbCameraDevices.Items.Clear();
foreach(FilterInfo i in videoDevices) cbCameraDevices.Items.Add(i.Name);
}
//---------------------------------------------------------
// VideoRecordin() is meant to be run on a separate thread
//---------------------------------------------------------
private void VideoRecording()
{
camImg.videoSource.Start();
while (!StopVideo)
{
lock (mImageLock)
{
Bitmap tmp = (Bitmap)camImg.bitmap.Clone();
if (InvokeRequired)
{
BeginInvoke(new MethodInvoker(() =>
{
pictureBox1.Image = tmp;
pictureBox1.Invalidate();
}));
}
else
{
pictureBox1.Image = tmp;
pictureBox1.Invalidate();
}
}
Thread.Sleep(33);
}
camImg.videoSource.Stop();
}
private void btnStartVideo_Click(object sender, EventArgs e)
{
StopVideo = false;
try
{
camImg.videoSource = new VideoCaptureDevice(camImg.videoDevices[cbCameraDevices.SelectedIndex].MonikerString);
thrVideo = new Thread(VideoRecording);
thrVideo.Start();
Thread.Sleep(1000);
lblRecording.Visible = true;
}
catch (Exception)
{
MessageBox.Show("No camera is chosen.", "Exception", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
StopVideo = true;
if (thrVideo != null) thrVideo.Join();
lblRecording.Visible = false;
Application.DoEvents();
}
private void button1_Click(object sender, EventArgs e)
{
StopVideo = true;
if (thrVideo != null)
while (thrVideo.ThreadState == ThreadState.Running)
Application.DoEvents();
pictureBox1.Image = null;
lblRecording.Visible = false;
}
private void button2_Click(object sender, EventArgs e)
{
Clipboard.SetImage(pictureBox1.Image);
}
}
}
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.