使用Microsoft Expression Encoder SDK捕获静态图像

时间:2013-04-25 21:03:44

标签: c# webcam screen-capture expression-encoder-sdk

我正在玩我的网络摄像头并开始创建一个小应用程序(使用Microsoft Expression Encoder SDK),其中网络摄像头的图像被流式传输到winform上的图片框[1]。到目前为止,一切都很顺利。但现在我的问题开始了:

我想捕获视频流的单个图像并存储它。我找到了“ScreenCaptureJob”类,它可以创建视频文件。微软的MSDN声称可以“从对话框的静止图像中捕获任何内容”[2]来完成视频。 MSDN中的所有样本都是指视频捕获。不幸的是,我找不到任何解决方案如何使用这个类来捕获单个图像。

任何人都可以帮助我吗?

[1]将网络摄像头流式传输到图片框的代码(来源:http://www.codeproject.com/Articles/202464/How-to-use-a-WebCam-in-C-with-the-NET-Framework-4

        var lstVideoDevices = new Dictionary<string, EncoderDevice>();
        var lstAudioDevices = new Dictionary<string, EncoderDevice>();

        foreach (EncoderDevice edv in EncoderDevices.FindDevices(EncoderDeviceType.Video))
        {
            lstVideoDevices.Add(edv.Name, edv);
        }
        foreach (EncoderDevice eda in EncoderDevices.FindDevices(EncoderDeviceType.Audio))
        {
            lstAudioDevices.Add(eda.Name, eda);
        }

        _job = new 

        var _deviceSource = _job.AddDeviceSource(lstVideoDevices.Values.FirstOrDefault(x => x.Name.Contains("USB")), lstAudioDevices.Values.FirstOrDefault(x => x.Name.Contains("USB")));

        _deviceSource.PreviewWindow = new PreviewWindow(new HandleRef(this.pictureBox1, this.pictureBox1.Handle));

        _job.ActivateSource(_deviceSource);`

[2] http://msdn.microsoft.com/en-us/library/gg602440%28v=expression.40%29.aspx

2 个答案:

答案 0 :(得分:2)

您可以使用该库进行静态捕捉,但它看起来有点像kludge。 (我仍然在寻找更好的解决方案)我在link找到了一个例子。基本的解决方案是弹出一个预览窗口,然后使用相同尺寸的图形对象,使用CopyFromScreen()来获取文件。

你可以,但它似乎有点像kludge。我在Code Project-How To Use A Webcam in C#找到了一个例子。基本的解决方案是弹出一个预览窗口。然后,使用相同尺寸的图形对象,使用CopyFromScreen()来获取文件。这是代码:

using (Bitmap bitmap = new Bitmap(panelVideoPreview.Width, panelVideoPreview.Height))
   { 
   using (Graphics g = Graphics.FromImage(bitmap))
    {
        // Get the paramters to call g.CopyFromScreen and get the image
        Rectangle rectanglePanelVideoPreview = panelVideoPreview.Bounds;
        Point sourcePoints = panelVideoPreview.PointToScreen(new Point(panelVideoPreview.ClientRectangle.X, panelVideoPreview.ClientRectangle.Y));
        g.CopyFromScreen(sourcePoints, Point.Empty, rectanglePanelVideoPreview.Size); 
    }
    bitmap.Save(....)
    }

答案 1 :(得分:0)

我不确定微软表情编码器SDK是否可行,但它似乎记录不清。

但您可以使用Video Capture功能。

只需使用capCreateCaptureWindow函数创建预览窗口,然后通过发送WM_CAP_SET_CALLBACK_FRAME消息注册帧回调:

/* imports */
[DllImport("user32", EntryPoint="SendMessage")]
public static extern int SendMessage(int hWnd, uint Msg, int wParam, int lParam);

[DllImport("avicap32.dll", EntryPoint="capCreateCaptureWindowA")]
public static extern int capCreateCaptureWindowA(string lpszWindowName, int dwStyle, int X, int Y, int nWidth, int nHeight, int hwndParent, int nID);

/* ... */
capCreateCaptureWindowA(lpszName, showVideo.WS_VISIBLE | showVideo.WS_CHILD, 0, 0, mWidth, mHeight, mControlPtr, 0);

SendMessage(lwnd, showVideo.WM_CAP_SET_CALLBACK_FRAME, 0, handler);

您可以找到C#示例herehere

如果你想弄清楚如何使用Expression Encoder,请告诉我。