I have a console application in which I will add image from PC local path, which I want to read the text,hand written values (name and multiple choice values marked as tick) with muliple choice value like as shown in pic. Which dll or technique could I use to achieve this. I've heard about OCR i also use it but i am unable to achieve my requirements.here is a code of TesseractEngine.
Output with TesseractEngine lib
var filePath = @"E:\\Test Projects\\ReadDataFromImage\\Untitled.png";
using (var engine = new TesseractEngine(@"E:\Test Projects\ReadDataFromImage\tessdata-main\tessdata-main", "eng", EngineMode.Default))
{
using (var image = Pix.LoadFromFile(filePath))
{
using (var page = engine.Process(image))
{
string text = page.GetText();
Console.WriteLine("Extracted Text:");
Console.WriteLine(text);
}
}
}