Click or drag to resize

Cv2NamedWindow Method (String, WindowMode)

Creates a window.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntax
public static void NamedWindow(
	string winname,
	WindowMode flags
)

Parameters

winname
Type: SystemString
Name of the window in the window caption that may be used as a window identifier.
flags
Type: OpenCvSharpWindowMode
Flags of the window. Currently the only supported flag is CV WINDOW AUTOSIZE. If this is set, the window size is automatically adjusted to fit the displayed image (see imshow ), and the user can not change the window size manually.
See Also