OpenCvSharp.Cv2.ResizeWindow C# (CSharp) Method

ResizeWindow() public static method

Resizes window to the specified size
public static ResizeWindow ( string winName, int width, int height ) : void
winName string Window name
width int The new window width
height int The new window height
return void
        public static void ResizeWindow(string winName, int width, int height)
        {
            if (String.IsNullOrEmpty(winName))
                throw new ArgumentNullException(nameof(winName));
            NativeMethods.highgui_resizeWindow(winName, width, height);
        }
Cv2