opencv 0.98.2

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

pub mod prelude {
	pub use super::core::VectorToVec;
	#[cfg(ocvrs_has_module_core)]
	pub use super::core::{MatConstIteratorTraitManual, MatTraitConstManual, MatTraitManual, MatxTrait, ModifyInplace};
}