/** * Read a multi-page image * * This function merely calls the actual implementation above and returns itself. * * @param[in] filename File to load * @param[in] mats Reference to C++ vector<Mat> object to hold the images * @param[in] flags Flags you wish to set. * */ bool imreadmulti(const String& filename, std::vector<Mat>& mats, int flags) { CV_TRACE_FUNCTION(); return imreadmulti_(filename, flags, mats); }
/** * Read a multi-page image * * This function merely calls the actual implementation above and returns itself. * * @param[in] filename File to load * @param[in] mats Reference to C++ vector<Mat> object to hold the images * @param[in] flags Flags you wish to set. * */ bool imreadmulti(const String& filename, std::vector<Mat>& mats, int flags) { return imreadmulti_(filename, flags, mats); }