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.