Irish OCR in C# and .NET
이 문서의 다른 버전:
IronOCR은 .NET 개발자가 이미지 및 PDF 문서에서 126개의 언어, 포함된 아이리쉬을 읽을 수 있게 하는 C# 소프트웨어 구성 요소입니다.
이는 .NET 개발자 전용으로 개발된 Tesseract의 고급 포크 버전으로, 속도와 정확도 면에서 다른 Tesseract 엔진보다 뛰어난 성능을 보여줍니다.
IronOcr.Languages.Irish의 내용
이 패키지에는 .NET 용 OCR 언어 40개가 포함되어 있습니다.
- 아이리쉬
- IrishBest
- IrishFast
다운로드
아이리쉬 언어 팩 [Gaeilge]
설치
먼저 해야 할 일은 귀하의 .NET 프로젝트에 아이리쉬 OCR 패키지를 설치하는 것입니다.
Install-Package IronOcr.Languages.Irish
코드 예제
이 C# 코드 예제는 이미지나 PDF 문서에서 아이리쉬 텍스트를 읽습니다.
// Install the IronOCR Irish language package via NuGet:
// PM> Install-Package IronOcr.Languages.Irish
using IronOcr;
class IrishOcrExample
{
static void Main()
{
// Create a new instance of the IronTesseract OCR engine
var Ocr = new IronTesseract();
// Set the language to Irish for OCR processing
Ocr.Language = OcrLanguage.Irish;
// Using the OCR input, specify the path to the image containing Irish text
using (var Input = new OcrInput(@"images\Irish.png"))
{
// Perform OCR to read the Irish text from the image
var Result = Ocr.Read(Input);
// Get the recognized text as a string from the OCR result
var AllText = Result.Text;
// Output the recognized text
Console.WriteLine(AllText);
}
}
}
// Install the IronOCR Irish language package via NuGet:
// PM> Install-Package IronOcr.Languages.Irish
using IronOcr;
class IrishOcrExample
{
static void Main()
{
// Create a new instance of the IronTesseract OCR engine
var Ocr = new IronTesseract();
// Set the language to Irish for OCR processing
Ocr.Language = OcrLanguage.Irish;
// Using the OCR input, specify the path to the image containing Irish text
using (var Input = new OcrInput(@"images\Irish.png"))
{
// Perform OCR to read the Irish text from the image
var Result = Ocr.Read(Input);
// Get the recognized text as a string from the OCR result
var AllText = Result.Text;
// Output the recognized text
Console.WriteLine(AllText);
}
}
}
Imports IronOcr
Module IrishOcrExample
Sub Main()
' Create a new instance of the IronTesseract OCR engine
Dim Ocr As New IronTesseract()
' Set the language to Irish for OCR processing
Ocr.Language = OcrLanguage.Irish
' Using the OCR input, specify the path to the image containing Irish text
Using Input As New OcrInput("images\Irish.png")
' Perform OCR to read the Irish text from the image
Dim Result = Ocr.Read(Input)
' Get the recognized text as a string from the OCR result
Dim AllText As String = Result.Text
' Output the recognized text
Console.WriteLine(AllText)
End Using
End Sub
End Module
이 예에서는 IronOCR 라이브러리의 IronTesseract 클래스를 활용하여 아일랜드어로 작성된 텍스트가 포함된 이미지에 대해 OCR을 수행합니다. OcrInput 객체는 이미지를 로드하는 데 사용되며, Ocr.Read 메서드는 이미지를 처리하여 텍스트를 추출합니다. 결과 텍스트는 AllText 변수에 저장된 후 콘솔에 출력됩니다.

