darknet-rust: A Rust bindings for AlexeyAB's Darknet

The crate is a Rust wrapper for AlexeyAB's Darknet.

It provides the following features:

Minimal rustc version: 1.43.0

Version 0.3 changes:

Examples

The tinyyolov3inference example automatically downloads the YOLOv3 tiny weights, and produces inference results in output directory.

sh cargo run --release --example tiny_yolov3_inference

The run_inference example is an utility program that you can test a combination of model configs and weights on image files. For example, you can test the YOLOv4 mode.

sh cargo run --release --example run_inference -- \ --label-file darknet/data/coco.names \ --model-cfg darknet/cfg/yolov4.cfg \ --weights yolov4.weights \ darknet/data/*.jpg

Read the example code in examples/ to understand the actual usage. More model configs and weights can be found here: (https://pjreddie.com/darknet/yolo/).

Usage

Add our crate to your Cargo.toml. You may take a look at the API documentation.

darknet = "^0.3.0"

We suggest earlier users update to newer version from 0.1. There are several memory leakage and several bugs fixed.

Cargo Features

License

The crate is licensed under MIT.

Credits

Huge thanks to jerry73204