pub fn imreadmulti_range_def(
filename: &str,
mats: &mut Vector<Mat>,
start: i32,
count: i32,
) -> Result<bool>Expand description
Loads images of a multi-page image from a file.
The function imreadmulti loads a specified range from a multi-page image from the specified file into a vector of Mat objects.
§Parameters
- filename: Name of file to be loaded.
- mats: A vector of Mat objects holding each page.
- start: Start index of the image to load
- count: Count number of images to load
- flags: Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR.
§See also
cv::imread
§Note
This alternative version of imreadmulti_range function uses the following default values for its arguments:
- flags: IMREAD_ANYCOLOR