OpenCvSharp.Window.Resize C# (CSharp) Méthode

Resize() public méthode

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