我們對於提供最先進的QR碼讀取體驗的承諾體現在我們整合了最新的機器學習(ML)模型。 透過採用尖端的ML技術,我們已將QR碼讀取提升到新的境界。 我們的先進ML模型使您的應用程式能夠以無與倫比的準確性和效率來解碼QR碼,即使在具有挑戰性的情境中也是如此。 無論您是從圖片、影片還是即時相機畫面中讀取QR碼,我們的ML驅動解決方案都能確保您迅速並可靠地獲取所需的資訊。 這項創新不僅簡化了資料提取,也提高了安全性,因為它可以區分合法的QR碼和潛在的威脅。 有了我們的ML模型,您可以放心,您的QR碼讀取能力處於技術的前沿,為您的使用者提供無縫且可靠的體驗。
了解如何使用IronQR從圖片中讀取QR碼。using IronQr;
using IronSoftware.Drawing;
using System.Collections.Generic;
// Open the asset to read a QR Code from
var inputBmp = AnyBitmap.FromFile("IMAGE_TO_READ.png");
// Load the asset into QrImageInput
QrImageInput imageInput = new QrImageInput(inputBmp);
// Create a QR Reader object
QrReader reader = new QrReader();
// Read the Input an get all embedded QR Codes
IEnumerable<QrResult> results = reader.Read(imageInput);
Imports IronQr
Imports IronSoftware.Drawing
Imports System.Collections.Generic
' Open the asset to read a QR Code from
Dim inputBmp = AnyBitmap.FromFile("IMAGE_TO_READ.png")
' Load the asset into QrImageInput
Dim imageInput As New QrImageInput(inputBmp)
' Create a QR Reader object
Dim reader As New QrReader()
' Read the Input an get all embedded QR Codes
Dim results As IEnumerable(Of QrResult) = reader.Read(imageInput)