When we use AdaBoost for object detection we need to set TPR and FPR for each stage (iteration of AdaBoost).
We need high TPR and low FPR.
As I understand as a result we have:
total TPR = (stage1 TPR)(stage2 TPR)...(stageN TPR)
for example 0.9*0.9*0.9~=0.729
total FPR = (stage1 FPR)(stage2 FPR)...(stageN FPR)
and same for FPR 0.5*0.5*0.5= 0.125
So the more stages you use the lower FPR you get, but TPR also decrease.
So why not to use stage TPR = 0.9999(9) and FPR = 0.00001 at each stage and have small number of stages?
How TPR and FPR at each stage must be choosed? How it dependes on number of stages?