ATMs attempting to be intelligent

Bank of America installed new ATMs sometime this year which, for the most part, are pretty user friendly. They’re touch screen based (along with a physical keypad) and automatically scan in checks. You have to insert the check in the correct direction or the ATM spits it out because it can’t OCR the check. While OCR does take time, it would seem that the ATM could simply flip the image and try the OCR again instead of spitting it out. This isn’t rocket science to add that code:

if (!OCRsuccess)
{
	rotate image;
	do_ocr;
}

It would have saved the bank lots of money on printing “insert check this way” labels.

3 Replies to “ATMs attempting to be intelligent”

  1. It’s probably not just OCRing the check but also reading the magnetic ink used on real checks for the computer-readable account numbers on the bottom. Allowing either orientation would require multiple readers in one ATM or some sort of flipping mechanism.

Leave a Reply to Ben Combee Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.