US Bank Check OCR
The JAVA OCR SDK supports the Bank Checks OCR API for extracting data from bank checks.
Quick Start
// Init a new client
MindeeClient client = MindeeClientInit.create("my-api-key");
// Load a file from disk and parse it
DocumentToParse documentToParse = mindeeClient.loadDocument(
new File("./path/to/the/file.ext")
);
Document<BankCheckV1Inference> document = mindeeClient.parse(
BankCheckV1Inference.class, documentToParse
);
// Print a summary of the parsed data
logger.info(document.toString());
Output:
########
Document
########
:Mindee ID: 0626bc33-2b9f-4645-b455-6af111c551cf
:Filename: check.jpg
Inference
#########
:Product: mindee/bank_check v1.0
:Rotation applied: Yes
Prediction
==========
:Routing number: 012345678
:Account number: 12345678910
:Check number: 8620001342
:Date: 2022-04-26
:Amount: 6496.58
:Payees: John Doe, Jane Doe
Page Predictions
================
Page 0
------
:Routing number: 012345678
:Account number: 12345678910
:Check number: 8620001342
:Date: 2022-04-26
:Amount: 6496.58
:Payees: John Doe, Jane Doe
Questions?
Updated 2 months ago