The samples were updated corresponding a single standart for <help>

This commit is contained in:
Kirill Kornyakov
2011-06-03 14:53:38 +00:00
parent 262fc33024
commit 09a7a40478
12 changed files with 81 additions and 59 deletions

View File

@@ -19,12 +19,14 @@ using namespace cv;
void help()
{
printf( "This program demonstrated the use of the SURF Detector and Descriptor using\n"
printf( "\n This program demonstrated the use of the SURF Detector and Descriptor using\n"
"either FLANN (fast approx nearst neighbor classification) or brute force matching\n"
"on planar objects.\n"
"Usage :\n"
"Usage: \n"
"./find_obj [--object_filename]=<object_filename, box.png as default> \n"
" [--scene_filename]=<scene_filename box_in_scene.png as default>]\n\n"
" [--scene_filename]=<scene_filename box_in_scene.png as default>] \n"
"Example: \n"
"./find_obj --object_filename =box.png --scene_filename = box_in_scene.png \n\n"
);
}