Licences plates OCR .NET
The .NET SDK OCR SDK supports the API Licenses plate OCR for extracting data from pictures (or documents) of cars.
Using this sample photo below, we are going to illustrate how to extract the data that we want using the OCR SDK.
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<LicensePlatesV1Prediction>();
// Print a summary of the parsed data
System.Console.WriteLine(prediction.Inference.Prediction.ToString());
Output:
----- EU License plate V1 -----
Licence plates: BY323YB
----------------------
Questions?
[Join our Slack]((https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
Updated 3 months ago