Click here to Skip to main content
15,867,330 members
Articles / Desktop Programming / WPF

Yet another Web Camera control

Rate me:
Please Sign up or sign in to vote.
4.88/5 (90 votes)
5 Nov 2017CPOL5 min read 540.1K   174   211
In this article you will find yet another implementation of a web camera control.


330177/screen.jpg

Introduction

In this article you will find yet another implementation of a web camera control. The control is a simple and easy to use one: no additional dependencies and a minimalistic interface.

The control provides the following functionalities:

  1. Gets a list of available web camera devices on a system.
  2. Displays a video stream from a web camera device.
  3. Gets the current image being captured.

Requirements

  1. The WinForms version of the control is implemented using .NET Framework 2.0.
  2. The WPF version of the control is implemented using .NET Framework 4 Client Profile.
  3. The control uses the VMR-7 renderer filter available since Windows XP SP1.

The control supports both x86 and x64 platform targets.

Background

There are a number of ways to capture a video stream in Windows. Not mentioning all of them, the basic are DirectShow framework and AVICap library. We will use the DirectShow based approach, as it is more powerful and flexible.

The DirectShow framework operates using such concepts as a graph, filters and pins. The filters form a capture graph, through which a media stream flows. The filters in the graph are connected to each other using pins. A web camera is the capture filter a video stream starts from. The control’s window is passed to a renderer filter, which receives and shows the video stream. There are other in-the-middle filters possible, for example, color space conversion filters. That is all about the capture graph. See MSDN DirectShow documentation for more information.

Implementation Details

If you are not interested in implementation details, then you can skip this section.

The implementation is divided into three layers.

  1. The bottom layer is implemented as a native DLL module, which forwards our calls to the DirectShow framework.
  2. For distribution convenience, the native DLL module is embedded into the control’s assembly as a resource. On runtime stage, the DLL module will be extracted to a temporary file on disk and used via late binding technique. Once the control is disposed, the temporary file will be deleted. In other words, the control is distributed as a single file. All those operations are implemented by the middle layer.
  3. The top layer implements the control class itself and the WebCameraId class used to identify a web camera device.

The following diagram shows a logical structure of the implementation.

Image 2

Only the top layer is supposed to be used by clients.

The Bottom Layer

The bottom layer implements the following utilities to work with the capture graph.

C++
/// <summary>
/// Enumerates video input devices in a system.
/// </summary>
/// <param name="callback">A callback method.</param>
DSUTILS_API void __stdcall EnumVideoInputDevices(EnumVideoInputDevicesCallback callback);

/// <summary>
/// Builds a video capture graph.
/// </summary>
/// <returns>If the function succeeds, the return value is zero.</returns>
DSUTILS_API int __stdcall BuildCaptureGraph();

/// <summary>
/// Adds a renderer filter to a video capture graph,
/// which renders a video stream within a container window.
/// </summary>
/// <param name="hWnd">A container window that video should be clipped to.</param>
/// <returns>If the function succeeds, the return value is zero.</returns>
DSUTILS_API int __stdcall AddRenderFilter(HWND hWnd);

/// <summary>
/// Adds a video stream source to a video capture graph.
/// </summary>
/// <param name="devicePath">A device path of a video capture filter to add.</param>
/// <returns>If the function succeeds, the return value is zero.</returns>
DSUTILS_API int __stdcall AddCaptureFilter(BSTR devicePath);

/// <summary>
/// Removes a video stream source from a video capture graph.
/// </summary>
/// <returns>If the function succeeds, the return value is zero.</returns>
DSUTILS_API int __stdcall ResetCaptureGraph();

/// <summary>
/// Runs all the filters in a video capture graph. While the graph is running,
/// data moves through the graph and is rendered. 
/// </summary>
/// <returns>If the function succeeds, the return value is zero.</returns>
DSUTILS_API int __stdcall Start();

/// <summary>
/// Stops all the filters in a video capture graph.
/// </summary>
/// <returns>If the function succeeds, the return value is zero.</returns>
DSUTILS_API int __stdcall Stop();

/// <summary>
/// Retrieves the current image being displayed by the renderer filter.
/// </summary>
/// <param name="ppDib">Address of a pointer to a BYTE that will receive the DIB.</param>
/// <returns>If the function succeeds, the return value is zero.</returns>
DSUTILS_API int __stdcall GetCurrentImage(BYTE **ppDib);

/// <summary>
/// Retrieves the unstretched video size.
/// </summary>
/// <param name="lpWidth">A pointer to a LONG that will receive the width.</param>
/// <param name="lpHeight">A pointer to a LONG that will receive the height.</param>
/// <returns>If the function succeeds, the return value is zero.</returns>
DSUTILS_API int __stdcall GetVideoSize(LONG *lpWidth, LONG *lpHeight);

/// <summary>
/// Destroys a video capture graph.
/// </summary>
DSUTILS_API void __stdcall DestroyCaptureGraph();

