0001 function display(lb)
0002
0003
0004 disp('Logit AdaBooster Classifier');
0005 if isnan(lb.F),
0006 disp(' classifier is not trained');
0007 else
0008 disp(' classifier is trained, the learnt paramters are:\n');
0009 if isnan(lb.detectionRate)
0010 fprintf('\tNo target detection rate was specified\n');
0011 else
0012 fprintf('\tTarget detection rate = %f\n', lb.detectionRate);
0013 end
0014 fprintf('\tThreshold = %f\n', lb.thresh);
0015 fprintf('\tNumber of stages = %d\n', length(lb.nStages));
0016
0017 end