在生產環境中測試,無浮水印。
無論您在哪裡需要,它都能運作。
立即獲取 30 天完整功能版產品。
幾分鐘內即可完成安裝並開始使用。
在產品試用期間,您可隨時聯繫我們的技術支援團隊
超越純文字的範疇。透過專用且高效能的工具,精準讀取護照(MRZ)、支票(MICR)、車牌及BarCode。
建置強大的自動車牌辨識(ANPR)系統,應用於自動化停車管理、安全閘門通行及車輛追蹤。我們的引擎經過訓練,能從各種角度、距離及光線條件下精準讀取車牌。
學習如何:使用 IronOCR 讀取車牌using IronOcr;
using System;
var ocr = new IronTesseract();
ocr.Co/nfiguration.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.Co/nfidence}";
Console.WriteLine(output);
透過即時擷取國際護照及身分證的機器可讀區(MRZ)資料,簡化身分驗證與客戶入駐流程。消除手動輸入錯誤,並加速您的報到或合規流程。
了解如何:在 C# 中使用 Read Passportusing 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);
// 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);
}
可偵測並解碼所有主要的一維及二維BarCode格式,包括 QR Code。這是一套適用於庫存管理、物流追蹤、銷售點系統及行動票務應用的多功能解決方案。
學習如何:在 .NET C# 中讀取 BarCode 與 QR 碼using IronOcr;
// Instantiate IronTesseract
IronTesseract ocrTesseract = new IronTesseract();
// Enable barcode reading
ocrTesseract.Co/nfiguration.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 識別影像中包含文字的區域,對於雜訊較多且文件中文字區塊分散的影像特別有用!
學習如何:電腦視覺 OCR 教學(授權、字幕、發票)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;