opencv 0.5.3

Rust bindings for OpenCV
Documentation
pub use self::mat::*;
pub use self::point::*;
pub use self::rect::*;
pub use self::scalar::*;
pub use self::size::*;
pub use self::vec::*;

macro_rules! valid_types {
    ($trait: ident, $($rust_type: ty),+) => {
        // todo, make sealed
        pub trait $trait {}

        $(
            impl $trait for $rust_type {}
        )+
    };
}

mod mat;
mod point;
mod rect;
mod scalar;
mod size;
mod vec;