doc output

This commit is contained in:
Gary Bradski 2010-12-03 19:55:30 +00:00
parent 6a15ff8d13
commit 31d0358fb2

View File

@ -1,8 +1,15 @@
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace cv;
void help()
{
std::cout
<< "\nThis program demonstrates OpenCV drawing and text output functions\n"
"Call:\n"
"./drawing\n" << std::endl;
}
static Scalar randomColor(RNG& rng)
{
int icolor = (unsigned)rng;