mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 08:13:04 +04:00
Merge pull request #9445 from adishavit:master
* Adds cv::resizeWindow() overload taking a single cv::Size argument. * Replaces copied documentaion with Doxygen @overload command.
This commit is contained in:
committed by
Alexander Alekhin
parent
bee5cb504b
commit
8a094a5f54
@@ -401,6 +401,12 @@ CV_EXPORTS_W void imshow(const String& winname, InputArray mat);
|
||||
*/
|
||||
CV_EXPORTS_W void resizeWindow(const String& winname, int width, int height);
|
||||
|
||||
/** @overload
|
||||
@param winname Window name.
|
||||
@param size The new window size.
|
||||
*/
|
||||
CV_EXPORTS_W void resizeWindow(const String& winname, const cv::Size& size);
|
||||
|
||||
/** @brief Moves window to the specified position
|
||||
|
||||
@param winname Name of the window.
|
||||
|
||||
Reference in New Issue
Block a user