The Middle Layer

The middle layer is implemented in the DirectShowProxy class.

First, what we should do is extract the capture graph utilities DLL module from the resources and save it to a temporary file.

C#
_dllFile = Path.GetTempFileName();
using (FileStream stream = new FileStream(_dllFile, FileMode.Create, FileAccess.Write))
{
    using (BinaryWriter writer = new BinaryWriter(stream))
    {
        writer.Write(IsX86Platform ?
            Resources.DirectShowFacade : Resources.DirectShowFacade64);
    }
}

Then we load our DLL module into the address space of the calling process.

C#
_hDll = LoadLibrary(_dllFile);
if (_hDll == IntPtr.Zero)
{
    throw new Win32Exception(Marshal.GetLastWin32Error());
}

And bind the DLL module functions to the class instance methods.

C++
private delegate Int32 BuildCaptureGraphDelegate();
private BuildCaptureGraphDelegate _buildCaptureGraph;

// ...

IntPtr pProcPtr = GetProcAddress(_hDll, "BuildCaptureGraph");
_buildCaptureGraph =
    (BuildCaptureGraphDelegate)Marshal.GetDelegateForFunctionPointer(pProcPtr, 
     typeof(BuildCaptureGraphDelegate));

When the control is being disposed, we unload the DLL module and delete it.

C#
public void Dispose()
{
    if (_hDll != IntPtr.Zero)
    {
        FreeLibrary(_hDll);
        _hDll = IntPtr.Zero;
    }

    if (File.Exists(_dllFile))
    {
        File.Delete(_dllFile);
    }
}

The Top Layer

The top layer is implemented in the WebCameraControl class with the following interface.

C#
/// <summary>
/// Gets a list of available video capture devices.
/// </summary>                                 
/// <exception cref="Win32Exception">Failed to load the DirectShow utilities dll.</exception>
public IEnumerable<WebCameraId> GetVideoCaptureDevices();

/// <summary>
/// Gets a value indicating whether the control is capturing a video stream.
/// </summary>
public Boolean IsCapturing { get; }

/// <summary>
/// Starts a capture.
/// </summary>
/// <param name="camera">The camera to capture from.</param>
/// <exception cref="ArgumentNullException">A null reference is passed as an argument.</exception>
/// <exception cref="Win32Exception">Failed to load the DirectShow utilities dll.</exception>
/// <exception cref="DirectShowException">Failed to run a video capture graph.</exception>
public void StartCapture(WebCameraId camera);

/// <summary>
/// Retrieves the unstretched image being captured.
/// </summary>
/// <returns>The current image.</returns>
/// <exception cref="InvalidOperationException">The control is not capturing a video stream.</exception>
/// <exception cref="DirectShowException">Failed to get the current image.</exception>
public Bitmap GetCurrentImage();

/// <summary>
/// Gets the unstretched video size.
/// </summary>
public Size VideoSize { get; }

/// <summary>
/// Stops a capture.
/// </summary>
/// <exception cref="InvalidOperationException">The control is not capturing a video stream.</exception>
/// <exception cref="DirectShowException">Failed to stop a video capture graph.</exception>
public void StopCapture();

Usage

Open the Package Manager Console and add a nuget package to your project:

PowerShell
Install-Package WebEye.Controls.WinForms.WebCameraControl

First, we need to add the control to the Visual Studio Designer Toolbox, using a right-click and then the "Choose Items..." menu item. Then we place the control on a form at desired location and with desired size. The default name of the control instance variable will be webCameraControl1.

Then, on run-time stage, we need to get a list of web cameras available on the system.

C#
List<WebCameraId> cameras = new List<WebCameraId>(webCameraControl1.GetVideoCaptureDevices());

The following code starts a capture from the first camera in the list.

C#
webCameraControl1.StartCapture(cameras[0]); 

Please note that the control's window has to be created in order to start a capture, otherwise you will get an exception due to the fact that there is no output pin for the video stream. The common mistake is to start a capture in the Form.Load event handler, when the control's window have not yet been created.

To get an image being captured just call the GetCurrentImage() method. The resolution and quality of the image depend on your camera device characteristics.

C#
Bitmap image = webCameraControl1.GetCurrentImage();

To stop the capture the StopCapture() method is used.

C#
webCameraControl1.StopCapture();

You can always ask the capture state using the following code.

C#
if (webCameraControl1.IsCapturing)
{
    webCameraControl1.StopCapture();
}

To start the capture from another web camera just call the StartCapture method again.

C#
webCameraControl1.StartCapture(cameras[1]);

To report errors, exceptions are used, so do not forget to wrap your code in a try/catch block. That is all about using it. To see the complete example please check the demo application sources.

WPF Version

In WPF user controls do not have a WinAPI window handle (HWND) associated with them and this is a problem, because the DirectShow framework requires a window handle in order to output the video stream. The VideoWindow class has been introduced to workaround this problem.

