From 94f77368a0028d473c070dbc804f72eb92779305 Mon Sep 17 00:00:00 2001 From: Jamjamjon <51357717+jamjamjon@users.noreply.github.com> Date: Sat, 11 May 2024 00:01:49 +0800 Subject: [PATCH] Update YOLOv8-ONNXRuntime-Rust README (#11773) Co-authored-by: UltralyticsAssistant Co-authored-by: Glenn Jocher --- examples/README.md | 1 + examples/YOLOv8-ONNXRuntime-Rust/README.md | 11 +++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/examples/README.md b/examples/README.md index 42c3bd5d..e1a9b864 100644 --- a/examples/README.md +++ b/examples/README.md @@ -19,6 +19,7 @@ This repository features a collection of real-world applications and walkthrough | [YOLOv8 Segmentation ONNXRuntime Python](./YOLOv8-Segmentation-ONNXRuntime-Python) | Python/ONNXRuntime | [jamjamjon](https://github.com/jamjamjon) | | [YOLOv8 LibTorch CPP](./YOLOv8-LibTorch-CPP-Inference) | C++/LibTorch | [Myyura](https://github.com/Myyura) | | [YOLOv8 OpenCV INT8 TFLite Python](./YOLOv8-OpenCV-int8-tflite-Python) | Python | [Wamiq Raza](https://github.com/wamiqraza) | +| [YOLOv8 All Tasks ONNXRuntime Rust](./YOLOv8-ONNXRuntime-Rust) | Rust/ONNXRuntime | [jamjamjon](https://github.com/jamjamjon) | ### How to Contribute diff --git a/examples/YOLOv8-ONNXRuntime-Rust/README.md b/examples/YOLOv8-ONNXRuntime-Rust/README.md index 9594700b..e4cfd7f5 100644 --- a/examples/YOLOv8-ONNXRuntime-Rust/README.md +++ b/examples/YOLOv8-ONNXRuntime-Rust/README.md @@ -1,10 +1,17 @@ # YOLOv8-ONNXRuntime-Rust for All the Key YOLO Tasks -This repository provides a Rust demo for performing YOLOv8 tasks like `Classification`, `Segmentation`, `Detection` and `Pose Detection` using ONNXRuntime. +This repository provides a Rust demo for performing YOLOv8 tasks like `Classification`, `Segmentation`, `Detection`, `Pose Detection` and `OBB` using ONNXRuntime. + +## Recently Updated + +- Add YOLOv8-OBB demo +- Update ONNXRuntime to 1.17.x + +Newly updated YOLOv8 example code is located in this repository (https://github.com/jamjamjon/usls/tree/main/examples/yolov8) ## Features -- Support `Classification`, `Segmentation`, `Detection`, `Pose(Keypoints)-Detection` tasks. +- Support `Classification`, `Segmentation`, `Detection`, `Pose(Keypoints)-Detection`, `OBB` tasks. - Support `FP16` & `FP32` ONNX models. - Support `CPU`, `CUDA` and `TensorRT` execution provider to accelerate computation. - Support dynamic input shapes(`batch`, `width`, `height`).