Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/325.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 网络核心的Tesseract OCR包装器?_C#_Asp.net Core_.net Core_Ocr_Tesseract - Fatal编程技术网

C# 网络核心的Tesseract OCR包装器?

C# 网络核心的Tesseract OCR包装器?,c#,asp.net-core,.net-core,ocr,tesseract,C#,Asp.net Core,.net Core,Ocr,Tesseract,我正在为网络核心搜索Tesseract OCR包装器;实际上,当我添加nuget Tesseract包时,会得到警告: Package 'Tesseract 3.0.2' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible wi

我正在为网络核心搜索Tesseract OCR包装器;实际上,当我添加nuget Tesseract包时,会得到警告:

Package 'Tesseract 3.0.2' was restored using 
'.NETFramework,Version=v4.6.1' instead of the project target framework 
'.NETCoreApp,Version=v2.1'. This package may not be fully compatible 
with your project.

有什么帮助吗?是否有一种替代方案运行良好?

新版本支持NetStandard 2.0:

考虑在此处添加问题-您以何种方式引用该软件包?直接连接到
.NET Core
项目或通过
标准库?您需要将外部依赖项添加到
标准
库中,然后在
.NET核心
项目中引用您的库。@DmitryPavlov我认为这是直接的;我正在这样做:
dotnet添加包Tesseract——版本3.2.0-alpha4
Prerelease版本使用Tesseract 4,这比3要好得多。