运行时复制异常

This article was translated from English: Does it need improvement?
Translated
View the article in English

此错误在少数情况下会发生,原因是我们的特殊 ML 模型的 DLLs 没有被正确复制。 在下面的解决方案中,您可以解决这个一次性错误。

Machine learning DLLs were not successfully automatically copied from the runtimes directory. This may occur on various operating systems or frameworks...

解决方案

  1. 解决此问题的方法是首先导航到 runtimes 文件夹。 在您的解决方案中,这将位于 /bin/Debug/net6.0/runtimes 下。(调试是一个示例,请按照您设置的配置进行调试) (如果使用不同的目标框架,请替换 "net6.0).

  2. 您将在 /runtimes/ 中看到所有支持的平台和操作系统作为目录,请进入适用于您的目录并手动将文件复制到输出目录 /bin/Debug/net6.0/ 中。

  3. 禁用ML扫描也可以防止错误。 但是,请注意,关闭ML扫描可能会使一些条形码更难检测,因为这一功能有助于条形码检测。
var myOptionsExample = new BarcodeReaderOptions
{
    // Not using ML in scanning
    ScanMode = BarcodeScanMode.OnlyBasicScan
};

var results = BarcodeReader.Read("barcode.png", myOptionsExample);
var myOptionsExample = new BarcodeReaderOptions
{
    // Not using ML in scanning
    ScanMode = BarcodeScanMode.OnlyBasicScan
};

var results = BarcodeReader.Read("barcode.png", myOptionsExample);
Dim myOptionsExample = New BarcodeReaderOptions With {.ScanMode = BarcodeScanMode.OnlyBasicScan}

Dim results = BarcodeReader.Read("barcode.png", myOptionsExample)
VB   C#