LTW.YoloDotNet.OpenVINO.Execution.Provider
1.1.1-aotfix.1
This is a prerelease version of LTW.YoloDotNet.OpenVINO.Execution.Provider.
dotnet add package LTW.YoloDotNet.OpenVINO.Execution.Provider --version 1.1.1-aotfix.1
NuGet\Install-Package LTW.YoloDotNet.OpenVINO.Execution.Provider -Version 1.1.1-aotfix.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LTW.YoloDotNet.OpenVINO.Execution.Provider" Version="1.1.1-aotfix.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LTW.YoloDotNet.OpenVINO.Execution.Provider" Version="1.1.1-aotfix.1" />
<PackageReference Include="LTW.YoloDotNet.OpenVINO.Execution.Provider" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LTW.YoloDotNet.OpenVINO.Execution.Provider --version 1.1.1-aotfix.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: LTW.YoloDotNet.OpenVINO.Execution.Provider, 1.1.1-aotfix.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package LTW.YoloDotNet.OpenVINO.Execution.Provider@1.1.1-aotfix.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LTW.YoloDotNet.OpenVINO.Execution.Provider&version=1.1.1-aotfix.1&prerelease
#tool nuget:?package=LTW.YoloDotNet.OpenVINO.Execution.Provider&version=1.1.1-aotfix.1&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
信息
YoloDotNet 使用模块化执行器在不同硬件后端上运行推理。 每个执行器都针对特定平台或加速器,并且可能需要额外的系统级依赖(如运行时、驱动或 SDK)。
仅安装 NuGet 包并不总是足够——正确配置取决于所选执行器和目标系统。
本文档说明 OpenVINO 执行器 的安装与使用方式。
核心库要求
所有执行器都依赖核心 YoloDotNet 包。
NuGet 包
dotnet add package YoloDotNet
执行器 - OpenVINO
OpenVINO 执行器基于 Intel® OpenVINO™,可在受支持的 Intel® CPU、GPU 与 NPU 上实现优化与硬件加速推理。 它特别适合 Intel 硬件环境以及对 CPU/NPU 利用效率要求较高的边缘部署场景。
⚠️ 注意
此执行器依赖 Intel® OpenVINO™ Runtime。
环境要求
- OpenVINO 支持的 Intel CPU、GPU 或 NPU
- Windows 或 Linux(x64)
- Intel® OpenVINO™ Runtime
下载与安装
下载并安装适用于你平台的 Intel® OpenVINO™。
NuGet 包
dotnet add package YoloDotNet.ExecutionProvider.OpenVino
YoloDotNet.ExecutionProvider.OpenVino v1.1 需要 YoloDotNet 4.1 版本。
使用示例:
using var yolo = new Yolo(new YoloOptions
{
ExecutionProvider = new OpenVinoExecutionProvider(
model: "path/to/model.onnx",
// 若未提供 OpenVINO 配置,默认使用 OpenVINO CPU 设备。
openVino: new OpenVino()
{
DeviceType = "GPU", // 设备类型:"CPU"、"GPU"、"MYRIAD" 等
Precision = Precision.FP16,
CachePath = Path.Combine("path/to/cache/folder"),
ModelPriority = ModelPriority.HIGH
}
),
// ...其他选项
});
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Intel.ML.OnnxRuntime.OpenVino (>= 1.22.0)
- LTW.YoloDotNet.Core (>= 4.2.1-AotFix.1)
-
net8.0
- Intel.ML.OnnxRuntime.OpenVino (>= 1.22.0)
- LTW.YoloDotNet.Core (>= 4.2.1-AotFix.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.1.1-aotfix.1 | 44 | 5/6/2026 |