opencv 0.76.3

Rust bindings for OpenCV
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(ocvrs_has_module_core)]
pub mod core;
#[cfg(ocvrs_has_module_dnn)]
pub mod dnn;
#[cfg(ocvrs_has_module_features2d)]
pub mod features2d;
pub mod sys;
pub mod types;

pub mod prelude {
	#[cfg(all(ocvrs_has_module_core, ocvrs_opencv_branch_32))]
	pub use super::core::MatSizeTraitConstManual;
	#[cfg(ocvrs_has_module_core)]
	pub use super::core::{MatConstIteratorTraitManual, MatTraitConstManual, MatTraitManual, MatxTrait, UMatTraitConstManual};
}