Gets the value of the issuer identification number field on the ID card.
public static readonly string IssuerIdentificationNumber
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Forms.Common;
using Leadtools.Ocr;
using Leadtools.Forms.Commands;
void IDCardParse(RasterImage image)
{
IOcrEngine ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.LEAD);
ocrEngine.Startup(null, null, null, LEAD_VARS.OcrLEADRuntimeDir);
var path = Path.Combine(LEAD_VARS.OcrLEADRuntimeDir ?? String.Empty, "LEAD.Binarize.bin");
IDFrameReader idFrameReader = new IDFrameReader(File.ReadAllBytes(path), ocrEngine);
var ready = idFrameReader.ParallelProcess(image);
if (ready.Ready)
{
if (idFrameReader.Results != null)
{
foreach (var res in idFrameReader.Results)
{
Console.WriteLine("Field name : " + res.Key + "Value : " + res.Value);
}
}
}
ocrEngine.Shutdown();
ocrEngine.Dispose();
}
static class LEAD_VARS
{
public const string OcrLEADRuntimeDir = @"C:\LEADTOOLS22\Bin\Common\OcrLEADRuntime";
}