Perform live video stream processing from CaptureElement & MediaCapture
In my Windows 8 Store Application, I tend to perform live video stream processing (Face detection for example). Technique 1 In my previous Windows 7 application, I was able to use the following technique ( Camera Face Detection in C# Using Emgu CV (OpenCV in .NET) and WPF ) to perform live video processing. The technique was, having a fixed period timer callback, to actively query image buffer from camera object . void timer_Tick(object sender, EventArgs e) { Image<Bgr,Byte> currentFrame = capture.QueryFrame(); // Perform image processing based on currentFrame Technique 2 Another technique I