In the section of attentional cascade they have discussed a basic 2 feature strong classifier. While discussing the computation of this weak classifier they required
- Evaluate the rectangle features (requires between 6 and 9 array references per feature).
- Compute the weak classifier for each feature (requires one threshold operation per feature).
- Combine the weak classifiers (requires one multiply per feature, an addition, and finally a threshold).
My question is where do we require the multiplication. I supposed that the result of each weak classifier function h(t) is either 1 or 0. So we either multiply alpha with a 1 or a 0 which is decision rather multiplication.
Or may be I am not exactly getting the algorithm
Thanks