pub type BgrImageData = ImageData<Bgr>;
pub struct BgrImageData { pub size: (u32, u32), pub data: Vec<Bgr>, }
size: (u32, u32)
data: Vec<Bgr>