I successfully implemented the OpenCV square-detection example in my test application, but now need to filter the output, because it's quiet messy - or is my code wrong?

I'm interested in the four corner points of the paper for skew reduction (like that) and further processing …

Input & Output: Input & Output

Original image:

click

Code:

double angle( cv::Point pt1, cv::Point pt2, cv::Point pt0 ) {
    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);
}

- (std::vector<std::vector<cv::Point> >)findSquaresInImage:(cv::Mat)_image
{
    std::vector<std::vector<cv::Point> > squares;
    cv::Mat pyr, timg, gray0(_image.size(), CV_8U), gray;
    int thresh = 50, N = 11;
    cv::pyrDown(_image, pyr, cv::Size(_image.cols/2, _image.rows/2));
    cv::pyrUp(pyr, timg, _image.size());
    std::vector<std::vector<cv::Point> > contours;
    for( int c = 0; c < 3; c++ ) {
        int ch[] = {c, 0};
        mixChannels(&timg, 1, &gray0, 1, ch, 1);
        for( int l = 0; l < N; l++ ) {
            if( l == 0 ) {
                cv::Canny(gray0, gray, 0, thresh, 5);
                cv::dilate(gray, gray, cv::Mat(), cv::Point(-1,-1));
            }
            else {
                gray = gray0 >= (l+1)*255/N;
            }
            cv::findContours(gray, contours, CV_RETR_LIST, CV_CHAIN_APPROX_SIMPLE);
            std::vector<cv::Point> approx;
            for( size_t i = 0; i < contours.size(); i++ )
            {
                cv::approxPolyDP(cv::Mat(contours[i]), approx, arcLength(cv::Mat(contours[i]), true)*0.02, true);
                if( approx.size() == 4 && fabs(contourArea(cv::Mat(approx))) > 1000 && cv::isContourConvex(cv::Mat(approx))) {
                    double maxCosine = 0;

                    for( int j = 2; j < 5; j++ )
                    {
                        double cosine = fabs(angle(approx[j%4], approx[j-2], approx[j-1]));
                        maxCosine = MAX(maxCosine, cosine);
                    }

                    if( maxCosine < 0.3 ) {
                        squares.push_back(approx);
                    }
                }
            }
        }
    }
    return squares;
}
link|improve this question

1  
I think you can adjust the title of the question for something like Detecting a sheet of paper , if you think it's more appropriate. – karlphillip Jan 14 at 15:19
@moosgummi I am looking to have same functionality which you have implemented i.e "Detect the Corners of the captured image/document".How you achieved this ? Would I be able to use OpenCV within my iPhone application ? Please suggest me some better way to have this .. – Ajay Sharma Jan 19 at 7:17
@Ajay Download OpenCV sources and take a look at the squares.cpp sample. The function I posted in my answer is an improvement of one of the functions available in that source code. :) Yes, you can use OpenCV to take a picture on the iPhone, process it and then display it back on the screen or whatver you want to do. – karlphillip Jan 19 at 17:43
1  
Have you ever done something with OpenCV? Any application at all? – karlphillip Jan 20 at 11:28
show 2 more comments
feedback

1 Answer

up vote 6 down vote accepted

This is a recurring subject in Stackoverflow and since I was unable to find a relevant implementation I decided to accept the challenge.

I made some modifications to the squares demo present in OpenCV and the resulting C++ code below is able to detect a sheet of paper in the image:

void find_squares(Mat& image, vector<vector<Point> >& squares)
{
    // blur will enhance edge detection
    Mat blurred(image);
    medianBlur(image, blurred, 9);

    Mat gray0(blurred.size(), CV_8U), gray;
    vector<vector<Point> > contours;

    // find squares in every color plane of the image
    for (int c = 0; c < 3; c++)
    {
        int ch[] = {c, 0};
        mixChannels(&blurred, 1, &gray0, 1, ch, 1);

        // try several threshold levels
        const int threshold_level = 2;
        for (int l = 0; l < threshold_level; l++)
        {
            // Use Canny instead of zero threshold level!
            // Canny helps to catch squares with gradient shading
            if (l == 0)
            {
                Canny(gray0, gray, 10, 20, 3); // 

                // Dilate helps to remove potential holes between edge segments
                dilate(gray, gray, Mat(), Point(-1,-1));
            }
            else
            {
                    gray = gray0 >= (l+1) * 255 / threshold_level;
            }

            // Find contours and store them in a list
            findContours(gray, contours, CV_RETR_LIST, CV_CHAIN_APPROX_SIMPLE);

            // Test contours
            vector<Point> approx;
            for (size_t i = 0; i < contours.size(); i++)
            {
                    // approximate contour with accuracy proportional
                    // to the contour perimeter
                    approxPolyDP(Mat(contours[i]), approx, arcLength(Mat(contours[i]), true)*0.02, true);

                    // 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 &&
                            fabs(contourArea(Mat(approx))) > 1000 &&
                            isContourConvex(Mat(approx)))
                    {
                            double maxCosine = 0;

                            for (int j = 2; j < 5; j++)
                            {
                                    double cosine = fabs(angle(approx[j%4], approx[j-2], approx[j-1]));
                                    maxCosine = MAX(maxCosine, cosine);
                            }

                            if (maxCosine < 0.3)
                                    squares.push_back(approx);
                    }
            }
        }
    }
}

After this procedure is executed, the sheet of paper will be the largest square in vector<vector<Point> >:

opencv paper sheet detection

I'm letting you write the function to find the largest square. ;)

link|improve this answer
For some unknown reason I'm not abled to get it working anymore. It always throws an exception when mixChannels is called, which is strange because it worked a few days ago. Some OpenCV Error: Assertion failed (j < nsrcs && src[j].depth() == depth) in mixChannels Do you know this kind of error? The depth of the channels is matching so it's not making sense. I'm working with OSX 10.7.2 and OpenCV 2.3.1 – moosgummi Jan 18 at 10:06
1  
That's why I use source control. The smallest accidental modification to the code can be easily discovered. If you didnt change anything, try testing with other images and finally recompile/reinstall opencv. – karlphillip Jan 18 at 10:39
Ah, got it working – seems like some times photoshop messes the image up … And I'm now using SVN to manage versions. Thanks! – moosgummi Jan 18 at 10:54
In some cases the biggest square is not only containing the paper, but other stuff and the smaller squares are more accurate. Do you have any ideas how to prevent that? Input: cl.ly/2o3V2g3l3f0e3m0s1p1K Output: cl.ly/0L1n1c1P0X172F0E2h0Z – moosgummi Jan 20 at 12:16
1  
OpenCV is pretty much the same for all platforms (Win/Linux/Mac/iPhone/...). The difference is that some don't supported the GPU module of OpenCV. Have you built OpenCV for iOS already? Were you able to test it? I think these are the questions you need to answer before trying anything more advanced. Baby steps! – karlphillip Jan 25 at 12:40
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.