置信度阈值 - ML
自 2023 年 12 月起,IronBarcode 已采用机器学习来增强其条码检测能力。设置 BarcodeReaderOptions 的 ConfidenceThreshold 属性,以确定 ML 模型检测有效的最低置信度。置信度阈值介于 0.0 和 1.0 之间,默认设置为 0.7。
对于不使用机器学习的条形码检测,可考虑使用 条形码.Slim 包装
using IronBarCode; BarcodeReaderOptions readerOptions = new BarcodeReaderOptions() { ExpectMultipleBarcodes = true, // Set minimum confidence level ConfidenceThreshold = 0.3, }; // And, apply: var results = BarcodeReader.Read("barcode.png", readerOptions);
Imports IronBarCode Private readerOptions As New BarcodeReaderOptions() With { .ExpectMultipleBarcodes = True, .ConfidenceThreshold = 0.3 } ' And, apply: Private results = BarcodeReader.Read("barcode.png", readerOptions)
Install-Package BarCode
自 2023 年 12 月起,IronBarcode 已采用机器学习来增强其条码检测能力。设置 BarcodeReaderOptions 的 ConfidenceThreshold 属性,以确定 ML 模型检测有效的最低置信度。置信度阈值介于 0.0 和 1.0 之间,默认设置为 0.7。
对于不使用机器学习的条形码检测,可考虑使用 条形码.Slim 包装