Updated version number and about string to say that you can now ctrl+left click

to change the label for a rectangle.
This commit is contained in:
Davis King 2014-02-10 20:40:24 -05:00
parent fe03decb10
commit 374d5253f8
2 changed files with 4 additions and 3 deletions

View File

@ -17,7 +17,7 @@
#include <dlib/dir_nav.h> #include <dlib/dir_nav.h>
const char* VERSION = "0.7"; const char* VERSION = "0.8";

View File

@ -440,8 +440,9 @@ display_about(
"command line. An example would be '--parts \"leye reye nose mouth\"'." "command line. An example would be '--parts \"leye reye nose mouth\"'."
,0,0) << endl << endl; ,0,0) << endl << endl;
sout << wrap_string("Finally, hold ctrl and scroll the mouse wheel to zoom while normal left click " sout << wrap_string("Additionally, you can hold ctrl and then scroll the mouse wheel to zoom. A normal left click "
"and drag allows you to navigate around the image.",0,0) << endl; "and drag allows you to navigate around the image. Finally, holding ctrl and "
"left clicking a rectangle will give it the label from the Next Label field.",0,0) << endl;
message_box("About Image Labeler",sout.str()); message_box("About Image Labeler",sout.str());
} }