Click here to Skip to main content
Licence CPOL
First Posted 24 Aug 2010
Views 28,668
Downloads 2,102
Bookmarked 67 times

Detect image skew angle and deskew image

By | 28 Aug 2010 | Article
Deskew an image by converting it to grayscale + edges and rotating by the detected skew angle.

screenshot.jpg

Introduction

This article discusses about some very basic and generalized techniques for detecting image skew. Definitely there are much advanced algorithms to detect skew, but those will not be covered in this article.

So! What is image skew?

skew.jpg

Using the above drawn figure as reference, I can say - the theta pointed out by that bluish arrow sign is the image skew :).

To put it in proper words, the angle by which the image seems to be deviated from its perceived steady position is the image skew.

Some pre-requisites for detecting the skew

Before detecting the skew, the first step is to differentiate between a text image and a regular image. By text image, I mean images which are scanned documents or screenshot of a text document, or in other words, images that contains letters and texts.

And a regular image in my terms is a picture, or photo of a scenery, or something drawn by Mr. Van Gogh and Co.

In one of my articles, I have covered the topic of a basic algorithm to differentiate between regular image and text images.

However, although the skew detection of a text image is relatively easier to implement, for a regular image, it's quite difficult and next to impossible in some cases. Suppose I have a picture of only the head part of my favourite celebrity Ms. Julia Roberts, ... there is no way to know from the image whether she really has her head slanted towards one direction, or the camera man who took the beautiful picture had a problem with the camera angle.

Therefore, for regular images, we have to make some sort of assumptions. The case we are going to discuss here will assume, the pictures to be deskewed will be framed. Which means, the pictures that we are dealing with are pictures taken from another picture having frames/border around them. You can refer to the application screenshot at the very top as an example. The screenshot you see is of a camera captured image of another picture having a thick white-ish border around it.

The basic concept of detecting the skew

The main idea to detect skew for a regular image and a text image is the same. We have to first turn the pictures to Gray Scale.

Then, for regular (non text) images, we have to find the edges or feature lines of the image. There are many algorithms to detect the edges of an image, and in our case, we used the canny edge detection algorithm. We can wish to skip this part for text images.

The next step and the most important step is to cast rays from one side of the picture to the other, and by using the intersection info of the rays with the various parts of the images, we come up with a good skew angle.

out_Album1-WW1-LochHavenPA-117.jpg

As you can see from the above image, we have first converted the image (the one you see in the application screenshot) to its very basic feature lines/edges and have casted horizontal rays from one side to the other. The rays which we have casted (I mean the horizontal lines) intersect with the border/frame of the image. If I put the intersection points of the rays and the left edge of the picture in an X, Y plot (where X is horizontal and Y is vertical), I will end up with some sort of straight line curve that has a slope angle close to 2 degrees with respect to the Y axis. So, there you have it, your skew angle for the image in the application screenshot is close to 2 degrees or 0.035 radians.

This is more or less the basic concept used for detecting the skew of a regular framed image. You have to keep in mind this idea is applicable only to regular images and not text images.

