From e962395565f8320743fbba0112b6a30f91636139 Mon Sep 17 00:00:00 2001 From: Sourav Kumar <120493586+Sourav6971@users.noreply.github.com> Date: Tue, 9 Jul 2024 06:53:16 +0530 Subject: [PATCH] Update imgcodecs.hpp --- modules/imgcodecs/include/opencv2/imgcodecs.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/imgcodecs/include/opencv2/imgcodecs.hpp b/modules/imgcodecs/include/opencv2/imgcodecs.hpp index c3a1d4b082..7441634a25 100644 --- a/modules/imgcodecs/include/opencv2/imgcodecs.hpp +++ b/modules/imgcodecs/include/opencv2/imgcodecs.hpp @@ -293,7 +293,7 @@ The function imreadmulti loads a multi-page image from the specified file into a */ CV_EXPORTS_W bool imreadmulti(const String& filename, CV_OUT std::vector& mats, int flags = IMREAD_ANYCOLOR); -/** @brief Loads a of images of a multi-page image from a file. +/** @brief 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. @param filename Name of file to be loaded. @@ -305,7 +305,7 @@ The function imreadmulti loads a specified range from a multi-page image from th */ CV_EXPORTS_W bool imreadmulti(const String& filename, CV_OUT std::vector& mats, int start, int count, int flags = IMREAD_ANYCOLOR); -/** @brief Returns the number of images inside the give file +/** @brief Returns the number of images inside the given file The function imcount will return the number of pages in a multi-page image, or 1 for single-page images @param filename Name of file to be loaded.