Method NamedWindow
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
NamedWindow(string, WindowFlags)
Creates a window.
public static void NamedWindow(string winName, WindowFlags flags = WindowFlags.GuiExpanded)
Parameters
winNamestringName of the window in the window caption that may be used as a window identifier.
flagsWindowFlagsFlags 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.