2

I am looking to detect faces in real time video captured from laptop camera. I use MATLAB R2011a (not the latest one) which does not have any Cascade Object Classifier function to identify face detection.

I have used a package http://www.mathworks.in/matlabcentral/fileexchange/29437-viola-jones-object-detection

This code is able to identify modestly on images but when I do the same on video's (taking each frame and identify face in it) its taking lots of time and thus not able to stream video.

So,

  1. How should I able to detect faces real time using MATLAB R2011a
  2. Is viola & jones algorithm suitable for it?
  3. Are there any external implementations that I can use?
Iamcool
  • 1,387
  • 2
  • 12
  • 24

2 Answers2

0

A more recent and updated approach than Viola and Jones's detector is SURF cascade. It should run faster with better results.
I also think there is an implementation of this method for windows platforms here.

Shai
  • 111,146
  • 38
  • 238
  • 371
  • 1
    @lamcool you'll have to get your hands a little dirty if you want something real-time that actually works... – Shai Feb 03 '14 at 10:19
0

First you have to install matlab version R2012b or onward because VIOLA JONES algo is released in 2012 and prvious versions before R2012a cant run this Algorithem .... so u should first change the version and then the real time detection code is on every site.....