OpenCvSharp.Window.Move C# (CSharp) Method

Move() public method

Sets window position
public Move ( int x, int y ) : void
x int New x coordinate of top-left corner
y int New y coordinate of top-left corner
return void
        public void Move(int x, int y)
        {
            NativeMethods.highgui_moveWindow(name, x, y);
        }