opencv-binding-generator 0.101.0

Binding generator for opencv crate
Documentation
1
2
3
4
5
6
7
8
use std::collections::HashMap;
use std::sync::LazyLock;

use crate::constant::ValueKind;

/// (rust_name, value_kind)
pub static CONST_TYPE_OVERRIDE: LazyLock<HashMap<&str, ValueKind>> =
	LazyLock::new(|| HashMap::from([("Mat_AUTO_STEP", ValueKind::Usize)]));