Commit 27dbbe2d authored by Davis King's avatar Davis King

Renamed dlib.save_rgb_image() to dlib.save_image()

parent 68112e35
...@@ -30,7 +30,8 @@ bool has_ending (std::string const full_string, std::string const &ending) { ...@@ -30,7 +30,8 @@ bool has_ending (std::string const full_string, std::string const &ending) {
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
void save_rgb_image(numpy_image<rgb_pixel> img, const std::string &path) template <typename T>
void save_image(numpy_image<T> img, const std::string &path)
{ {
std::string lowered_path = path; std::string lowered_path = path;
std::transform(lowered_path.begin(), lowered_path.end(), lowered_path.begin(), ::tolower); std::transform(lowered_path.begin(), lowered_path.end(), lowered_path.begin(), ::tolower);
...@@ -123,8 +124,12 @@ void bind_numpy_returns(py::module &m) ...@@ -123,8 +124,12 @@ void bind_numpy_returns(py::module &m)
py::arg("path") py::arg("path")
); );
m.def("save_rgb_image", &save_rgb_image, m.def("save_image", &save_image<rgb_pixel>,
"Saves the given (RGB) image to the specified path. Determines the file type from the file extension specified in the path", "Saves the given image to the specified path. Determines the file type from the file extension specified in the path",
py::arg("img"), py::arg("path")
);
m.def("save_image", &save_image<unsigned char>,
"Saves the given image to the specified path. Determines the file type from the file extension specified in the path",
py::arg("img"), py::arg("path") py::arg("img"), py::arg("path")
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment