US Bank Check OCR .NET

The .NET OCR SDK supports the Bank Checks OCR for extracting data from bank checks.

Quick Start

// Load a file from disk and parse it

string path = "./path/to/the/file.ext";
var prediction = await _mindeeClient
    .LoadDocument(File.OpenRead(Path), System.IO.Path.GetFileName(Path))
    .ParseAsync<BankCheckV1Prediction>();

// Print a summary of the parsed data
System.Console.WriteLine(prediction.Inference.Prediction.ToString());

Output:

----- US Bank Check V1 -----
Routing number: 012345678
Account number: 12345678910
Check number: 8620001342
Date: 2022-04-26
Amount: 6496.58
Payees: John Doe, Jane Doe
----------------------

 

Questions?
Slack Logo Icon  [Join our Slack]((https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)