Commit 4ba9f1d7 authored by Gary Bradski's avatar Gary Bradski

Explaining the << cv::Mat out capabilities

parent 1f9171d1
...@@ -13,8 +13,15 @@ using namespace cv; ...@@ -13,8 +13,15 @@ using namespace cv;
void help() void help()
{ {
// printf("foo\n"); cout
cout << "foo" << endl; << "\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;
} }
......
Markdown is supported
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