Adv

Posted by : Adhi Rohmantoro Sabtu, 16 April 2011

Im sorry ,im repost from my brother BLOG
Hi there, this is a new tutorial category in my blog. It's Computer Vision. In this chance, I'd like to show you something cool. It's how to perform Face Detection using your camera / Webcam. You'll see how your application can detect faces from a captured image. Curious about it? Let's take a look how to do that.
This what you need to follow this tutorial:
  1. Microsoft Visual Studio 2010. Or if you don't have one, you can use 2008 version
  2. Emgu CV (OpenCV in .NET). You can download the latest version in this link: http://www.emgu.com/wiki/index.php/Main_Page and follow the installation instruction
  3. Basic Knowledge of C# Programming
  4. Familiar in WPF Development
After you've got what you need, it's time to rock!

1. First thing you should do is installing Emgu CV. Your installation path should be like C:\Emgu\emgucv-windows-x86 2.2.1.1150. And you can see inside C:\Emgu\emgucv-windows-x86 2.2.1.1150\bin some DLLs and sample programs. You can see a simple face detection app Example.FaceDetection.exe

2. Next, let's open your Visual Studio and create a new WPF Project. Add some references and make sure it'll look like the picture below:



3. Now, copy code below to make our user experience. Put this code in your MainWindow.xaml file

?
MainWindow.xaml
1
2
3
4
5
6
7
8
<Window x:Class="WpfFaceDetectionTest.MainWindow"
        Title="MainWindow" Height="600" Width="800" Loaded="Window_Loaded">
    <Grid>
        <Image Name="image1" Stretch="Fill" />
    </Grid>
</Window>

4. Next, let's code it! Open your MainWindow.xaml.cs and add this code on top
?
MainWindows.xaml.cs
1
2
3
4
5
6
7
8
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media.Imaging;
using System.Windows.Threading;
using Emgu.CV.Structure;
using Emgu.CV;
using System.Runtime.InteropServices;
5. Initialize two objects Capture and HaarCascade. Those are important class in this tutorial, so you have to make it. And we also need DispatcherTimer to capture the picture every millisecond.
?
MainWindow.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
private Capture capture;
private HaarCascade haarCascade;
DispatcherTimer timer;
public MainWindow()
{
    InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
    capture = new Capture();
    haarCascade = new HaarCascade(@"haarcascade_frontalface_alt_tree.xml");
    timer = new DispatcherTimer();
    timer.Tick += new EventHandler(timer_Tick);
    timer.Interval = new TimeSpan(0, 0, 0, 0, 1);
    timer.Start();
}

6. This last part is the routine. What this code will do is capture image every millisecond, and then convert it to gray frame. After converted, faces will be detected. Each detected faces will be marked by black rectangular.
?
MainWindow.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
void timer_Tick(object sender, EventArgs e)
{
    Image<Bgr,Byte> currentFrame = capture.QueryFrame();
    if (currentFrame != null)
    {
        Image<Gray, Byte> grayFrame = currentFrame.Convert<Gray, Byte>();
             
        var detectedFaces = grayFrame.DetectHaarCascade(haarCascade)[0];
             
        foreach (var face in detectedFaces)
            currentFrame.Draw(face.rect, new Bgr(0, double.MaxValue, 0), 3);
             
        image1.Source = ToBitmapSource(currentFrame);
    }
     
}
7. Finally, this additional code is needed to convert plain Bitmap Class to BitmapSource so WPF can read it as an image and view it on image1
?
MainWindow.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[DllImport("gdi32")]
private static extern int DeleteObject(IntPtr o);
public static BitmapSource ToBitmapSource(IImage image)
{
    using (System.Drawing.Bitmap source = image.Bitmap)
    {
        IntPtr ptr = source.GetHbitmap(); //obtain the Hbitmap
        BitmapSource bs = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
            ptr,
            IntPtr.Zero,
            Int32Rect.Empty,
            System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions());
        DeleteObject(ptr); //release the HBitmap
        return bs;
    }
}

8. Here is the result of our work:Single Face Detected
Two Faces Detected



Okay, I think that's all I can do in this post. See you to my next post. Keep blogging and fighting ^^

Note: If you can't run your project, just build it and make sure all opencv_xxxx.dll files and haarcascade_frontalface_alt_tree.xml in the same directory with your executable file. You can find those files inside C:\Emgu\emgucv-windows-x86 2.2.1.1150\bin

P.S.: You can download this tutorial Project Files in my repository http://code.google.com/p/junianre/source/browse/#svn%2Ftrunk%2Fcsharp%2FWpfFaceDetectionTest

References:
http://friism.com/webcam-face-detection-in-c-using-emgu-cv
http://www.emgu.com/wiki/index.php/Main_Page

Leave a Reply

Subscribe to Posts | Subscribe to Comments

Total Pageviews

Ads

- Copyright © Its My Blog But Your Info -Metrominimalist- Powered by Blogger - Designed by Johanes Djogan -