Explaining the << cv::Mat out capabilities

This commit is contained in:
Gary Bradski 2010-11-24 06:10:07 +00:00
parent 1f9171d10a
commit 4ba9f1d7d1

View File

@ -13,8 +13,15 @@ using namespace cv;
void help()
{
// printf("foo\n");
cout << "foo" << endl;
cout
<< "\n------------------------------------------------------------------\n"
<< "This program shows the serial out capabilities of cv::Mat\n"
<< "That is, cv::Mat M(...); cout << M; Now works.\n"
<< "Output can be formated to OpenCV, python, numpy, csv and C styles"
<< "Usage:\n"
<< "./cvout_sample\n"
<< "------------------------------------------------------------------\n\n"
<< endl;
}