Click here to Skip to main content
15,887,376 members
Articles / Silverlight / Silverlight4

Silverlight 4 – Webcam Support

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
25 Nov 2010CPOL2 min read 13.4K   3   2
Silverlight 4 - Webcam support

Silverlight 4 is now not only more mature but also came with rich features. Most of these features were recommendations from the Silverlight community.

Webcam support is one of them. This was a very highly requested feature and has now been included in this version.

The following steps will get you up and running for the initial adventure.

Steps

Step 1

The first step is to get all the available capture devices (webcams, microphones, etc.) or default capture device on the system. So CaptureDeviceConfiguration class helps us to obtain information about all available devices. This helper class exposes a number of static members for this purpose.

  • CaptureDeviceConfiguration.GetAvailableVideoCaptureDevices()
    • Returns a collection of video devices on the system
  • CaptureDeviceConfiguration.GetAvailableAudioCaptureDevices()
    • All the audio devices
  • CaptureDeviceConfiguration.GetDefaultAudioCaptureDevice()
    • Default audio device
  • CaptureDeviceConfiguration.GetDefaultVideoCaptureDevice()
    • Default video device

So after the first step, we got the device.

Step 2

Before any interaction with the device, Silverlight application needs permission from the user (The user must grant permission in the security prompt and that way, it ensures the call is safe).

  • CaptureDeviceConfiguration.RequestDeviceAccess() :

    To request access, call this static method in response to user initiated event like listbox item selection, button click, etc. If your application automates this call without user interaction (i.e., Load event) the method will return false and further action by application will throw an InvalidOperationException.

Okay, application got the permission. Let's proceed to the next step.

Step 3

Now we have permission and device handy. It’s time for the application to interact with the device using CaptureSource class. This class allows you to collect the video feed from the camera. To make this happen, create a CaptureSource object and set the VideoCaptureDevice to the selected device. With the help of CaptureSource, the application is now capable of performing the following task on the devices:

  • Start
  • Stop
  • State of the device
  • Capturing single video frame

Step 4

Now create a video brush. A VideoBrush gives us the ability to paint any area or controls with video content. At this stage, we use CaptureSource as a source of our brush.

Step 5

The next thing we need to do is to call CaptureSource.Start() method to begin capturing our live video.

Step 6

Finally, we’ll set the Fill property of a Rectangle object to this brush.

Simple Application

Now, we will code a very simple application:

  1. Create a Silverlight application and open the MainPage.xaml.
  2. Add one rectangle (for display purpose) and two buttons (start and stop).
    XML
    <Grid x:Name="LayoutRoot" Background="White">
        <StackPanel Name="mainStackpanel">
            <Rectangle Height="256" 
            Name="myDisplay" Stroke="Black" 
                StrokeThickness="1" Width="584" />
            <StackPanel Name="subStackpanel" Orientation="Horizontal" 
                HorizontalAlignment="Center">
                <Button x:Name="butStart" 
                Content="Start" Click="butStart_Click"/>
                <Button x:Name="butStop" 
                Content="Stop" Click="butStop_Click" />
            </StackPanel>
        </StackPanel>
    </Grid>
  3. Code behind as follows:
    C#
    public partial class MainPage : UserControl
       {
           CaptureSource captureSourec;
    
           public MainPage()
           {
               InitializeComponent();
           }
    
           private void butStart_Click(object sender, RoutedEventArgs e)
           {
               //Get the default video device
               VideoCaptureDevice myWebcam =
                   CaptureDeviceConfiguration.GetDefaultVideoCaptureDevice();
    
               //Grant permission
               if (CaptureDeviceConfiguration.AllowedDeviceAccess ||
                                      CaptureDeviceConfiguration.RequestDeviceAccess())
               {
    
                   captureSourec = new CaptureSource();
                   captureSourec.VideoCaptureDevice  = myWebcam;
    
                   //Create video brush that will get feed from captureSourec
                   VideoBrush myBrush = new VideoBrush();
                   myBrush.SetSource(captureSourec);
                   myBrush.Stretch = Stretch.UniformToFill;
    
                   //Stat the web cam
                   captureSourec.Start();
    
                   //Now display through the Rectangle
                   myDisplay.Fill = myBrush;
    
                }
           }
    
           private void butStop_Click(object sender, RoutedEventArgs e)
           {
               if (captureSourec != null)
               {
                   captureSourec.Stop();
               }
           }
       }
    

License

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


Written By
Software Developer (Senior) Lavender
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralVideo chat Pin
selim al hasan1-Jan-11 20:56
selim al hasan1-Jan-11 20:56 
GeneralI think Pin
thatraja27-Nov-10 21:44
professionalthatraja27-Nov-10 21:44 

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.