XML
<UserControl x:Class="WebCamera.WebCameraControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300"
             xmlns:local="clr-namespace:WebCamera">
    <local:VideoWindow x:Name="_videoWindow" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
</UserControl>

To add a WPF version of the control to your project use the following nuget command:

PowerShell
Install-Package WebEye.Controls.Wpf.WebCameraControl

GitHub

The project has a GitHub repository available on the following page.

https://github.com/jacobbo/WebEye

Any questions, remarks, and comments are welcome.

History 

  • November 5, 2017 - Replaced VMR9 with VMR7 to extend a range of supported configurations.
  • February 29, 2016 - Added a nuget package.
  • April 10, 2015 - Added the x64 platform support.
  • October 24, 2012 - Added a GitHub repository.
  • September 12, 2012 - The demo apps are updated to report exceptions.
  • September 9, 2012 - The WPF version of the control plus demo application.
  • February 19, 2012 - Updated demo code and documentation.
  • February 15, 2012 - The initial version.  

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Russian Federation Russian Federation
Niko Bellic (Serbian: Niko Belić) is the main protagonist and playable character in the video game Grand Theft Auto IV. He is a 30 year old former soldier who moved to Liberty City to escape his troubled past and pursue the American Dream.

Comments and Discussions

 
QuestionThank you! Take a look at a similar control with a bit more functionality - Camera_Net Library Pin
free5lot29-Dec-13 21:33
free5lot29-Dec-13 21:33 
BugMemory issue Pin
pasquyonline11-Jul-13 5:00
pasquyonline11-Jul-13 5:00 
GeneralRe: Memory issue Pin
Sasha Yakobchuk11-Jul-13 7:32
Sasha Yakobchuk11-Jul-13 7:32 
GeneralRe: Memory issue Pin
pasquyonline11-Jul-13 21:09
pasquyonline11-Jul-13 21:09 
GeneralRe: Memory issue Pin
Sasha Yakobchuk12-Jul-13 7:27
Sasha Yakobchuk12-Jul-13 7:27 
QuestionAWESOME! Pin
Gichumz8-Jul-13 4:56
Gichumz8-Jul-13 4:56 
AnswerRe: AWESOME! Pin
Sasha Yakobchuk9-Jul-13 0:44
Sasha Yakobchuk9-Jul-13 0:44 
GeneralRe: AWESOME! Pin
Gichumz15-Jul-13 2:49
Gichumz15-Jul-13 2:49 
I have done it Smile | :)
GeneralRe: AWESOME! Pin
Sasha Yakobchuk15-Jul-13 3:34
Sasha Yakobchuk15-Jul-13 3:34 
GeneralRe: AWESOME! Pin
mikesvile18-Aug-13 5:37
mikesvile18-Aug-13 5:37 
GeneralMy vote of 5 Pin
Meghna_Patel14-Jun-13 6:19
Meghna_Patel14-Jun-13 6:19 
QuestionASP.Net C# Tablet Web Camera Control Pin
Member 32242962-May-13 15:23
Member 32242962-May-13 15:23 
QuestionI need it support with Win64Bit Pin
tithsochinda27-Mar-13 17:43
tithsochinda27-Mar-13 17:43 
QuestionSvideo input Pin
ruddygonzalez18-Mar-13 10:18
ruddygonzalez18-Mar-13 10:18 
AnswerRe: Svideo input Pin
Sasha Yakobchuk18-Mar-13 22:41
Sasha Yakobchuk18-Mar-13 22:41 
GeneralMy vote of 5 Pin
Paga Cession14-Mar-13 8:00
Paga Cession14-Mar-13 8:00 
QuestionCodec Pin
Coffeephile2-Jan-13 14:33
Coffeephile2-Jan-13 14:33 
AnswerRe: Codec Pin
Sasha Yakobchuk13-Feb-13 22:27
Sasha Yakobchuk13-Feb-13 22:27 
GeneralMy vote of 5 Pin
juergen196929-Oct-12 22:18
juergen196929-Oct-12 22:18 
GeneralRe: My vote of 5 Pin
Sasha Yakobchuk30-Oct-12 8:19
Sasha Yakobchuk30-Oct-12 8:19 
GeneralMy vote of 5 Pin
gaga blues24-Oct-12 2:43
gaga blues24-Oct-12 2:43 
BugException Pin
AbhishekBihani15-Oct-12 20:19
AbhishekBihani15-Oct-12 20:19 
GeneralRe: Exception Pin
Sasha Yakobchuk15-Oct-12 20:31
Sasha Yakobchuk15-Oct-12 20:31 
GeneralRe: Exception Pin
AbhishekBihani16-Oct-12 0:11
AbhishekBihani16-Oct-12 0:11 
GeneralRe: Exception Pin
AbhishekBihani16-Oct-12 0:19
AbhishekBihani16-Oct-12 0:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.