设置捕获设备EmguCV

时间:2013-06-18 12:54:51

标签: c# wpf capture emgucv

我正在使用EmguCV中的类Capture来从WebCam中获取图像。

根据类(http://www.emgu.com/wiki/files/2.0.0.0/html/18b6eba7-f18b-fa87-8bf2-2acff68988cb.htm)的文档,Capture有3个构造函数。

使用public Capture()它应该使用默认摄像头,它可以正常工作。

正如我在其中一个例子中看到的那样,似乎

public Capture(string fileName) //takes a video file as the source for the captures.

最后一个构造函数是

public Capture(int camIndex) //which is supposed to "Create a capture using the specific camera" 

我尝试使用最后一个构造函数,允许用户选择设备,以防他有多个摄像头(例如,笔记本电脑中的集成摄像头或插入的USB摄像头)

我的问题是我不知道如何获取可用设备列表。试图创建索引从0到99的捕获并尝试抓住期望异常的帧,但它只需要100个捕获的黑色图像。此外,当我使用默认相机时,我不知道如何获得他的索引。

任何帮助?

编辑:根据 Shiva 的回答中的信息,我得到了它(我将其发布以备将来参考):

private void onLoad(object sender, RoutedEventArgs e)
{
    //Add the image processing to the dispatcher
    this.Dispatcher.Hooks.DispatcherInactive += new EventHandler(dispatcherTimer_Tick);

    //Get the information about the installed cameras and add the combobox items 
    DsDevice[] _SystemCamereas = DsDevice.GetDevicesOfCat(FilterCategory.VideoInputDevice);
    Video_Device[] WebCams = new Video_Device[_SystemCamereas.Length];
    for (int i = 0; i < _SystemCamereas.Length; i++)
    {
        WebCams[i] = new Video_Device(i, _SystemCamereas[i].Name, _SystemCamereas[i].ClassID); //fill web cam array
        ComboBoxDevices.Items.Add(WebCams[i].ToString());
    }
}

private void dispatcherTimer_Tick(object sender, EventArgs e)
{
    if (capture != null)
    {
        //Capture an image
        Image<Bgr, byte> img = capture.QueryFrame();
        //Show the image in the window
        ImageOriginal.Source = ImageProcessor.ToBitmapSource(img);
    }
}

private void ComboBoxDevices_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
    //If there is already a capture, dispose it
    if (capture != null)
    {
        capture.Dispose();
    }
    //Get the selected camera
    int selectedDevice = ComboBoxDevices.SelectedIndex;
    try
    {
        //Create new capture with the selected camera
        capture = new Capture(selectedDevice);
    }
    catch (Exception excpt)
    {
        MessageBox.Show(excpt.Message);
    }
}

2 个答案:

答案 0 :(得分:3)

捕获对象可用于使用以下代码将静态文件作为输入

 Capture grabber = new Emgu.CV.Capture(@".\..\..\file.avi");//can be relative path or absolute path of the video file.

要查找连接的网络摄像头列表,需要将Direct Show(DirectShow.Net.dll)等内容导入到项目中,并使用以下代码检索连接的网络摄像头列表。

    DsDevice[] _SystemCamereas = DsDevice.GetDevicesOfCat(FilterCategory.VideoInputDevice);
    Video_Device[] WebCams = new Video_Device[_SystemCamereas.Length];
        for (int i = 0; i < _SystemCamereas.Length; i++)
        {
            WebCams[i] = new Video_Device(i, _SystemCamereas[i].Name, _SystemCamereas[i].ClassID); //fill web cam array
            Camera_Selection.Items.Add(WebCams[i].ToString());
        }

检查此链接以获取完整代码 http://www.emgu.com/wiki/index.php?title=Camera_Capture

可以将此列表填充到组合框中,并且可以选择每个连接的设备以​​从特定设备检索视频输入。

示例可以在这里找到: http://fewtutorials.bravesites.com/entries/emgu-cv-c/level-2---use-multiple-cameras-in-one-application

对于您的上一个问题,默认相机的索引始终为0。 因此,要使用默认摄像头初始化捕获对象,您必须使用以下代码

Capture grabber = new Emgu.CV.Capture(0);

答案 1 :(得分:1)

检查EMGU CV source似乎表明它只是将索引传递给底层的OpenCV库,作为cvCreateCameraCapture(int index)函数的一部分。该函数是...... A bit of a mess of #ifdefs,但是根据我所看到的(以及评论所指示的内容),索引用于指定您想要的摄像头和它应该使用的API。

尝试连续尝试一百倍的倍数;每个应该使用不同的编解码器,尝试使用第一个相机。可能是您列出的一个API已编译到您的OpenCV副本中,但在您的系统上无法正常工作。

编辑:进一步向下钻取,似乎最终会在this函数调用结束,它使用MFEnumDeviceSources函数来获取列表。然后,您想要的设备将退出该列表(请参阅getDevice function a few lines higher up)。因此,在我看来,您在评论中提到的对话框是Windows'MediaFoundation内容的一部分,在这种情况下,您可能想要查看邮件的措辞,看看有一些有MF经验的人是否可以指向您正确的方向。