cu-dynthreshold 0.9.1

Image Dynamic thresholding for Copper.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    let gst_enabled = std::env::var("CARGO_FEATURE_GST").is_ok();
    if !gst_enabled {
        println!(
            "cargo:warning=GStreamer feature (gst) is not enabled. Skipping cu_dynthreshold build."
        );
    }
    println!(
        "cargo:rustc-env=LOG_INDEX_DIR={}",
        std::env::var("OUT_DIR").unwrap()
    );
}