使用 IronOCR 處理方程式
This article was translated from English: Does it need improvement?
TranslatedView the article in English
IronOCR 能讀取方程式嗎?
IronOCR 使用 Tesseract 4/5,開箱即用,讀取方程式的效果應該相當不錯,不過您可能需要嘗試更詳細的設定選項:
您也可以為 IronOCR 新增自訂語言套件:了解自訂語言套件
此外,還有一個 EQU 方程式偵測語言包: EQU 語言包
// C# Example to demonstrate reading equations using IronOCR
using IronOcr; // Import the IronOcr namespace
public class EquationOcrExample
{
public void ReadEquations(string imagePath)
{
// Instantiate the IronTesseract object
var Ocr = new IronTesseract();
// Load the custom EQU language for better equation detection
Ocr.Language = Ocr.Languages.Add("equ");
// Read and OCR the image containing equations
using (var Input = new OcrInput(imagePath))
{
// Extract OcrResult from the image
var Result = Ocr.Read(Input);
// Output the contents of the OCR result as text
System.Console.WriteLine(Result.Text);
}
}
}// C# Example to demonstrate reading equations using IronOCR
using IronOcr; // Import the IronOcr namespace
public class EquationOcrExample
{
public void ReadEquations(string imagePath)
{
// Instantiate the IronTesseract object
var Ocr = new IronTesseract();
// Load the custom EQU language for better equation detection
Ocr.Language = Ocr.Languages.Add("equ");
// Read and OCR the image containing equations
using (var Input = new OcrInput(imagePath))
{
// Extract OcrResult from the image
var Result = Ocr.Read(Input);
// Output the contents of the OCR result as text
System.Console.WriteLine(Result.Text);
}
}
}$vbLabelText $csharpLabel
在上面的範例中,IronOCR 使用 Tesseract OCR 引擎從影像檔案中讀取方程式。為了提高識別精度,載入了自訂的方程式語言包 ( equ )。 ReadEquations方法接受包含方程式的圖像的檔案路徑,執行 OCR,並輸出識別出的文字。
準備好開始了嗎?
Nuget 下載 5,299,091 | 版本: 2025.12 剛剛發布






