drawing.cpp 4.99 KB
Newer Older
1 2 3
#include "opencv2/core.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/highgui.hpp"
4
#include <stdio.h>
5 6
using namespace cv;

7
static void help()
Gary Bradski's avatar
Gary Bradski committed
8
{
9 10 11
    printf("\nThis program demonstrates OpenCV drawing and text output functions.\n"
    "Usage:\n"
    "   ./drawing\n");
Gary Bradski's avatar
Gary Bradski committed
12
}
13 14 15 16 17 18
static Scalar randomColor(RNG& rng)
{
    int icolor = (unsigned)rng;
    return Scalar(icolor&255, (icolor>>8)&255, (icolor>>16)&255);
}

19
int main()
20
{
21
    help();
22
    char wndname[] = "Drawing Demo";
23 24
    const int NUMBER = 100;
    const int DELAY = 5;
25
    int lineType = LINE_AA; // change it to LINE_8 to see non-antialiased graphics
26 27
    int i, width = 1000, height = 700;
    int x1 = -width/2, x2 = width*3/2, y1 = -height/2, y2 = height*3/2;
28
    RNG rng(0xFFFFFFFF);
29 30 31 32 33 34 35 36 37 38 39 40 41 42

    Mat image = Mat::zeros(height, width, CV_8UC3);
    imshow(wndname, image);
    waitKey(DELAY);

    for (i = 0; i < NUMBER; i++)
    {
        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);

        line( image, pt1, pt2, randomColor(rng), rng.uniform(1,10), lineType );
43

44 45 46 47 48 49 50 51 52 53 54 55 56
        imshow(wndname, image);
        if(waitKey(DELAY) >= 0)
            return 0;
    }

    for (i = 0; i < NUMBER; i++)
    {
        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);
57

58
        rectangle( image, pt1, pt2, randomColor(rng), MAX(thickness, -1), lineType );
59

60 61 62 63
        imshow(wndname, image);
        if(waitKey(DELAY) >= 0)
            return 0;
    }
64

65 66 67 68 69 70 71 72 73 74 75 76
    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 );
77

78 79 80 81 82 83 84 85 86 87
        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);
88 89
        pt[0][1].x = rng.uniform(x1, x2);
        pt[0][1].y = rng.uniform(y1, y2);
90 91
        pt[0][2].x = rng.uniform(x1, x2);
        pt[0][2].y = rng.uniform(y1, y2);
92
        pt[1][0].x = rng.uniform(x1, x2);
93
        pt[1][0].y = rng.uniform(y1, y2);
94
        pt[1][1].x = rng.uniform(x1, x2);
95
        pt[1][1].y = rng.uniform(y1, y2);
96
        pt[1][2].x = rng.uniform(x1, x2);
97 98 99
        pt[1][2].y = rng.uniform(y1, y2);
        const Point* ppt[2] = {pt[0], pt[1]};
        int npt[] = {3, 3};
100

101
        polylines(image, ppt, npt, 2, true, randomColor(rng), rng.uniform(1,10), lineType);
102

103 104 105 106
        imshow(wndname, image);
        if(waitKey(DELAY) >= 0)
            return 0;
    }
107

108 109 110 111 112
    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);
113 114
        pt[0][1].x = rng.uniform(x1, x2);
        pt[0][1].y = rng.uniform(y1, y2);
115 116
        pt[0][2].x = rng.uniform(x1, x2);
        pt[0][2].y = rng.uniform(y1, y2);
117
        pt[1][0].x = rng.uniform(x1, x2);
118
        pt[1][0].y = rng.uniform(y1, y2);
119
        pt[1][1].x = rng.uniform(x1, x2);
120
        pt[1][1].y = rng.uniform(y1, y2);
121
        pt[1][2].x = rng.uniform(x1, x2);
122 123 124
        pt[1][2].y = rng.uniform(y1, y2);
        const Point* ppt[2] = {pt[0], pt[1]};
        int npt[] = {3, 3};
125

126
        fillPoly(image, ppt, npt, 2, randomColor(rng), lineType);
127

128 129 130 131 132 133 134 135 136 137
        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);
138

139 140
        circle(image, center, rng.uniform(0, 300), randomColor(rng),
               rng.uniform(-1, 9), lineType);
141

142 143 144 145 146 147 148 149 150 151 152 153 154
        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);
155

156 157 158 159 160
        imshow(wndname, image);
        if(waitKey(DELAY) >= 0)
            return 0;
    }

161
    Size textsize = getTextSize("OpenCV forever!", FONT_HERSHEY_COMPLEX, 3, 5, 0);
162
    Point org((width - textsize.width)/2, (height - textsize.height)/2);
163

164 165 166 167
    Mat image2;
    for( i = 0; i < 255; i += 2 )
    {
        image2 = image - Scalar::all(i);
168
        putText(image2, "OpenCV forever!", org, FONT_HERSHEY_COMPLEX, 3,
169
                Scalar(i, i, 255), 5, lineType);
170

171 172 173 174 175 176 177 178 179 180 181 182
        imshow(wndname, image2);
        if(waitKey(DELAY) >= 0)
            return 0;
    }

    waitKey();
    return 0;
}

#ifdef _EiC
main(1,"drawing.c");
#endif