Commit 752c4bc4 authored by Gary Bradski's avatar Gary Bradski

doc what cvout_sample does

parent 865b3ea5
/*
*
* cvout_sample just demonstrates the serial out capabilities of cv::Mat
* That is, cv::Mat M(...); cout << M; Now works.
*
*/
#include "opencv2/core/core.hpp"
#include <iostream>
using namespace std;
using namespace cv;
void help()
{
// printf("foo\n");
cout << "foo" << endl;
}
int main(int,char**)
{
help();
Mat i = Mat::eye(4, 4, CV_64F);
i.at<double>(1,1) = CV_PI;
cout << "i = " << i << ";" << 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