Georgian OCR in C# and .NET
Andere Versionen dieses Dokuments:
IronOCR ist eine C#-Softwarekomponente, die es .NET-Entwicklern ermöglicht, Text aus Bildern und PDF-Dokumenten in 126 Sprachen zu lesen, einschließlich Georgisch.
Es ist eine fortschrittliche Abspaltung von Tesseract, die ausschließlich für .NET-Entwickler gebaut wurde und regelmäßig andere Tesseract-Engines sowohl in Geschwindigkeit als auch Genauigkeit übertrifft.
Inhalt von IronOcr.Languages.Georgian
Dieses Paket enthält 176 OCR-Sprachen for .NET:
- Georgisches Alphabet
- Georgisches AlphabetBest
- Georgisches AlphabetFast
- Georgisch
- GeorgischBest
- GeorgischFast
- GeorgischOld
- GeorgischOldBest
- GeorgischOldFast
Download
Georgisches Sprachpaket [ქართული]
Installation
Das Erste, was wir tun müssen, ist das Georgische OCR-Paket in Ihrem .NET-Projekt zu installieren.
Beispielcode
Dieses C#-Codebeispiel zeigt, wie georgischer Text aus einem Bild oder PDF-Dokument mithilfe der IronOCR-Bibliothek gelesen wird.
// Ensure that the IronOCR library and the Georgian language pack are installed.
// You can install the package using the following NuGet command:
// PM> Install-Package IronOcr.Languages.Georgian
using IronOcr;
class Program
{
static void Main()
{
// Initialize a new instance of the IronTesseract class
var Ocr = new IronTesseract();
// Set the OCR language to Georgian
Ocr.Language = OcrLanguage.Georgian;
// Use a using statement to manage resources efficiently
using (var Input = new OcrInput(@"images\Georgian.png"))
{
// Read the image and extract text
var Result = Ocr.Read(Input);
// Obtain the recognized text from the OCR result
var AllText = Result.Text;
// Output the recognized text to the console
Console.WriteLine("Recognized Text: " + AllText);
}
}
}' Ensure that the IronOCR library and the Georgian language pack are installed.
' You can install the package using the following NuGet command:
' PM> Install-Package IronOcr.Languages.Georgian
Imports IronOcr
Friend Class Program
Shared Sub Main()
' Initialize a new instance of the IronTesseract class
Dim Ocr = New IronTesseract()
' Set the OCR language to Georgian
Ocr.Language = OcrLanguage.Georgian
' Use a using statement to manage resources efficiently
Using Input = New OcrInput("images\Georgian.png")
' Read the image and extract text
Dim Result = Ocr.Read(Input)
' Obtain the recognized text from the OCR result
Dim AllText = Result.Text
' Output the recognized text to the console
Console.WriteLine("Recognized Text: " & AllText)
End Using
End Sub
End ClassDieses Skript initialisiert eine OCR-Engine, die für die georgische Sprache konfiguriert ist, verarbeitet eine angegebene Bilddatei und gibt den extrahierten Text aus.

Curtis Chau hat einen Bachelor-Abschluss in Informatik von der Carleton University und ist spezialisiert auf Frontend-Entwicklung mit Expertise in Node.js, TypeScript, JavaScript und React. Leidenschaftlich widmet er sich der Erstellung intuitiver und ästhetisch ansprechender Benutzerschnittstellen und arbeitet gerne mit modernen Frameworks sowie der Erstellung gut strukturierter, optisch ansprechender Handbücher.