Commit 31d0358f authored by Gary Bradski's avatar Gary Bradski

doc output

parent 6a15ff8d
#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;
......
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