We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d2dbc9d + bc6a70c commit f9d1f51Copy full SHA for f9d1f51
modules/imgcodecs/include/opencv2/imgcodecs.hpp
@@ -220,6 +220,14 @@ It also demonstrates how to save multiple images in a TIFF file:
220
CV_EXPORTS_W bool imwrite( const String& filename, InputArray img,
221
const std::vector<int>& params = std::vector<int>());
222
223
+/// @overload multi-image overload for bindings
224
+CV_WRAP static inline
225
+bool imwritemulti(const String& filename, InputArrayOfArrays img,
226
+ const std::vector<int>& params = std::vector<int>())
227
+{
228
+ return imwrite(filename, img, params);
229
+}
230
+
231
/** @brief Reads an image from a buffer in memory.
232
233
The function imdecode reads an image from the specified buffer in the memory. If the buffer is too short or
0 commit comments