pub trait ColorTraitConst {
    fn as_raw_Color(&self) -> *const c_void;

    fn to_vec3b(&self) -> Result<Vec3b> { ... }
}
Expand description

This class represents color in BGR order.

Required Methods

Provided Methods

Implementors