By the way, the uploaded source code's skew detection algorithm does a little more than what I have explained above. What it does is - cast rays from left to right to intersect with the left edge, then top to bottom, then right to left, and then bottom to top. The algorithm considers the one with the most intersection points, and creating consistently occurring slopes as the edge to consider as the reference edge. For example, if the bottom to top rays intersects most with the bottom edge of the image and more frequently occurring slopes are observed, then that edge has the priority and the points of the bottom to top rays would be considered to be put in the X,Y plot. All these extra effort is just for the fact that, in some images, the border edges might be broken and not as beautifully framed fully around the image, like you are seeing in the application screenshot image. So, we'll have a set of rays with different slopes for such images, because the rays will go beyond the border edge wherever there is a broken edge line, and will create a different angle with another intersected point that lies somewhere inside the image bounded by the frame. So, the most occurring slopes (if two slopes have less than 0.0349 radians / 2.0 degrees difference between them - we'd consider the slopes as same valued) will be taken into consideration to detect the skew.

In order to detect the skew of text images, we don't have to worry too much about the picture having border edges or not. As mentioned before, we cast rays from left to right and find how many blackish pixels the rays intersect with. Then, we rotate the angle of the rays by a small amount and cast the rays again, and do the same process again and again.

The angle at which most white space is encountered (in other words, most black pixels are shot down, i.e., intersected), we consider that to be the skew angle. Most likely, we would start from 0 degree and go down to 90 degrees, and then again, from 0 degree go up to 90 degrees with the angle of the rays. Whenever the white ratio reaches the maximum peak and then starts to come down again, we stop immediately, and we know we have found our skew angle. This is the basic idea of detecting skew for text images.

The deskewing of an image is less of a trouble. All you need to do is rotate the image by the same amount of the skew, only to the reverse direction.

The code for the rotation is available in the ImageFunctions.h header file of the uploaded source.

However, if you want a real nice quality rotated image, you can use the wonderful aarot class by Mark Gordon (http://codeguru.earthweb.com/cpp/cpp/algorithms/math/article.php/c10677/Anti-Aliased-Image-Rotation-Aarot.htm). Since the rotation code inside this class performs antialiasing, the performance is a little slow, but the output image quality is very good.

Using the code

In the uploaded source code, mainly two classes are used for detecting the skew. One class, the main class, is named SkewManager, which has code to detect the skew, and the other class is ImageData, which is just a wrapper for the bitmap bits and also keeps the width and the height of the image to be used by the SkewManager to apply its algorithms to the bitmap bits.

The SkewManager expects the bitmap that will be passed to be gray scaled. The blurring of the image to its edges (if required) is done inside the ImageData class.

Following is the example of the usage of the two classes (the m_ prefixed variables as well as the skewMan variable are member variables of the CScannedDocTestDoc class).

BOOL CScannedDocTestDoc::OnOpenDocument(LPCTSTR lpszPathName)
{
    m_Image.Destroy();
    HRESULT hr = m_Image.Load(lpszPathName);

    if(SUCCEEDED(hr))
    {
        int nPitch = m_Image.GetPitch();
        int nWidth = m_Image.GetWidth();
        int nHeight = m_Image.GetHeight();

        int nBytesPerPixel = m_Image.GetBPP() / 8;
        if(nBytesPerPixel)
        { 
            byte* pGrayScaleBits = NULL;
            // Get a gray scaled bitmap and bitmap bits from the original image
            m_hBmpGrayScale = ImageFunctions::GetGrayScaleImage((HBITMAP)m_Image, 
            nWidth, nHeight, nBytesPerPixel, nPitch, &pGrayScaleBits);
            if(pGrayScaleBits != NULL)
            {
                // Find out if the image is a regular image or text image
                m_bTextImage = ImageFunctions::IsTextImage(pGrayScaleBits, nWidth, nHeight);
                m_imgData.Load(pGrayScaleBits, m_Image.GetWidth(), m_Image.GetHeight(), 1);

                // get the skew angle
                double angle = 0.0;
                skewMan.GetSkewAngle(m_bTextImage, m_imgData, angle);
                m_dSkewAngle = angle;
            }
        }
        return TRUE;
    }
    return FALSE;
}

Points of interest

In order to achieve skew detection and deskewing of images, I had to go through a lot of trouble to perform basic image operations such as creating a gray scaled image, rotating an image etc., and I have put all those functionalities inside one header, ImageFunctions.h. Most of it was improvisation on already available materials in the Internet and MSDN. The canny edge detection algorithm can be found in the the header canny_edge.h.

Acknowledgements

  • Kathey Marsden, Professor Richard J. Fateman
  • for the OCRchie project - the foundation upon which, the text image skew detection algorithms of this article's codes are based upon.

  • Also, thanks to Archie Russell, James Hopkin, and Cynthia Tian, who contributed significantly to the original design.
  • Heath, M., Sarkar, S., Sanocki, T., and Bowyer, K. Comparison of edge detectors: a methodology and initial study, Computer Vision and Image Understanding 69 (1), 38-54, January 1998.
  • Heath, M., Sarkar, S., Sanocki, T. and Bowyer, K.W. A Robust Visual, Method for Assessing the Relative Performance of Edge Detection Algorithms, IEEE Transactions on Pattern Analysis and Machine Intelligence 19 (12), 1338-1359, December 1997.
  • for the excellent canny edge detection algorithm.

  • Shahadatul Hakim
  • for providing with reading materials related to deskewing text and framed images.

History

  • Article uploaded: 24 August, 2010.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Mukit, Ataul


Enosis Limited
Bangladesh Bangladesh

Member

You don't learn patterns, you just code it.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionI need this project as dll to reference it to vb.net app Pinmembersseerraajj3hrs 29mins ago 
AnswerRe: I need this project as dll to reference it to vb.net app PinmemberMukit, Ataul1 hr 45mins ago 
GeneralMy vote of 5 Pinmembermanoj kumar choubey20:06 26 Feb '12  
GeneralRe: My vote of 5 PinmemberMukit, Ataul20:14 26 Feb '12  
QuestionHow to use aarot to rotate the image? PinmemberMember 197108414:31 4 Aug '11  
AnswerRe: How to use aarot to rotate the image? PinmemberMember 197108416:51 4 Aug '11  
GeneralRe: How to use aarot to rotate the image? PinmemberMukit, Ataul20:47 6 Aug '11  
GeneralMy vote of 5 PinmemberMember 191619818:30 13 Oct '10  
GeneralRe: My vote of 5 PinmemberMukit, Ataul18:57 13 Oct '10  
GeneralCool Stuff PinmemberHarrison H10:52 6 Oct '10  
GeneralRe: Cool Stuff PinmemberMukit, Ataul18:41 18 Oct '10  
GeneralMy vote of 5 PinmemberMarcelo Ricardo de Oliveira11:01 31 Aug '10  
GeneralRe: My vote of 5 PinmemberMukit, Ataul22:26 31 Aug '10  
QuestionIsn't that rotation? Pinmemberpeterchen5:35 25 Aug '10  
AnswerRe: Isn't that rotation? [modified] PinmemberMukit, Ataul20:02 25 Aug '10  
GeneralRe: Isn't that rotation? Pinmemberpeterchen20:53 25 Aug '10  
GeneralGreat Article PinmemberAnt21000:25 25 Aug '10  
GeneralRe: Great Article PinmemberMukit, Ataul20:04 25 Aug '10  
GeneralMy vote of 5 PinmemberRozis10:33 24 Aug '10  
GeneralRe: My vote of 5 PinmemberMukit, Ataul19:15 24 Aug '10  
GeneralGreat PinmvpJose Menendez Póo10:29 24 Aug '10  
GeneralRe: Great PinmemberMukit, Ataul19:15 24 Aug '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 29 Aug 2010
Article Copyright 2010 by Mukit, Ataul
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid