IronBarcode 故障排除 误报 False Positives Curtis Chau 已更新:六月 1, 2025 Download IronBarcode NuGet 下载 DLL 下载 Start Free Trial Copy for LLMs Copy for LLMs Copy page as Markdown for LLMs Open in ChatGPT Ask ChatGPT about this page Open in Gemini Ask Gemini about this page Open in Grok Ask Grok about this page Open in Perplexity Ask Perplexity about this page Share Share on Facebook Share on X (Twitter) Share on LinkedIn Copy URL Email article This article was translated from English: Does it need improvement? Translated View the article in English How to Remove False Positives? False positives in barcode reading can occur when complex background patterns resemble barcodes or when noise and artifacts create unintended marks that the reader mistakenly identifies as valid barcodes. The following steps can be taken to remove false positives from IronBarcode's reading output: Specify Expected Barcode Formats: Configure IronBarcode to read only the barcode formats you expect. A complete list of options is available here: BarcodeEncoding. Enable the RemoveFalsePositive Property: When scanning for barcodes, IronBarcode searches for "candidate" regions in an image that most likely resemble a barcode, then attempts to decode those regions. By setting this property to true, IronBarcode will only decode regions that have no errors in their encoding. By default, RemoveFalsePositive is already set to true. using IronBarCode; class BarcodeExample { static void Main() { // Create a BarcodeReaderOptions object with specific parameters. BarcodeReaderOptions myOptionsExample = new BarcodeReaderOptions() { // Expect and return barcode results for only the Code 39 type. ExpectBarcodeTypes = IronBarCode.BarcodeEncoding.Code39, // Enable removal of false positives by setting to true. RemoveFalsePositive = true }; // Read the barcode from the specified image file using the given options. var results = BarcodeReader.Read("barcode.png", myOptionsExample); // Process the results here, e.g., display them, log them, etc. } } using IronBarCode; class BarcodeExample { static void Main() { // Create a BarcodeReaderOptions object with specific parameters. BarcodeReaderOptions myOptionsExample = new BarcodeReaderOptions() { // Expect and return barcode results for only the Code 39 type. ExpectBarcodeTypes = IronBarCode.BarcodeEncoding.Code39, // Enable removal of false positives by setting to true. RemoveFalsePositive = true }; // Read the barcode from the specified image file using the given options. var results = BarcodeReader.Read("barcode.png", myOptionsExample); // Process the results here, e.g., display them, log them, etc. } } Imports IronBarCode Friend Class BarcodeExample Shared Sub Main() ' Create a BarcodeReaderOptions object with specific parameters. Dim myOptionsExample As New BarcodeReaderOptions() With { .ExpectBarcodeTypes = IronBarCode.BarcodeEncoding.Code39, .RemoveFalsePositive = True } ' Read the barcode from the specified image file using the given options. Dim results = BarcodeReader.Read("barcode.png", myOptionsExample) ' Process the results here, e.g., display them, log them, etc. End Sub End Class $vbLabelText $csharpLabel Curtis Chau 立即与工程团队聊天 技术作家 Curtis Chau 拥有卡尔顿大学的计算机科学学士学位,专注于前端开发,精通 Node.js、TypeScript、JavaScript 和 React。他热衷于打造直观且美观的用户界面,喜欢使用现代框架并创建结构良好、视觉吸引力强的手册。除了开发之外,Curtis 对物联网 (IoT) 有浓厚的兴趣,探索将硬件和软件集成的新方法。在空闲时间,他喜欢玩游戏和构建 Discord 机器人,将他对技术的热爱与创造力相结合。 准备开始了吗? Nuget 下载 1,935,276 | 版本: 2025.11 刚刚发布 免费 NuGet 下载 总下载量:1,935,276 查看许可证