squares.cpp 5.27 KB
Newer Older
1

2
// The "Square Detector" program.
Gary Bradski's avatar
Gary Bradski committed
3
// It loads several images sequentially and tries to find squares in
4 5
// each image

6 7
#include "opencv2/core.hpp"
#include "opencv2/imgproc.hpp"
8
#include "opencv2/imgcodecs.hpp"
9
#include "opencv2/highgui.hpp"
10 11 12 13 14 15

#include <iostream>

using namespace cv;
using namespace std;

16
static void help(const char* programName)
Gary Bradski's avatar
Gary Bradski committed
17
{
18
    cout <<
19 20
    "\nA program using pyramid scaling, Canny, contours and contour simplification\n"
    "to find squares in a list of images (pic1-6.png)\n"
21 22
    "Returns sequence of squares detected on the image.\n"
    "Call:\n"
23
    "./" << programName << " [file_name (optional)]\n"
24
    "Using OpenCV version " << CV_VERSION << "\n" << endl;
Gary Bradski's avatar
Gary Bradski committed
25 26 27
}


28 29 30 31 32 33
int thresh = 50, N = 11;
const char* wndname = "Square Detection Demo";

// helper function:
// finds a cosine of angle between vectors
// from pt0->pt1 and from pt0->pt2
34
static double angle( Point pt1, Point pt2, Point pt0 )
35 36 37 38 39 40 41 42 43
{
    double dx1 = pt1.x - pt0.x;
    double dy1 = pt1.y - pt0.y;
    double dx2 = pt2.x - pt0.x;
    double dy2 = pt2.y - pt0.y;
    return (dx1*dx2 + dy1*dy2)/sqrt((dx1*dx1 + dy1*dy1)*(dx2*dx2 + dy2*dy2) + 1e-10);
}

// returns sequence of squares detected on the image.
44
static void findSquares( const Mat& image, vector<vector<Point> >& squares )
45 46
{
    squares.clear();
47

48
    Mat pyr, timg, gray0(image.size(), CV_8U), gray;
49

50 51 52 53
    // down-scale and upscale the image to filter out the noise
    pyrDown(image, pyr, Size(image.cols/2, image.rows/2));
    pyrUp(pyr, timg, image.size());
    vector<vector<Point> > contours;
54

55 56 57 58 59
    // find squares in every color plane of the image
    for( int c = 0; c < 3; c++ )
    {
        int ch[] = {c, 0};
        mixChannels(&timg, 1, &gray0, 1, ch, 1);
60

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
        // try several threshold levels
        for( int l = 0; l < N; l++ )
        {
            // hack: use Canny instead of zero threshold level.
            // Canny helps to catch squares with gradient shading
            if( l == 0 )
            {
                // apply Canny. Take the upper threshold from slider
                // and set the lower to 0 (which forces edges merging)
                Canny(gray0, gray, 0, thresh, 5);
                // dilate canny output to remove potential
                // holes between edge segments
                dilate(gray, gray, Mat(), Point(-1,-1));
            }
            else
            {
                // apply threshold if l!=0:
                //     tgray(x,y) = gray(x,y) < (l+1)*255/N ? 255 : 0
                gray = gray0 >= (l+1)*255/N;
            }

            // find contours and store them all as a list
83
            findContours(gray, contours, RETR_LIST, CHAIN_APPROX_SIMPLE);
84 85

            vector<Point> approx;
86

87 88 89 90 91
            // test each contour
            for( size_t i = 0; i < contours.size(); i++ )
            {
                // approximate contour with accuracy proportional
                // to the contour perimeter
92
                approxPolyDP(contours[i], approx, arcLength(contours[i], true)*0.02, true);
93

94 95 96 97 98 99 100
                // square contours should have 4 vertices after approximation
                // relatively large area (to filter out noisy contours)
                // and be convex.
                // Note: absolute value of an area is used because
                // area may be positive or negative - in accordance with the
                // contour orientation
                if( approx.size() == 4 &&
101 102
                    fabs(contourArea(approx)) > 1000 &&
                    isContourConvex(approx) )
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
                {
                    double maxCosine = 0;

                    for( int j = 2; j < 5; j++ )
                    {
                        // find the maximum cosine of the angle between joint edges
                        double cosine = fabs(angle(approx[j%4], approx[j-2], approx[j-1]));
                        maxCosine = MAX(maxCosine, cosine);
                    }

                    // if cosines of all angles are small
                    // (all angles are ~90 degree) then write quandrange
                    // vertices to resultant sequence
                    if( maxCosine < 0.3 )
                        squares.push_back(approx);
                }
            }
        }
    }
}


// the function draws all the squares in the image
126
static void drawSquares( Mat& image, const vector<vector<Point> >& squares )
127 128 129 130 131
{
    for( size_t i = 0; i < squares.size(); i++ )
    {
        const Point* p = &squares[i][0];
        int n = (int)squares[i].size();
132
        polylines(image, &p, &n, 1, true, Scalar(0,255,0), 3, LINE_AA);
133 134 135 136 137 138
    }

    imshow(wndname, image);
}


139
int main(int argc, char** argv)
140
{
141 142
    static const char* names[] = { "data/pic1.png", "data/pic2.png", "data/pic3.png",
        "data/pic4.png", "data/pic5.png", "data/pic6.png", 0 };
143
    help(argv[0]);
144 145 146 147 148 149 150

    if( argc > 1)
    {
     names[0] =  argv[1];
     names[1] =  "0";
    }

151
    vector<vector<Point> > squares;
152

153 154
    for( int i = 0; names[i] != 0; i++ )
    {
155 156
        string filename = samples::findFile(names[i]);
        Mat image = imread(filename, IMREAD_COLOR);
157 158
        if( image.empty() )
        {
159
            cout << "Couldn't load " << filename << endl;
160 161
            continue;
        }
162

163 164 165
        findSquares(image, squares);
        drawSquares(image, squares);

166
        int c = waitKey();
167
        if( c == 27 )
168 169 170 171 172
            break;
    }

    return 0;
}