YoloDotNet 4.2.0

dotnet add package YoloDotNet --version 4.2.0
                    
NuGet\Install-Package YoloDotNet -Version 4.2.0
                    
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="YoloDotNet" Version="4.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="YoloDotNet" Version="4.2.0" />
                    
Directory.Packages.props
<PackageReference Include="YoloDotNet" />
                    
Project file
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 YoloDotNet --version 4.2.0
                    
#r "nuget: YoloDotNet, 4.2.0"
                    
#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 YoloDotNet@4.2.0
                    
#: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=YoloDotNet&version=4.2.0
                    
Install as a Cake Addin
#tool nuget:?package=YoloDotNet&version=4.2.0
                    
Install as a Cake Tool

<img src="https://github.com/NickSwardh/YoloDotNet/assets/35733515/994287a9-556c-495f-8acf-1acae8d64ac0" height=24> YoloDotNet v4.2 🚀

Blazing-fast, production-ready YOLO inference for .NET

YoloDotNet is a modular, lightweight C# library for real-time computer vision and YOLO-based inference in .NET.

It provides high-performance inference for modern YOLO model families (YOLOv5u through YOLOv26, YOLO-World, YOLO-E, and RT-DETR), with explicit control over execution, memory, and preprocessing.

Built on .NET 8, ONNX Runtime, and SkiaSharp, YoloDotNet intentionally avoids heavy computer vision frameworks such as OpenCV.
There is no Python runtime, no hidden preprocessing, and no implicit behavior — only the components required for fast, predictable inference on Windows, Linux, and macOS.

No Python. No magic. Just fast, deterministic YOLO — done properly for .NET.

⭐ Why YoloDotNet?

YOLOv5u YOLOv8-v26 YOLO-RT-DETR YOLO-World YOLO-E

YoloDotNet is designed for developers who need:

  • Pure .NET — no Python runtime, no scripts
  • Real performance — CPU, CUDA / TensorRT, OpenVINO, CoreML, DirectML
  • Explicit configuration — predictable accuracy and memory usage
  • Production readiness — engine caching, long-running stability
  • Multiple vision tasks — detection, OBB, segmentation, pose, classification

Ideal for desktop apps, backend services, and real-time vision pipelines that require deterministic behavior and full control.

🆕 What’s New v4.2

  • Added Region of Interest (ROI) support, allowing inference to run on selected areas of an image or video stream
    (useful for surveillance, monitoring zones, and performance-focused pipelines)
  • Added the option to draw edges on segmented objects for improved visual clarity
  • Added helper methods for JSON export:
    • ToJson() — convert inference results to JSON
    • SaveJson() — save inference results directly to a JSON file
  • Added helper methods for YOLO-formatted annotations:
    • ToYoloFormat() — convert results to YOLO annotation format
    • SaveYoloFormat() — save results as YOLO-compatible training data
  • Added GetContourPoints() helper for extracting ordered contour points from segmented objects
  • Updated YOLOv26 inference execution to align with other tasks, improving consistency and overall execution efficiency

📖 Full release history: CHANGELOG.md

See the demos
Practical, runnable examples showcasing YoloDotNet features are available in the demo projects:
👉 Browse the demo folder

🚀 Quick Start

💡 ONNX Model Export Requirements

  • For YOLOv26 models, export with opset=18
  • For YOLOv5u–YOLOv12, export with opset=17

Using the correct opset ensures optimal compatibility and performance with ONNX Runtime.
For more information on how to export models to ONNX, refer to https://docs.ultralytics.com/modes/export/

Example export commands (Ultralytics CLI):

# For YOLOv5u–YOLOv12 (opset 17)
yolo export model=yolov8n.pt format=onnx opset=17

# For YOLOv26 (opset 18)
yolo export model=yolo26n.pt format=onnx opset=18

Model License Notice:
YoloDotNet is MIT licensed, but most Ultralytics YOLO models are AGPL-3.0 or require a commercial license for commercial use.
You are responsible for ensuring your use of any model complies with its license.
See Ultralytics Model Licensing for details.

1️⃣ Install the core package

dotnet add package YoloDotNet

2️⃣ Install exactly one(!) execution provider

# CPU (recommended starting point)
dotnet add package YoloDotNet.ExecutionProvider.Cpu

# Hardware-accelerated execution (choose one)
dotnet add package YoloDotNet.ExecutionProvider.Cuda
dotnet add package YoloDotNet.ExecutionProvider.OpenVino
dotnet add package YoloDotNet.ExecutionProvider.CoreML
dotnet add package YoloDotNet.ExecutionProvider.DirectML

