DEV Community

IronSoftware
IronSoftware

Posted on • Originally published at ironsoftware.com

2 1

Tamil OCR in C# and .NET

Other versions of this document:

IronOCR is a C# software component allowing .NET coders to read text from images and PDF documents in 126 language, including Tamil.

It is an advanced fork of Tesseract, built exclusively for the .NET developers and regularly outperforms other Tesseract engines for both speed and accuracy.

Contents of IronOcr.Languages.Tamil

This package contains 102 OCR languages for .NET:

  • Tamil
  • TamilBest
  • TamilFast
  • TamilAlphabet
  • TamilAlphabetBest
  • TamilAlphabetFast

Download

Tamil Language Pack [தமிழ்]

Image 1

Installation

The first thing we have to do is install our Tamil OCR package to your .NET project.

PM> Install-Package IronOCR.Languages.Tamil

Code Example

This C# code example reads Tamil text from an image or PDFv document.

C#:

//PM> Install-Package IronOcr.Languages.Tamil
using IronOcr;
var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Tamil;
using (var Input = new OcrInput(@"images\Tamil.png"))
{
    var Result = Ocr.Read(Input);
    Var AllText =  Result.Text
}
Enter fullscreen mode Exit fullscreen mode

VB:

'PM> Install-Package IronOcr.Languages.Tamil
Imports IronOcr
Private Ocr = New IronTesseract()
Ocr.Language = OcrLanguage.Tamil
Using Input = New OcrInput("images\Tamil.png")
    Dim Result = Ocr.Read(Input)
    Dim AllText As Var = Result.Text
End Using
Enter fullscreen mode Exit fullscreen mode

Image of Datadog

The Future of AI, LLMs, and Observability on Google Cloud

Datadog sat down with Google’s Director of AI to discuss the current and future states of AI, ML, and LLMs on Google Cloud. Discover 7 key insights for technical leaders, covering everything from upskilling teams to observability best practices

Learn More

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay