From 2d344438347086b52b2fb1e429929014f1de4072 Mon Sep 17 00:00:00 2001 From: Pavel Rojtberg Date: Fri, 8 Sep 2017 15:09:00 +0200 Subject: [PATCH] python: imreadmulti - add CV_OUT so it is correctly wrapped --- modules/imgcodecs/include/opencv2/imgcodecs.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgcodecs/include/opencv2/imgcodecs.hpp b/modules/imgcodecs/include/opencv2/imgcodecs.hpp index ff6bbcab07..46bb355a2b 100644 --- a/modules/imgcodecs/include/opencv2/imgcodecs.hpp +++ b/modules/imgcodecs/include/opencv2/imgcodecs.hpp @@ -173,7 +173,7 @@ The function imreadmulti loads a multi-page image from the specified file into a @param mats A vector of Mat objects holding each page, if more than one. @sa cv::imread */ -CV_EXPORTS_W bool imreadmulti(const String& filename, std::vector& mats, int flags = IMREAD_ANYCOLOR); +CV_EXPORTS_W bool imreadmulti(const String& filename, CV_OUT std::vector& mats, int flags = IMREAD_ANYCOLOR); /** @brief Saves an image to a specified file.