Mongolian OCR in C# and .NET
이 문서의 다른 버전:
IronOCR은 .NET 개발자가 몽골어를 포함한 126개 언어로 된 이미지와 PDF 문서에서 텍스트를 읽을 수 있도록 해주는 C# 소프트웨어 구성 요소입니다.
이는 .NET 개발자 전용으로 개발된 Tesseract의 고급 포크 버전으로, 속도와 정확도 면에서 다른 Tesseract 엔진보다 뛰어난 성능을 보여줍니다.
IronOcr.언어.몽골어의 내용
이 패키지에는 .NET용 OCR 언어 52개가 포함되어 있습니다.
- 몽골어
- 몽골리안베스트
- 몽골리안패스트
다운로드
몽골어 학습 팩 [монгол]
설치
첫 번째 단계는 .NET 프로젝트에 몽골어 OCR 패키지를 설치하는 것입니다.
Install-Package IronOcr.Languages.Mongolian
코드 예제
이 C# 코드 예제는 이미지 또는 PDF 문서에서 몽골어 텍스트를 읽습니다.
using IronOcr;
class Program
{
static void Main()
{
// Create a new instance of IronTesseract
var Ocr = new IronTesseract();
// Set the language to Mongolian
Ocr.Language = OcrLanguage.Mongolian;
// Define the input as an image located in the "images" directory
using (var Input = new OcrInput(@"images\Mongolian.png"))
{
// Perform OCR on the input image
var Result = Ocr.Read(Input);
// Extract all recognized text
var AllText = Result.Text;
// Output the recognized text to the console
Console.WriteLine(AllText);
}
}
}
using IronOcr;
class Program
{
static void Main()
{
// Create a new instance of IronTesseract
var Ocr = new IronTesseract();
// Set the language to Mongolian
Ocr.Language = OcrLanguage.Mongolian;
// Define the input as an image located in the "images" directory
using (var Input = new OcrInput(@"images\Mongolian.png"))
{
// Perform OCR on the input image
var Result = Ocr.Read(Input);
// Extract all recognized text
var AllText = Result.Text;
// Output the recognized text to the console
Console.WriteLine(AllText);
}
}
}
Imports IronOcr
Friend Class Program
Shared Sub Main()
' Create a new instance of IronTesseract
Dim Ocr = New IronTesseract()
' Set the language to Mongolian
Ocr.Language = OcrLanguage.Mongolian
' Define the input as an image located in the "images" directory
Using Input = New OcrInput("images\Mongolian.png")
' Perform OCR on the input image
Dim Result = Ocr.Read(Input)
' Extract all recognized text
Dim AllText = Result.Text
' Output the recognized text to the console
Console.WriteLine(AllText)
End Using
End Sub
End Class
이 예제는 IronOCR을 사용하여 몽골어 텍스트 이미지에 광학 문자 인식(OCR)을 수행하는 방법을 보여줍니다. 이 프로그램은 OCR 엔진을 초기화하고, 언어를 설정하고, 이미지 입력을 처리하여 인식된 텍스트를 검색하고 표시합니다.

