What is the difference between Stump-based and Tree-based frontal face detector?

asked 2016-06-14 04:58:30 -0600

arcticworker gravatar image

In the Opencv there are some haar cascades:

  • haarcascade_frontalface_alt.xml - Stump-based 20x20 gentle adaboost frontal face detector. Created by Rainer Lienhart.
  • haarcascade_frontalface_alt2.xml - Tree-based 20x20 gentle adaboost frontal face detector. Created by Rainer Lienhart.

What is the difference between Stump-based and Tree-based frontal face detector? Inipractice, they give very similar results.

edit retag flag offensive close merge delete

Comments

as far as i know,in case of a tree-based classifier several features are combined together to form a decision tree with the -maxDepth parameter to create a single feature.

can gravatar imagecan ( 2016-06-14 08:56:09 -0600 )edit