I am doing a “thought experiment” for a possible application that will need to be able to OCR bank statements, including getting all the numbers and description in a form that can be processed.

Any anyone successfully used any of the .net OCR toolkits to OCR bank statements?

If so how did you cope with the fact that every bank any a different layout?

link|improve this question

feedback

2 Answers

Ian, I have first hand experience, and I have done it in two different ways in the past.

Full Page OCR First, you can take the approach of "full-page OCR" and then parse the information into your desired data format. There is a variety of Engines with .NET support, such as ABBYY Engine SDK, or even a completely free-to-start cloud-based on-demand OCR API (OCR Cloud 2.0, http://www.ocr-it.com/ocr-cloud-2-0-api). This is more of a classic approach I used for over past 10 years and up to a few years ago. OCR provides you with a complete text-based result, and you use algorithms to extract informaiton. This approach is quite static and requires heavy programming usually, especially if there are multiple variations. There are two potentially troublesome areas to look for in this approach:

A. making sure that OCR provides consistent layout and text structure so it could be parsed reliably. If there is a table without gridlines, or if there is just tabular data that could be detected as a table, then OCR may work unpredictably from document to document, which essentially breaks your parsing down the road.

B. making sure that your parsing logic can accommodate various formatting differences and multiple variations of data structures. This is pure programming that requires code changes for adjustments or updates.

(vcsjones was mentioning these issues in his answer)

Dynamic Data Capture Second, use a modern dynamic data capture system that automates template identification and data extraction. This is the approach I have been using instead of parsing for a few years now, and it is several times faster and more convenient to create and operate. In this process you would use a specialized software, such as ABBYY FlexiCapture (http://www.wisetrend.com/abbyy_flexicapture.shtml), which will take care of two aforementioned issues with variable data formats and different templates. Before processing it needs to be setup and "trained" to identify different statement types and how the data is located on those different variations. It performs all setup through User Interface and not coding, and you can plugin custom scripts if desired. If it needs to be re-trained for a new template, or trained to capture some data more reliably, it takes a few minutes without coding or programming experience. I have trained accountants to maintain and adjust their invoice templates themselves.
(see their feedback here: http://www.prweb.com/releases/2011/wisetrend_wiseinvoice/prweb4936544.htm)

NOTE: FlexiCapture is not .NET SDK, but an application with complete automation. It can be used interactively by operators, or typically I use it for 100% server-based automation. Once setup, I feed images to it for Input, and get my properly formatted text as Output in either CSV, XML, or direct export into my ODBC databases. So you could use it as 'black box' server based component.

I have a sample project for bank statements somewhere, so please let me know if you would like to see it yourself live.

SOURCE: I am an OCR & Data Capture consultant with 11 years experience.

link|improve this answer
Thanks, Am I right to assume that "ABBYY FlexiCapture" is a cost per end user, unlike most .net components that are a cost per programmer? – Ian Ringrose Sep 12 '11 at 8:52
1  
FlexiCapture is licensed per server seat that will do the data capture work, just like how you would license QuickBooks or Photoshop any other productivity software. If you use it as an automated "black box", you can install a single license of FC, for example on your corporate network. Then anyone on your network (operators or programs) can submit images into some designated Input folder and pickup results from Output folder. FC will do the process between input and output per your settings (templates, rules, etc.). It is a bit of a stretch from a .NET library, but automation is great. LMK – Ilya Evdokimov Sep 13 '11 at 3:12
Ian, there is also ABBYYY FlexiCapture Engine, which is same technology, but in form of SDK. – Tomato Sep 14 '11 at 6:58
feedback

I've used ImageGear successfully, but it wasn't pain free.

The solution that we ended up coming to was using a combination of their data checking and zone features to detect which bank statement type it was, and we kept a database of "how" to process each bank statement.

There were some disadvantages and advantages to this approach:

As a disadvantage, we needed to add information for every bank statement type out there. I suppose this is what you are trying to avoid. This was time-consuming, tedious. We did have the luxury of this being a means to replace a manual "fax it in and someone will look at it". So if we didn't know how to handle the bank statement, we just told them to go-back to the old fashion way with fax - and we added support for that statement later.

The advantage of our slow and tedious approach was, it worked. It took many revisions for us to tweak it properly, but after a while the calls stopped any the data just started flowing through.

From what I know and the research that we did before starting that project - there wasn't an OCR tool that was tailored specifically for bank statements. Perhaps that has changed since 2005.

link|improve this answer
May I ask for service you were writing this to provide? – Ian Ringrose Sep 9 '11 at 15:29
@IanRingrose - It was a tool used by a law firm - it wasn't a service that was publicly available. – vcsjones Sep 9 '11 at 15:57
feedback

Your Answer

 
or
required, but never shown

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