OCR haitiano en C# y .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English
Other versions of this document:

IronOCR es un componente de software C# que permite a los programadores de .NET leer texto de imágenes y documentos PDF en 126 idiomas, incluido el haitiano.

Es una rama avanzada de Tesseract, construida exclusivamente para desarrolladores de .NET y supera regularmente a otros motores de Tesseract tanto en velocidad como en precisión.

Contenido de IronOcr.Languages.Haitian

Este paquete contiene 46 idiomas OCR para .NET:

  • Haitiano
  • HaitianoBest
  • HaitianoFast

Descargar

Paquete de idioma haitiano [Kreyòl ayisyen]

Instalación

Lo primero que tenemos que hacer es instalar nuestro paquete de OCR haitiano en tu proyecto .NET.

Install-Package IronOCR.Languages.Haitian

Ejemplo de código

Este ejemplo de código C# lee texto haitiano de una imagen o documento PDF.

// Install the required IronOcr package
// PM> Install-Package IronOcr.Languages.Haitian

using IronOcr;

class HaitianOcrExample
{
    static void Main()
    {
        // Initialize the IronTesseract object
        var Ocr = new IronTesseract();

        // Set the OCR language to Haitian
        Ocr.Language = OcrLanguage.Haitian;

        // Using the OcrInput class, define the path to the image or PDF
        using (var Input = new OcrInput(@"images\Haitian.png"))
        {
            // Read the text from the image
            var Result = Ocr.Read(Input);

            // Extract the text found in the image
            var AllText = Result.Text;

            // Output the extracted text to the console
            Console.WriteLine(AllText);
        }
    }
}
// Install the required IronOcr package
// PM> Install-Package IronOcr.Languages.Haitian

using IronOcr;

class HaitianOcrExample
{
    static void Main()
    {
        // Initialize the IronTesseract object
        var Ocr = new IronTesseract();

        // Set the OCR language to Haitian
        Ocr.Language = OcrLanguage.Haitian;

        // Using the OcrInput class, define the path to the image or PDF
        using (var Input = new OcrInput(@"images\Haitian.png"))
        {
            // Read the text from the image
            var Result = Ocr.Read(Input);

            // Extract the text found in the image
            var AllText = Result.Text;

            // Output the extracted text to the console
            Console.WriteLine(AllText);
        }
    }
}
' Install the required IronOcr package
' PM> Install-Package IronOcr.Languages.Haitian

Imports IronOcr

Friend Class HaitianOcrExample
	Shared Sub Main()
		' Initialize the IronTesseract object
		Dim Ocr = New IronTesseract()

		' Set the OCR language to Haitian
		Ocr.Language = OcrLanguage.Haitian

		' Using the OcrInput class, define the path to the image or PDF
		Using Input = New OcrInput("images\Haitian.png")
			' Read the text from the image
			Dim Result = Ocr.Read(Input)

			' Extract the text found in the image
			Dim AllText = Result.Text

			' Output the extracted text to the console
			Console.WriteLine(AllText)
		End Using
	End Sub
End Class
$vbLabelText   $csharpLabel
  • Este fragmento de código demuestra cómo implementar OCR usando la biblioteca IronTesseract para leer texto haitiano de imágenes o documentos PDF.
  • Asegúrate de que la imagen o PDF está ubicado en la ruta especificada.
  • Este ejemplo asume que estás trabajando en un entorno de desarrollo compatible con .NET.