#include "ecvl/core/filesystem.h"
#include "ecvl/core/image.h"
#include <string>
Go to the source code of this file.
|
bool | ecvl::ImRead (const ecvl::filesystem::path &filename, Image &dst, ImReadMode flags=ImReadMode::ANYCOLOR) |
| Loads an image from a file. More...
|
|
bool | ecvl::ImRead (const char *buffer, const int size, Image &dst, ImReadMode flags=ImReadMode::ANYCOLOR) |
| Loads an image from a buffer in memory. This is an overloaded function, provided for convenience. More...
|
|
bool | ecvl::ImRead (const std::vector< char > &buffer, Image &dst, ImReadMode flags=ImReadMode::ANYCOLOR) |
| Loads an image from a buffer in memory. This is an overloaded function, provided for convenience. More...
|
|
bool | ecvl::ImReadMulti (const ecvl::filesystem::path &filename, Image &dst) |
| Loads a multi-page image from a file. More...
|
|
bool | ecvl::ImWrite (const ecvl::filesystem::path &filename, const Image &src) |
| Saves an image into a specified file. More...
|
|