テルグ語OCR in C# と .NET
Curtis Chau
Updated: 2026年4月23日
このドキュメントの他のバージョン:
IronOCR は、.NET コーダーがテルグ語を含む 126 の言語で画像や PDF ドキュメントからテキストを読み取ることを可能にする C# ソフトウェア コンポーネントです。
これはTesseractの高度なフォークであり、.NET開発者専用に構築され、速度と精度の両方で他のTesseractエンジンを定期的に上回ります。
IronOcr.Languages.Telugu の内容
このパッケージには、テルグ語に関連する .NET 用の OCR 言語モデルがいくつか含まれています。
- テルグ語
- テルグ語Best
- テルグ語Fast
- テルグ語Alphabet
- テルグ語AlphabetBest
- テルグ語アルファベット高速
ダウンロード
テルグ語パック [తలుగు]
インストール
最初のステップは、テルグ語OCR パッケージを .NET プロジェクトにインストールすることです。
Code Example
これは、画像または PDF ドキュメントからテルグ語のテキストを読み取る C# コード例です。
// Ensure that you have installed the IronOcr.Languages.Telugu package before running this code.
using IronOcr;
public class TeluguOcrExample
{
public static void Main()
{
// Create a new IronTesseract instance
var Ocr = new IronTesseract();
// Specify the OCR language as Telugu
Ocr.Language = OcrLanguage.Telugu;
// Create a new OcrInput and specify the path to the image or PDF
using (var Input = new OcrInput(@"images\Telugu.png"))
{
// Perform OCR on the input file
var Result = Ocr.Read(Input);
// Extract and store the recognized text
var AllText = Result.Text;
// Output the recognized text to the console (optional)
Console.WriteLine(AllText);
}
}
}Imports IronOcr
Public Class TeluguOcrExample
Public Shared Sub Main()
' Create a new IronTesseract instance
Dim Ocr As New IronTesseract()
' Specify the OCR language as Telugu
Ocr.Language = OcrLanguage.Telugu
' Create a new OcrInput and specify the path to the image or PDF
Using Input As New OcrInput("images\Telugu.png")
' Perform OCR on the input file
Dim Result = Ocr.Read(Input)
' Extract and store the recognized text
Dim AllText = Result.Text
' Output the recognized text to the console (optional)
Console.WriteLine(AllText)
End Using
End Sub
End Classこのコード スニペットは、IronOCR パッケージを使用して OCR エンジンを初期化し、OCR 処理用にテルグ語を設定し、ユーザーが指定した入力画像ファイルからテキストを読み取ります。

テクニカルライター
Curtis Chauは、カールトン大学でコンピュータサイエンスの学士号を取得し、Node.js、TypeScript、JavaScript、およびReactに精通したフロントエンド開発を専門としています。直感的で美しいユーザーインターフェースを作成することに情熱を持ち、Curtisは現代のフレームワークを用いた開発や、構造の良い視覚的に魅力的なマニュアルの作成を楽しんでいます。
...
詳しく読む