Shipping containers OCR
The JAVA OCR SDK supports the Shipping containers OCR API for extracting data from pictures of containers identification.
Using this sample below, we are going to illustrate how to extract the data that we want using the OCR SDK.
Quick Start
// Init a new client
MindeeClient client = MindeeClientInit.create("<your mindee api key>");
// Load a file from disk and parse it
DocumentToParse documentToParse = mindeeClient.loadDocument(
new File("./853f15a-shipping_containers.jpg")
);
Document<ShippingContainerV1Inference> document = mindeeClient.parse(
ShippingContainerV1Inference.class, documentToParse
);
// Print a summary of the parsed data
logger.info(document.toString());
Output:
########
Document
########
:Mindee ID: 32418e69-77b4-41e0-bdcd-d5fb40a2cfe2
:Filename: shipping_containers.jpg
Inference
#########
:Product: mindee/shipping_containers v1.0
:Rotation applied: No
Prediction
==========
:Owner: MMAU
:Serial number: 1193249
:Size and type: 45R1
Page Predictions
================
Page 0
------
:Owner: MMAU
:Serial number: 1193249
:Size and type: 45R1
Questions?
Updated 2 months ago