OpenCvSharp.Window.Resize C# (CSharp) Method

Resize() public method

Sets window size
public Resize ( int width, int height ) : void
width int New width
height int New height
return void
        public void Resize(int width, int height)
        {
            NativeMethods.highgui_resizeWindow(name, width, height);
        }