OpenCvSharp.Cv2.DestroyWindow C# (CSharp) Method

DestroyWindow() public static method

public static DestroyWindow ( string winName ) : void
winName string
return void
        public static void DestroyWindow(string winName)
        {
            if (String.IsNullOrEmpty("winName"))
                throw new ArgumentNullException(nameof(winName));
            NativeMethods.highgui_destroyWindow(winName);
        }
Cv2