Help and parsing command line were updated in next samples: camshiftdemo, calibration_artificial

This commit is contained in:
itsyplen
2011-06-09 08:37:39 +00:00
parent cfb8c8418b
commit a1ee9d406e
2 changed files with 29 additions and 25 deletions

View File

@@ -11,11 +11,11 @@ using namespace cv;
using namespace std;
void help()
{
cout << "\nThis code generates an artificial camera and artificial chessboard images,\n"
<< "and then calibrates. It is basically test code for calibration that shows\n"
<< "how to package calibration points and then calibrate the camera.\n"
<< "Call:\n"
<< "./calibration_artificial\n" << endl;
printf( "\nThis code generates an artificial camera and artificial chessboard images,\n"
"and then calibrates. It is basically test code for calibration that shows\n"
"how to package calibration points and then calibrate the camera.\n"
"Usage:\n"
"./calibration_artificial\n\n");
}
namespace cv
{