object-detection-opencv-rust 0.1.0

Object detection utilities in Rust programming language for YOLO-based neural networks in OpenCV ecosystem
[package]
name = "object-detection-opencv-rust"
repository = "https://github.com/LdDl/object-detection-opencv-rust"
readme = "README.md"
keywords = [
  "computer-vision",
  "object-detection",
  "yolo",
  "opencv",
  "yolo-v8",
]
license = "MIT"
version = "0.1.0"
edition = "2021"
authors = ["Dimitrii Lopanov <sexykdi@gmail.com>"]
exclude = ["/.github", "/ci", "/tools", "release.toml", "rustfmt.toml", "download_v3_tiny.sh", "download_v4_tiny.sh", "download_v7_tiny.sh", "download_v8_n.sh", "/images", "/pretrained"]
description = "Object detection utilities in Rust programming language for YOLO-based neural networks in OpenCV ecosystem"
homepage = "https://github.com/LdDl/object-detection-opencv-rust"
documentation = "https://docs.rs/object-detection-opencv-rust"
categories = [
  "algorithms",
  "neural-networks",
  "computer-vision",
  "mathematics",
  "science",
]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
name = "od_opencv"
path = "src/lib.rs"

[[example]]
name = "yolo_v3_tiny"

[[example]]
name = "yolo_v4_tiny"

[[example]]
name = "yolo_v7_tiny"

[[example]]
name = "yolo_v8_n"

[dependencies]
lazy_static = "1.4.0"
opencv = { version = "0.66", default-features = false, features = ["dnn", "imgcodecs", "imgproc"] }

[patch.crates-io]
cc = { git = "https://github.com/rust-lang/cc-rs.git", version = "1.0", tag = "1.0.79" }