觀看David Jones, Agorus, 使用Iron Suite創造新效能
觀看Milan Jovanović使用IronPDF
觀看我們的團隊產品演示
超越簡單文本。使用專用的高性能工具準確閱讀護照(MRZ)、支票(MICR)、車牌和條形碼。
建立強大的自動車牌辨識 (ANPR) 系統,用於自動停車管理、安全閘門存取和車輛追蹤。我們的引擎經過訓練,能夠從各種角度、距離和光線條件準確讀取車牌。
using IronOcr; using System; var ocr = new IronTesseract(); ocr.Configuration.WhiteListCharacters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_"; using var inputLicensePlate = new OcrInput(); inputLicensePlate.LoadImage("plate.jpeg"); // Read license plate OcrLicensePlateResult result = ocr.ReadLicensePlate(inputLicensePlate); // Retrieve license plate number and confidence value string output = $"{result.Text}\nResult Confidence: {result.Confidence}"; Console.WriteLine(output);
透過即時從國際護照和身份證的機器可讀區 (MRZ) 擷取資料,簡化身份驗證和客戶上線程序。消除手動輸入錯誤,加速您的登機或合規流程。
using IronOcr; using System; // Instantiate OCR engine var ocr = new IronTesseract(); using var inputPassport = new OcrInput(); inputPassport.LoadImage("passport.jpg"); // Perform OCR OcrPassportResult result = ocr.ReadPassport(inputPassport); // Output name and passport number Console.WriteLine(result.PassportInfo.GivenNames); Console.WriteLine(result.PassportInfo.PassportNumber);
可靠地讀取支票上的 E-13B MICR 字型,自動化銀行存款處理和財務工作流程。我們的專業引擎可確保路線號碼、帳號和支票金額等關鍵資料的最高精確度。
// Import the IronOCR namespace using IronOcr; // Create a new instance of IronTesseract for performing OCR operations var Ocr = new IronTesseract(); // Set the OCR language to MICR to recognize magnetic ink characters // Must have MICR (IronOcr.Languages.MICR) installed beforehand Ocr.Language = OcrLanguage.MICR; // Specify the file path of the input image containing MICR text using (var Input = new OcrInput()) { Input.LoadImage("sampleChequeImage.png"); // Run the OCR engine to read the MICR text from the input image var Result = Ocr.Read(Input); // Output the recognized text to the console Console.WriteLine(Result.Text); }
偵測並解碼所有主要的一維和二維條碼格式,包括 QR Code。適用於庫存管理、物流追蹤、銷售點系統和行動票務應用程式的多功能解決方案。
using IronOcr; // Instantiate IronTesseract IronTesseract ocrTesseract = new IronTesseract(); // Enable barcode reading ocrTesseract.Configuration.ReadBarCodes = true; // Add PDF using var imageInput = new OcrPdfInput("pdfWithBarcodes.pdf"); // Perform OCR OcrResult ocrResult = ocrTesseract.Read(imageInput); // Output detected barcodes and text values Console.WriteLine(ocrResult.Text); Console.WriteLine(ocrResult.Barcodes[0].Value);
使用電腦視覺的力量,以我們先進的訓練模型偵測文字。IronOCR 利用 OpenCV 識別影像中包含文字的區域,對於有大量雜訊的影像和文件中分散的文字區塊特別有幫助!
using IronOcr; var ocr = new IronTesseract(); using var input = new OcrInput(); input.LoadImage("sample.png"); // Make sure to also install IronOcr.Extensions.AdvancedScan to use this method input.FindTextRegion(Scale: 2.0, DilationAmount: 20, Binarize: true, Invert: true); OcrResult result = ocr.Read(input); string resultText = result.Text;
IronOCR 甚至可以輕鬆地從手寫圖像中提取文字。使用專門的方法,IronOCR 可以快速、有效率地掃描和擷取影像中的手寫文字。
Install-Package IronOcr
無需信用卡
試用表單已提交成功。您的試用密鑰應該在電子郵件裡。如果沒有,請聯繫support@ironsoftware.com
您的試用密鑰應該在電子郵件裡。如果沒有,請聯繫support@ironsoftware.com
在生產環境中測試而不帶水印。適用於您所需的任何地方。
獲得 30 天完整功能產品。幾分鐘內即可運行。
在您的產品試用期間全面訪問我們的支持技術團隊
產品與其關鍵功能的即時展示
獲取項目特定的功能建議
我們會回答您所有的問題,以確保您掌握所有需要的資訊。(絕無承諾)。
請檢查您的電子郵件以取得試用授權金鑰。
如果您沒有收到電子郵件,請啟動 support@ironsoftware.com
預約無需承諾的諮詢
完成以下表單或發送電子郵件至 sales@ironsoftware.com
您的詳細信息將始終保密。
預訂 30 分鐘的個人演示。
無須合約、無須卡號、無任何長期綁約。
版權所有 © Iron Software 2013-2025