|
|
@ -209,8 +209,8 @@ CV_EXPORTS_W Mat imread( const String& filename, int flags = IMREAD_COLOR ); |
|
|
|
|
|
|
|
|
|
|
|
The function imreadmulti loads a multi-page image from the specified file into a vector of Mat objects. |
|
|
|
The function imreadmulti loads a multi-page image from the specified file into a vector of Mat objects. |
|
|
|
@param filename Name of file to be loaded. |
|
|
|
@param filename Name of file to be loaded. |
|
|
|
|
|
|
|
@param mats A vector of Mat objects holding each page. |
|
|
|
@param flags Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. |
|
|
|
@param flags Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. |
|
|
|
@param mats A vector of Mat objects holding each page, if more than one. |
|
|
|
|
|
|
|
@sa cv::imread |
|
|
|
@sa cv::imread |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
CV_EXPORTS_W bool imreadmulti(const String& filename, CV_OUT std::vector<Mat>& mats, int flags = IMREAD_ANYCOLOR); |
|
|
|
CV_EXPORTS_W bool imreadmulti(const String& filename, CV_OUT std::vector<Mat>& mats, int flags = IMREAD_ANYCOLOR); |
|
|
@ -219,10 +219,10 @@ CV_EXPORTS_W bool imreadmulti(const String& filename, CV_OUT std::vector<Mat>& m |
|
|
|
|
|
|
|
|
|
|
|
The function imreadmulti loads a specified range from a multi-page image from the specified file into a vector of Mat objects. |
|
|
|
The function imreadmulti loads a specified range from a multi-page image from the specified file into a vector of Mat objects. |
|
|
|
@param filename Name of file to be loaded. |
|
|
|
@param filename Name of file to be loaded. |
|
|
|
|
|
|
|
@param mats A vector of Mat objects holding each page. |
|
|
|
@param start Start index of the image to load |
|
|
|
@param start Start index of the image to load |
|
|
|
@param count Count number of images to load |
|
|
|
@param count Count number of images to load |
|
|
|
@param flags Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. |
|
|
|
@param flags Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. |
|
|
|
@param mats A vector of Mat objects holding each page, if more than one. |
|
|
|
|
|
|
|
@sa cv::imread |
|
|
|
@sa cv::imread |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
CV_EXPORTS_W bool imreadmulti(const String& filename, CV_OUT std::vector<Mat>& mats, int start, int count, int flags = IMREAD_ANYCOLOR); |
|
|
|
CV_EXPORTS_W bool imreadmulti(const String& filename, CV_OUT std::vector<Mat>& mats, int start, int count, int flags = IMREAD_ANYCOLOR); |
|
|
|