💡 Note: The CUDA execution provider includes optional TensorRT acceleration.
No separate TensorRT package is required.

3️⃣ Run object detection

using SkiaSharp;
using YoloDotNet;
using YoloDotNet.Models;
using YoloDotNet.Extensions;
using YoloDotNet.ExecutionProvider.Cpu;

using var yolo = new Yolo(new YoloOptions
{
    ExecutionProvider = new CpuExecutionProvider("model.onnx")
});

using var image = SKBitmap.Decode("image.jpg");

// Note: The IoU parameter is used for NMS-based models.
// For YOLOv10 and YOLOv26, IoU is ignored since post-processing is handled internally by the model.
var results = yolo.RunObjectDetection(image, confidence: 0.25, iou: 0.7);

image.Draw(results);
image.Save("result.jpg");

You’re now running YOLO inference in pure C#.

💡 Important: Accuracy Depends on Configuration

YOLO inference accuracy is not automatic.

Preprocessing settings such as image resize mode, sampling method, and confidence/IoU thresholds must match how the model was trained.
These settings directly control the accuracy–performance tradeoff and should be treated as part of the model itself.

📖 Before tuning models or comparing results, read:
👉 Accuracy & Configuration Guide

Supported Tasks

Classification Object Detection OBB Detection Segmentation Pose Estimation
<img src="https://user-images.githubusercontent.com/35733515/297393507-c8539bff-0a71-48be-b316-f2611c3836a3.jpg" width=300> <img src="https://user-images.githubusercontent.com/35733515/273405301-626b3c97-fdc6-47b8-bfaf-c3a7701721da.jpg" width=300> <img src="https://github.com/NickSwardh/YoloDotNet/assets/35733515/d15c5b3e-18c7-4c2c-9a8d-1d03fb98dd3c" width=300> <img src="https://github.com/NickSwardh/YoloDotNet/assets/35733515/3ae97613-46f7-46de-8c5d-e9240f1078e6" width=300> <img src="https://github.com/NickSwardh/YoloDotNet/assets/35733515/b7abeaed-5c00-4462-bd19-c2b77fe86260" width=300>
<sub>pexels.com</sub> <sub>pexels.com</sub> <sub>pexels.com</sub> <sub>pexels.com</sub> <sub>pexels.com</sub>

✅ Verified YOLO Models

The following YOLO models have been tested and verified with YoloDotNet using official Ultralytics exports and default heads.

Classification Object Detection Segmentation Pose Estimation OBB Detection
YOLOv8-cls<br>YOLOv11-cls<br>YOLOv12-cls<br>YOLOv26-cls YOLOv5u<br>YOLOv8<br>YOLOv9<br>YOLOv10<br>YOLOv11<br>YOLOv12<br>YOLOv26<br>RT-DETR YOLOv8-seg<br>YOLOv11-seg<br>YOLOv12-seg<br>YOLOv26-seg<br>YOLO-World (v2) YOLOv8-pose<br>YOLOv11-pose<br>YOLOv12-pose<br>YOLOv26-pose YOLOv8-obb<br>YOLOv11-obb<br>YOLOv12-obb<br>YOLOv26-obb<br>

📁 Demos

Hands-on examples are available in the demo folder:

👉 Browse the demo projects

Includes image inference, video streams, GPU acceleration, segmentation, and large-image workflows.

Execution Providers

Provider Windows Linux macOS Documentation
CPU CPU README
CUDA / TensorRT CUDA README
OpenVINO OpenVINO README
CoreML CoreML README
DirectML DirectML README

ℹ️ Only one execution provider package may be referenced.
Mixing providers will cause native runtime conflicts.

⚡ Performance Characteristics

YoloDotNet focuses on stable, low-overhead inference where runtime cost is dominated by the execution provider and model.

📊 Benchmarks: /test/YoloDotNet.Benchmarks

  • Stable latency after warm-up
  • Clean scaling from CPU → GPU → TensorRT
  • Predictable allocation behavior
  • Suitable for real-time and long-running services

🚀 Modular Execution Providers

  • Core package is provider-agnostic
  • Execution providers are separate NuGet packages
  • Native ONNX Runtime dependencies are isolated

Why this matters: fewer conflicts, predictable deployment, and production-safe behavior.

Support YoloDotNet

⭐ Star the repo
💬 Share feedback
🤝 Sponsor development

GitHub Sponsors
PayPal

License

MIT License

