Movatterモバイル変換


[0]ホーム

URL:


Skip to main contentLinkMenuExpand(external link)DocumentSearchCopyCopied

Object detection with YOLOv3 in C# using OpenVINO Execution Provider:

  1. The object detection sample uses YOLOv3 Deep Learning ONNX Model from the ONNX Model Zoo.

  2. The sample involves presenting an image to the ONNX Runtime (RT), which uses the OpenVINO Execution Provider for ONNX RT to run inference on Intel® NCS2 stick (MYRIADX device). The sample uses ImageSharp for image processing and ONNX Runtime OpenVINO EP for inference.

The source code for this sample is availablehere.

How to build

Prerequisites

  1. Install.NET Core 3.1 or higher for you OS (Mac, Windows or Linux).

  2. The Intel® Distribution of OpenVINO toolkit

  3. Use any sample Image as input to the sample.

  4. Download the latest YOLOv3 model from the ONNX Model Zoo. This example was adapted fromONNX Model Zoo. Download the latest version of theYOLOv3 model from here.

Install ONNX Runtime for OpenVINO Execution Provider

Build steps

build instructions

Reference Documentation

Documentation

To build nuget packages of onnxruntime with openvino flavour

./build.sh--config Release--use_openvino MYRIAD_FP16--build_shared_lib--build_nuget

Build the sample C# Application

  1. Create a new console project
dotnet new console
  1. Install Nuget Packages of Onnxruntime andImageSharp

    1. Open the Visual C# Project file (.csproj) using VS19.
    2. Right click on project, navigate to manage Nuget Packages.
    3. Install SixLabors.ImageSharp Package from nuget.org.
    4. Install Microsoft.ML.OnnxRuntime.Managed and Microsoft.ML.OnnxRuntime.Openvino from your build directory nuget-artifacts.
  2. Compile the sample

dotnet build
  1. Run the sample
dotnet run [path-to-model] [path-to-image] [path-to-output-image]

References:

fasterrcnn_csharp

resnet50_csharp



[8]ページ先頭

©2009-2025 Movatter.jp