Handling Equations with IronOCR

This article was translated from English: Does it need improvement?
Translated
View the article in English

IronOCR 可以讀取方程式嗎? IronOCR 使用 Tesseract 4/5,開箱即用的閱讀方程式應該可以運作得相當好,不過您可能需要嘗試使用詳細的設定選項: [探索 Tesseract 配置變數](https://ironsoftware.com/csharp/ocr/how-to/iron-tesseract/) 您也可以在 IronOCR 中新增自訂語言套件:[瞭解自訂語言套件](https://ironsoftware.com/csharp/ocr/languages/#custom-language-example)。 另外還有 EQU Equation Detection Language Pack:[EQU Language Pack](https://github.com/tesseract-ocr/tessdata/blob/master/equ.traineddata) ```csharp // 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); } } } ``` 在上面的例子中,IronOCR 利用 Tesseract OCR 引擎從影像檔案中讀取方程式。自訂的方程式語言套件 (`equ`) 會被載入,以提高偵測的精確度。 `ReadEquations` 方法接受包含公式的影像的檔案路徑,執行 OCR 並輸出辨識的文字。

Curtis Chau
技術作家

Curtis Chau 擁有卡爾頓大學計算機科學學士學位,專注於前端開發,擅長於 Node.js、TypeScript、JavaScript 和 React。Curtis 熱衷於創建直觀且美觀的用戶界面,喜歡使用現代框架並打造結構良好、視覺吸引人的手冊。

除了開發之外,Curtis 對物聯網 (IoT) 有著濃厚的興趣,探索將硬體和軟體結合的創新方式。在閒暇時間,他喜愛遊戲並構建 Discord 機器人,結合科技與創意的樂趣。

準備好開始了嗎?
Nuget 下載 5,044,537 | 版本: 2025.11 剛剛發布