17 template <
typename ImageT,
typename IO = io::any>
18 static void ReadImage(
const std::string &in_filename, ImageT &image, IO = IO()) {
19 IO::read_image(in_filename, image);
22 template <
typename ViewT,
typename IO = io::any>
23 static std::string
WriteView(std::string out_filename,
const ViewT &image_view, IO = IO()) {
24 IO::write_view(out_filename, image_view);
This file contains definitions of common data structures used in traffic manager. ...
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())