opencv/samples/cpp/drawing.cpp

190 lines
5.3 KiB
C++
Raw Normal View History

#include "opencv2/core.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/highgui.hpp"
2011-08-11 14:46:09 +08:00
#include <stdio.h>
2017-07-26 13:39:53 +08:00
2010-11-28 07:15:16 +08:00
using namespace cv;
2012-06-08 01:21:29 +08:00
static void help()
2010-12-04 03:55:30 +08:00
{
2012-06-08 01:21:29 +08:00
printf("\nThis program demonstrates OpenCV drawing and text output functions.\n"
"Usage:\n"
" ./drawing\n");
2010-12-04 03:55:30 +08:00
}
2010-11-28 07:15:16 +08:00
static Scalar randomColor(RNG& rng)
{
int icolor = (unsigned)rng;
return Scalar(icolor&255, (icolor>>8)&255, (icolor>>16)&255);
}
2017-07-26 13:39:53 +08:00
int main()
2010-11-28 07:15:16 +08:00
{
2017-07-26 13:39:53 +08:00
help();
2012-06-08 01:21:29 +08:00
char wndname[] = "Drawing Demo";
2010-11-28 07:15:16 +08:00
const int NUMBER = 100;
const int DELAY = 5;
int lineType = LINE_AA; // change it to LINE_8 to see non-antialiased graphics
2010-11-28 07:15:16 +08:00
int i, width = 1000, height = 700;
int x1 = -width/2, x2 = width*3/2, y1 = -height/2, y2 = height*3/2;
RNG rng(0xFFFFFFFF);
2010-11-28 07:15:16 +08:00
Mat image = Mat::zeros(height, width, CV_8UC3);
imshow(wndname, image);
waitKey(DELAY);
2017-07-26 13:39:53 +08:00
for (i = 0; i < NUMBER * 2; i++)
2010-11-28 07:15:16 +08:00
{
Point pt1, pt2;
pt1.x = rng.uniform(x1, x2);
pt1.y = rng.uniform(y1, y2);
pt2.x = rng.uniform(x1, x2);
pt2.y = rng.uniform(y1, y2);
2017-07-26 13:39:53 +08:00
int arrowed = rng.uniform(0, 6);
if( arrowed < 3 )
line( image, pt1, pt2, randomColor(rng), rng.uniform(1,10), lineType );
else
arrowedLine(image, pt1, pt2, randomColor(rng), rng.uniform(1, 10), lineType);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
imshow(wndname, image);
if(waitKey(DELAY) >= 0)
return 0;
}
2017-07-26 13:39:53 +08:00
for (i = 0; i < NUMBER * 2; i++)
2010-11-28 07:15:16 +08:00
{
Point pt1, pt2;
pt1.x = rng.uniform(x1, x2);
pt1.y = rng.uniform(y1, y2);
pt2.x = rng.uniform(x1, x2);
pt2.y = rng.uniform(y1, y2);
int thickness = rng.uniform(-3, 10);
2017-07-26 13:39:53 +08:00
int marker = rng.uniform(0, 10);
int marker_size = rng.uniform(30, 80);
2012-06-08 01:21:29 +08:00
2017-07-26 13:39:53 +08:00
if (marker > 5)
rectangle(image, pt1, pt2, randomColor(rng), MAX(thickness, -1), lineType);
else
drawMarker(image, pt1, randomColor(rng), marker, marker_size );
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
imshow(wndname, image);
if(waitKey(DELAY) >= 0)
return 0;
}
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
for (i = 0; i < NUMBER; i++)
{
Point center;
center.x = rng.uniform(x1, x2);
center.y = rng.uniform(y1, y2);
Size axes;
axes.width = rng.uniform(0, 200);
axes.height = rng.uniform(0, 200);
double angle = rng.uniform(0, 180);
ellipse( image, center, axes, angle, angle - 100, angle + 200,
randomColor(rng), rng.uniform(-1,9), lineType );
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
imshow(wndname, image);
if(waitKey(DELAY) >= 0)
return 0;
}
for (i = 0; i< NUMBER; i++)
{
Point pt[2][3];
pt[0][0].x = rng.uniform(x1, x2);
pt[0][0].y = rng.uniform(y1, y2);
2012-06-08 01:21:29 +08:00
pt[0][1].x = rng.uniform(x1, x2);
pt[0][1].y = rng.uniform(y1, y2);
2010-11-28 07:15:16 +08:00
pt[0][2].x = rng.uniform(x1, x2);
pt[0][2].y = rng.uniform(y1, y2);
2012-06-08 01:21:29 +08:00
pt[1][0].x = rng.uniform(x1, x2);
2010-11-28 07:15:16 +08:00
pt[1][0].y = rng.uniform(y1, y2);
2012-06-08 01:21:29 +08:00
pt[1][1].x = rng.uniform(x1, x2);
2010-11-28 07:15:16 +08:00
pt[1][1].y = rng.uniform(y1, y2);
2012-06-08 01:21:29 +08:00
pt[1][2].x = rng.uniform(x1, x2);
2010-11-28 07:15:16 +08:00
pt[1][2].y = rng.uniform(y1, y2);
const Point* ppt[2] = {pt[0], pt[1]};
int npt[] = {3, 3};
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
polylines(image, ppt, npt, 2, true, randomColor(rng), rng.uniform(1,10), lineType);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
imshow(wndname, image);
if(waitKey(DELAY) >= 0)
return 0;
}
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
for (i = 0; i< NUMBER; i++)
{
Point pt[2][3];
pt[0][0].x = rng.uniform(x1, x2);
pt[0][0].y = rng.uniform(y1, y2);
2012-06-08 01:21:29 +08:00
pt[0][1].x = rng.uniform(x1, x2);
pt[0][1].y = rng.uniform(y1, y2);
2010-11-28 07:15:16 +08:00
pt[0][2].x = rng.uniform(x1, x2);
pt[0][2].y = rng.uniform(y1, y2);
2012-06-08 01:21:29 +08:00
pt[1][0].x = rng.uniform(x1, x2);
2010-11-28 07:15:16 +08:00
pt[1][0].y = rng.uniform(y1, y2);
2012-06-08 01:21:29 +08:00
pt[1][1].x = rng.uniform(x1, x2);
2010-11-28 07:15:16 +08:00
pt[1][1].y = rng.uniform(y1, y2);
2012-06-08 01:21:29 +08:00
pt[1][2].x = rng.uniform(x1, x2);
2010-11-28 07:15:16 +08:00
pt[1][2].y = rng.uniform(y1, y2);
const Point* ppt[2] = {pt[0], pt[1]};
int npt[] = {3, 3};
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
fillPoly(image, ppt, npt, 2, randomColor(rng), lineType);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
imshow(wndname, image);
if(waitKey(DELAY) >= 0)
return 0;
}
for (i = 0; i < NUMBER; i++)
{
Point center;
center.x = rng.uniform(x1, x2);
center.y = rng.uniform(y1, y2);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
circle(image, center, rng.uniform(0, 300), randomColor(rng),
rng.uniform(-1, 9), lineType);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
imshow(wndname, image);
if(waitKey(DELAY) >= 0)
return 0;
}
for (i = 1; i < NUMBER; i++)
{
Point org;
org.x = rng.uniform(x1, x2);
org.y = rng.uniform(y1, y2);
putText(image, "Testing text rendering", org, rng.uniform(0,8),
rng.uniform(0,100)*0.05+0.1, randomColor(rng), rng.uniform(1, 10), lineType);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
imshow(wndname, image);
if(waitKey(DELAY) >= 0)
return 0;
}
Size textsize = getTextSize("OpenCV forever!", FONT_HERSHEY_COMPLEX, 3, 5, 0);
2010-11-28 07:15:16 +08:00
Point org((width - textsize.width)/2, (height - textsize.height)/2);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
Mat image2;
for( i = 0; i < 255; i += 2 )
{
image2 = image - Scalar::all(i);
putText(image2, "OpenCV forever!", org, FONT_HERSHEY_COMPLEX, 3,
2010-11-28 07:15:16 +08:00
Scalar(i, i, 255), 5, lineType);
2012-06-08 01:21:29 +08:00
2010-11-28 07:15:16 +08:00
imshow(wndname, image2);
if(waitKey(DELAY) >= 0)
return 0;
}
waitKey();
return 0;
}