* Using Rayon to accelarate YOLO post-processing

* Refactor YOLO with outputs format

* Optimize `conf * clss` for yolov5 v6 v7

* Add depth-anything-v2

* Update README.md

* Update CHANGELOG.md
This commit is contained in:
Jamjamjon
2024-07-12 19:46:48 +08:00
committed by GitHub
parent 25d9088e2e
commit edc3a8897c
69 changed files with 1563 additions and 1203 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "usls"
version = "0.0.4"
version = "0.0.5"
edition = "2021"
description = "A Rust library integrated with ONNXRuntime, providing a collection of ML models."
repository = "https://github.com/jamjamjon/usls"
@ -11,7 +11,7 @@ exclude = ["assets/*", "examples/*"]
[dependencies]
clap = { version = "4.2.4", features = ["derive"] }
ndarray = { version = "0.15.6" }
ndarray = { version = "0.15.6", features = ["rayon"] }
ort = { version = "2.0.0-rc.2", default-features = false, features = [
"load-dynamic",
"copy-dylibs",