pull/13383/head
Gary Bradski 14 years ago
parent 6a15ff8d13
commit 31d0358fb2
  1. 9
      samples/cpp/drawing.cpp

@ -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;

Loading…
Cancel
Save