// STL includes #include // Utils includes #include #include #include #include #include int main() { std::cout << "Constructing image" << std::endl; int width = 64; int height = 64; Image image_rgb(width, height, ColorRgb::BLACK); Image image_bgr(image_rgb.width(), image_rgb.height(), ColorBgr::BLACK); std::cout << "Writing image" << std::endl; unsigned l = width * height; // BGR for (unsigned i=0; i