opencv 0.46.2

Rust bindings for OpenCV
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod core;
#[cfg(any(not(feature = "opencv-32"), feature = "contrib"))]
pub mod dnn;
pub mod features2d;
pub mod sys;
pub mod types;

pub mod prelude {
	pub use super::{core::{MatConstIteratorTraitManual, MatTraitManual, MatxTrait, UMatTraitManual}};
	#[cfg(feature = "opencv-32")]
	pub use super::core::MatSizeTraitManual;
}