Copyright (c) Niklas Swärd

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Model Licensing & Responsibility

  • YoloDotNet is licensed under the MIT License and provides an ONNX inference engine for YOLO models exported using Ultralytics YOLO tooling.

  • This project does not include, distribute, download, or bundle any pretrained models.

  • Users must supply their own ONNX models.

  • YOLO ONNX models produced using Ultralytics tooling are typically licensed under AGPL-3.0 or a separate commercial license from Ultralytics.

  • YoloDotNet does not impose, modify, or transfer any license terms related to user-supplied models.

  • Users are solely responsible for ensuring that their use of any model complies with the applicable license terms, including requirements related to commercial use, distribution, or network deployment.

Product 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 was computed.  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.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on YoloDotNet:

Package Downloads
Snet.Yolo.Server

识别组件:Server(Yolo多模型管理与智能识别服务,检测、定向检测、分类、分割、姿态)

YoloDotNet.ExecutionProvider.Cpu

YoloDotNet.ExecutionProvider.Cpu provides a fully portable CPU-based execution provider for YoloDotNet using ONNX Runtime’s built-in CPU backend. This execution provider requires no additional system-level dependencies and works out of the box on Windows, Linux, and macOS. It is ideal for development, testing, CI environments, and production scenarios where GPU or NPU acceleration is unavailable. The CPU provider integrates seamlessly with YoloDotNet’s modular execution provider architecture introduced in v4.0 and supports all inference tasks including object detection, segmentation, classification, pose estimation, and OBB detection.

VL.YoloDotNet

YoloDotNet for VL

YoloDotNet.ExecutionProvider.Cuda

CUDA and TensorRT execution provider for YoloDotNet, enabling GPU-accelerated inference on NVIDIA hardware using ONNX Runtime. This execution provider supports CUDA for general GPU acceleration and optional NVIDIA TensorRT integration for maximum performance, lower latency, and optimized engine execution. It is designed for high-throughput and real-time inference workloads on Windows and Linux systems with supported NVIDIA GPUs. The provider is fully compatible with the YoloDotNet core library and follows the new modular, execution-provider-agnostic architecture introduced in YoloDotNet v4.0.

YoloDotNet.ExecutionProvider.OpenVino

YoloDotNet OpenVINO Execution Provider enables optimized inference using Intel® OpenVINO™ on supported Intel CPUs, integrated GPUs, and accelerators. This execution provider integrates ONNX Runtime with Intel OpenVINO to deliver high-performance, low-latency inference on Intel hardware across Windows and Linux. It is ideal for CPU-focused deployments, edge systems, and environments where Intel hardware acceleration is preferred over CUDA-based solutions. The provider is fully modular and designed to work with the execution-provider-agnostic YoloDotNet core library introduced in v4.0. Only one execution provider should be referenced per project.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on YoloDotNet:

Repository Stars
Webreaper/Damselfly
Damselfly is a server-based Photograph Management app. The goal of Damselfly is to index an extremely large collection of images, and allow easy search and retrieval of those images, using metadata such as the IPTC keyword tags, as well as the folder and file names. Damselfly includes support for object/face detection.
Version Downloads Last Updated
4.2.0 1,066 2/8/2026
4.1.0 659 1/17/2026
4.0.0 1,913 12/14/2025
3.1.1 7,922 7/31/2025
3.1.0 340 7/30/2025
3.0.0 779 7/15/2025
2.3.0 8,034 3/15/2025
2.2.0 10,035 10/13/2024
2.1.0 1,414 10/6/2024
2.0.0 3,753 7/12/2024
1.7.0 1,206 5/2/2024
1.6.0 679 4/4/2024
1.5.0 368 3/14/2024
1.4.0 2,373 3/6/2024
1.3.0 756 2/25/2024
1.2.0 417 2/5/2024
1.1.0 353 1/17/2024
1.0.0 529 12/8/2023

YoloDotNet v4.2 focuses on usability, ROI support, and segmentation enhancements.

This release adds Region of Interest (ROI) support, allowing inference on specific areas of an image or video stream — useful for surveillance, monitoring zones, and performance optimization.

New helper methods include ToJson() and SaveJson() for exporting results as JSON, ToYoloFormat() and SaveYoloFormat() for YOLO-annotated data export, and GetContourPoints() for extracting ordered contour points from segmented objects.

Segmentation now supports drawing edges on segmented objects.

Updated YOLOv26 inference execution to align with other tasks, improving consistency and overall execution efficiency.

Check out the demo projects on GitHub for hands-on examples: https://github.com/NickSwardh/YoloDotNet/tree/master/Demo