Commit ca1f5856 authored by Emmanuel Bertin's avatar Emmanuel Bertin
Browse files

Improved online display.

parent 7f3c6c33
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* Contents: Command-line parsing. * Contents: Command-line parsing.
* *
* Last modify: 12/11/2008 * Last modify: 29/05/2009
* *
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% *%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/ */
...@@ -130,7 +130,9 @@ int main(int argc, char *argv[]) ...@@ -130,7 +130,9 @@ int main(int argc, char *argv[])
endprefs(); endprefs();
NFPRINTF(OUTPUT, ""); NFPRINTF(OUTPUT, "");
NPRINTF(OUTPUT, "> All done (in %.0f s)\n", prefs.time_diff); NPRINTF(OUTPUT, "> All done (in %.0f s: %.1f detections/s)\n",
prefs.time_diff,
(double)thecat.ntotal/(prefs.time_diff>0.0? prefs.time_diff : 1.0));
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment