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,
- How should I able to detect faces real time using MATLAB R2011a
- Is viola & jones algorithm suitable for it?
- Are there any external implementations that I can use?