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,
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.