Reputation: 149
I have scanned image (2000 * 2500) and the original image of it. I want algorithm or open source API to develop a function which would give me the probability of matching these two images. I am developing this in C#. some of the issues are:
Do I need to work around on the image rotation part ? You never know what will come from scanner.
Upvotes: 2
Views: 1616
Reputation: 3701
The scanned image might be distorted in many ways, to improve the recognition you should try to undo / ignore all of them:
So it is not simple to match the source and the scan, but there are some possiblities using image alignment. CodeProject has something that looks like a fit and there are some open source tools like Hugin that contain image alignment as part of panorama stitching.
Upvotes: 3