Russian OCR in C# and .NET
이 문서의 다른 버전:
IronOCR은 .NET 개발자가 러시아어를 포함한 126개 언어로 된 이미지와 PDF 문서에서 텍스트를 읽을 수 있도록 해주는 C# 소프트웨어 구성 요소입니다.
이는 .NET 개발자 전용으로 제작된 Tesseract의 고급 포크 버전으로, 속도와 정확도 면에서 다른 Tesseract 엔진보다 뛰어난 성능을 보여줍니다.
IronOcr의 내용.언어.러시아어
이 패키지에는 .NET용 OCR 언어 46개가 포함되어 있습니다.
- 러시아어
- 러시안베스트
- 러시안패스트
다운로드
러시아어 언어 팩 [русский язык]
설치
먼저 러시아어 OCR 패키지를 .NET 프로젝트에 설치해야 합니다.
Install-Package IronOcr.Languages.Russian
코드 예제
이 C# 코드 예제는 이미지 또는 PDF 문서에서 러시아어 텍스트를 읽습니다.
// Import the IronOCR namespace
using IronOcr;
class Program
{
static void Main()
{
// Initialize IronTesseract, an OCR object
var Ocr = new IronTesseract();
// Set the OCR language to Russian
Ocr.Language = OcrLanguage.Russian;
// Create an OCR input for the Russian image
using (var Input = new OcrInput(@"images\Russian.png"))
{
// Perform OCR on the input image
var Result = Ocr.Read(Input);
// Extract all the recognized text
var AllText = Result.Text;
// Output the recognized text
System.Console.WriteLine(AllText);
}
}
}
// Import the IronOCR namespace
using IronOcr;
class Program
{
static void Main()
{
// Initialize IronTesseract, an OCR object
var Ocr = new IronTesseract();
// Set the OCR language to Russian
Ocr.Language = OcrLanguage.Russian;
// Create an OCR input for the Russian image
using (var Input = new OcrInput(@"images\Russian.png"))
{
// Perform OCR on the input image
var Result = Ocr.Read(Input);
// Extract all the recognized text
var AllText = Result.Text;
// Output the recognized text
System.Console.WriteLine(AllText);
}
}
}
' Import the IronOCR namespace
Imports IronOcr
Friend Class Program
Shared Sub Main()
' Initialize IronTesseract, an OCR object
Dim Ocr = New IronTesseract()
' Set the OCR language to Russian
Ocr.Language = OcrLanguage.Russian
' Create an OCR input for the Russian image
Using Input = New OcrInput("images\Russian.png")
' Perform OCR on the input image
Dim Result = Ocr.Read(Input)
' Extract all the recognized text
Dim AllText = Result.Text
' Output the recognized text
System.Console.WriteLine(AllText)
End Using
End Sub
End Class
- 위의 코드는 필요한 IronOCR 라이브러리를 가져오고, OCR 작업을 수행하는 데 사용되는 클래스인
IronTesseract을 초기화합니다. - 이것은 OCR 언어를
Ocr.Language = OcrLanguage.Russian를 사용하여 러시아어로 설정합니다. - 그런 다음
OcrInput클래스를 사용하여 지정된 이미지 파일Russian.png을 엽니다. Ocr객체의Read메서드는 이미지를 처리하고 텍스트를 인식하는 데 사용됩니다.- 마지막으로,
Result.Text에서 인식된 텍스트를 추출하고 출력합니다.

