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 for .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:
- GeorgianAlphabet
- GeorgianAlphabetBest
- GeorgianAlphabetFast
- Georgian
- GeorgianBest
- GeorgianFast
- GeorgianOld
- GeorgianOldBest
- GeorgianOldFast
Download
Georgisches Sprachpaket [ქართული]
Installation
Das Erste, was wir tun müssen, ist das Georgische OCR-Paket in Ihrem .NET-Projekt zu installieren.
Install-Package IronOcr.Languages.Georgian
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
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 Class
Dieses Skript initialisiert eine OCR-Engine, die für die georgische Sprache konfiguriert ist, verarbeitet eine angegebene Bilddatei und gibt den extrahierten Text aus.

