I have a project where I am required to subtract an empty template image from an incoming user filled image. The document type is a normal Bank cheque.

The aim is to extract the handwritten fields from it by subtracting one image from the empty template image.

The issue what i am facing is in aligning these two images, as there is scaling, translation, rotation etc

Any ideas on how to align the template image with the incoming image?

UPDATE 1:

I am posting an example image from the wikipedia page but in the monochrome format as my image is in monochrome format. alt text

link|improve this question

Could you post example images ? – Loïc Février Oct 1 '10 at 13:27
@Loic, My sample image is like any other bank cheque. The only constant feature is line and few words like pay to the order of – Raj Oct 1 '10 at 13:51
Are all your checks from the same bank ? – Loïc Février Oct 1 '10 at 13:53
@Loic, Yes all the cheques are from one bank. I have written code to perform de-skewing them based on connected components. The issue for me is to reliably identify the bounding rectangle of these lines as overlapping texts are creating issues in finding the actual line. – Raj Oct 1 '10 at 13:58
1  
after deskewing, a hit-or-miss transform with a long, narrow horizontal structuring element should isolate the lines pretty well. That might help with the bounding box problem. – allonym Oct 5 '10 at 0:34
feedback

2 Answers

up vote 1 down vote accepted

The basic answer is write a function that takes two images and a 2D transform and tells you how aligned they are once you apply the transform to the target image. The function needs to be continuous based on the transform and have a local minima (0) where the images are aligned perfectly. This is called a cost function.

Then use any optimization algorithm over the function and inputs -- you are trying to optimize the transform (translation, scale, rotation). Examples are hill climbing, genetic, simulated annealing, etc.

There are products that do this -- usually they are called Forms Recognition, Forms Registration, Forms Processing, etc. Some are SDKs, but there are also applications that can do it without programming.

Disclaimer: I work at Atalasoft, where we sell a Forms Processing add-on to our .NET imaging SDK.

link|improve this answer
+1 @Lou, Thanks for the insight. Can you please point me to some examples/explanations for the cost function? or add some more detail on the transform which you are pointing? – Raj Oct 1 '10 at 13:03
The cost function is whatever you think determines an aligned image. If there is a border, and you can find it -- it could be the size, position and rotation difference of the border. You need to pick something that can be found regardless of size, scale and rotation. I wrote up a codeproject article that will give you some idea: codeproject.com/KB/showcase/SimpleOMRDotImage.aspx – Lou Franco Oct 1 '10 at 14:27
feedback

When working with Image processing for industrial projects we have in most of the cases a fiducial. A fiducial is like a mark - can be a hole, an cross mark - that never changes, is always in the same positions.

Generally two fiducials are enough to correct misaligning problems like rotation, translation and also scale. For instance If you know the distance between the two, you can always check it to make sure the scale factor is right, or correct it based on the difference of the current distance against the right distance.

In your case, what I would ask you is: Does the template and the incoming image share any visual sign that are invariant and can easily be segmented?

If you have the answer for that question, all the rest will be more simple - the difference itself is a quite straightforward algorithm.

link|improve this answer
If no fiducial Raj can go through : corner detection, matching, rotation/scale estimation, images aligning. But it depends of how fast it's must be... – Loïc Février Oct 1 '10 at 11:11
Common features are pre-printed texts, Horizontal line etc Yes, i can use them as markers. Say if i want to find the line, i have written a connected component, but, it takes up all the connected ones and the bounding rectangle becomes very big in size. In this case, how can i optimise to actually segment the line. Processing time is a constraint in my case. – Raj Oct 1 '10 at 12:20
It's hard to say. Are you sure that the line is the best 'fiducial' that you can use? As @Loïc said, find the corners would be a better solution. But it depends of a lot of factors like your illumination. Without a sample of your image, is a bit hard to say how it could be done properly. – Andres Oct 1 '10 at 13:22
My image is a monochrome one, so no issue of illumination. I have updated my query with a sample image – Raj Oct 1 '10 at 13:52
feedback

Your Answer

 
or
required, but never shown

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