18 template <
typename ImageT,
typename IO = io::any>
19 static void ReadImage(
const std::string &in_filename, ImageT &image, IO = IO()) {
20 IO::read_image(in_filename, image);
24 template <
typename ViewT,
typename IO = io::any>
25 static std::string
WriteView(std::string out_filename,
const ViewT &image_view, IO = IO()) {
26 IO::write_view(out_filename, image_view);
static std::string WriteView(std::string out_filename, const ViewT &image_view, IO=IO())
static void ReadImage(const std::string &in_filename, ImageT &image, IO=IO())