Ask Your Question

Revision history [back]

As @Witek already described, packages like doppia, created by rodrigo benenson are quite powerfull and will meet your real time requirements. However, if you want another approach, based on picture by picture analysis, these are the techniques that openCV supports.

  1. Cascade classification based on the AdaBoost principle using the Viola & Jones framework. Click here for more information. This can be done with HAAR, LBP and HOG features.
  2. You can use the Histogram Of Oriented Gradient approach created by Dallal & Triggs, which is explained right here. It combines HOG descriptors and SVM classification.
  3. The part based modeling has an early implementation in OpenCV called LatentSVM of which documentation is found here(http://docs.opencv.org/modules/objdetect/doc/latent_svm.html?highlight=hog).
  4. With a static background you could use efficient background subtraction using Gaussian Mixture Models to improve the detection results.

Start reading and experimenting!