信頼閾値 - ML
2023年12月から、IronBarcodeはそのバーコード検出能力を強化するために機械学習を取り入れています。 BarcodeReaderOptions の ConfidenceThreshold プロパティを設定して、ML モデル検出が有効と見なされるための最小信頼レベルを確立します。 信頼度の閾値は0.0から1.0の間で、デフォルトは0.7に設定されています。
機械学習を使用せずにバーコード検出を行う場合は、Barcode.Slimパッケージ。
using IronBarCode; BarcodeReaderOptions readerOptions = new BarcodeReaderOptions() { ExpectMultipleBarcodes = true, // Set minimum confidence level ConfidenceThreshold = 0.3, }; // Read with the options applied var results = BarcodeReader.Read("barcode.png", readerOptions);
Imports IronBarCode Private readerOptions As New BarcodeReaderOptions() With { .ExpectMultipleBarcodes = True, .ConfidenceThreshold = 0.3 } ' Read with the options applied Private results = BarcodeReader.Read("barcode.png", readerOptions)
Install-Package BarCode
2023年12月から、IronBarcodeはそのバーコード検出能力を強化するために機械学習を取り入れています。 BarcodeReaderOptions の ConfidenceThreshold プロパティを設定して、ML モデル検出が有効と見なされるための最小信頼レベルを確立します。 信頼度の閾値は0.0から1.0の間で、デフォルトは0.7に設定されています。
機械学習を使用せずにバーコード検出を行う場合は、Barcode.Slimパッケージ。
10 の .NET API 製品 オフィス文書用