OpenCvSharp.Window.Window C# (CSharp) Method

Window() public method

Creates a window with a specified image and flag
public Window ( WindowMode flags, OpenCvSharp.Mat image ) : System
flags WindowMode Flags of the window. Currently the only supported flag is WindowMode.AutoSize. /// If it is set, window size is automatically adjusted to fit the displayed image (see cvShowImage), while user can not change the window size manually.
image OpenCvSharp.Mat
return System
        public Window(WindowMode flags, Mat image)
            : this(DefaultName(), flags, image)
        {
        }

Same methods

Window::Window ( ) : System
Window::Window ( OpenCvSharp.Mat image ) : System
Window::Window ( string name ) : System
Window::Window ( string name, OpenCvSharp.Mat image ) : System
Window::Window ( string name, WindowMode flags ) : System
Window::Window ( string name, WindowMode flags, OpenCvSharp.Mat image ) : System