This tutorial shows how to detect and extract ID card information from a given image in a C# .NET 6 application using the LEADTOOLS SDK.
Overview | |
---|---|
Summary | This tutorial covers how to find and extract ID Card features from an image in a C# .NET 6 Console application. |
Completion Time | 30 minutes |
Visual Studio Project | Download tutorial project (1 KB) |
Platform | C# .NET 6 Console Application |
IDE | Visual Studio 2022 |
Runtime Target | .NET 6 or higher |
Development License | Download LEADTOOLS |
Try it in another language |
|
Get familiar with the basic steps of creating a project and loading an image by reviewing the Add References and Set a License and Load and Save Images tutorials, before working on this tutorial.
Start with a copy of the project created in the Load and Save Images tutorial. If you do not have that project, follow the steps in that tutorial to create it.
The references needed depend upon the purpose of the project. References can be added via NuGet packages.
This tutorial requires the following NuGet packages:
Leadtools.Document.Sdk
For a complete list of which DLL files are required for your application, refer to Files to be Included With Your Application.
The License unlocks the features needed for the project. It must be set before any toolkit function is called. For details, including tutorials for different platforms, refer to Setting a Runtime License.
There are two types of runtime licenses:
With the project created, the references added, the license set, and the load image code added, coding can begin. The image save code is not necessary for this tutorial, so that code can be commented out or deleted.
In the Solution Explorer, open Program.cs
. Add the following statements to the using
block at the top of Program.cs
.
using System;
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Forms.Commands;
using Leadtools.Ocr;
Add a new method to the Program
class named ReadIDCard(RasterImage image)
, load the sample image with RasterCodecs and pass the RasterImage
class to the method.
For the purposes of this tutorial the following image is used: <INSTALL_DIR>\LEADTOOLS23\Resources\Images\License_SAMPLE.PNG
static void Main(string[] args)
{
InitLEAD();
using (RasterCodecs codecs = new RasterCodecs())
{
RasterImage image = codecs.Load(@"<INSTALL_DIR>\LEADTOOLS23\Resources\Images\License_SAMPLE.PNG");
ReadIDCard(image);
}
}
Add the code below to the ReadIDCard()
method to process the given image and output the ID values if detected.
static void ReadIDCard(RasterImage image)
{
using (IOcrEngine ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.LEAD))
{
var buffer = Path.Combine(@"<INSTALL_DIR>\LEADTOOLS23\Bin\Common\OcrLEADRuntime", "LEAD.Binarize.bin");
ocrEngine.Startup(null, null, null, null);
using (IDFrameReader idFrameReader = new IDFrameReader(File.ReadAllBytes(buffer), ocrEngine))
{
var results = idFrameReader.Process(image);
if (results.Ready)
foreach (var res in idFrameReader.Results)
Console.WriteLine($"{res.Key} : {res.Value}");
else
Console.WriteLine("No ID found in this image");
}
}
}
If you would like to detect and extract the data using memory stream, then insert the following code into the Main(string[] args)
method:
string filename = @"C:\LEADTOOLS23\Resources\Images\License_SAMPLE.PNG";
using (RasterCodecs codecs = new RasterCodecs())
{ // To load by memory stream and extract the data
byte[] bytes = File.ReadAllBytes(filename);
using (MemoryStream ms = new MemoryStream(bytes))
{
ms.Position = 0;
// codecs.Load(ms);
RasterImage image = codecs.Load(ms);
ReadIDCard(image);
}
}
Note
This will replace the existing code under the
InitLEAD()
call.
Run the project by pressing F5, or by selecting Debug -> Start Debugging.
If the steps were followed correctly, the console appears and the application detects the ID information and displays it to the console.
This tutorial showed how to load an image and run license recognition using the IDFrameReader
class.