A
Anna Smidt
About logprintf syntax: I am not sure if I understand it correctly:
logprintf("\n[nTotalImages %d nGoodImages %d "
"Mean times: FaceDet %.3f AsmSearch %.3f Both %.3f secs]\n",
nTotalImages, nGoodImages,
TotalDetTime / nGoodImages, TotalAsmTime / nGoodImages,
MeanTime);
My ideas:
\n stands for "new line", yes?
..3f stands for a a number with 3 decimal places, yes?
and the % which occurs 5 times in the sample above stands for 5
variables which can be found in the second argument of logprintf, yes?
Anna
logprintf("\n[nTotalImages %d nGoodImages %d "
"Mean times: FaceDet %.3f AsmSearch %.3f Both %.3f secs]\n",
nTotalImages, nGoodImages,
TotalDetTime / nGoodImages, TotalAsmTime / nGoodImages,
MeanTime);
My ideas:
\n stands for "new line", yes?
..3f stands for a a number with 3 decimal places, yes?
and the % which occurs 5 times in the sample above stands for 5
variables which can be found in the second argument of logprintf, yes?
Anna