Window Constructor (WindowMode, Mat)
|
Creates a window with a specified image and flag
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic Window(
WindowMode flags,
Mat image
)
Public Sub New (
flags As WindowMode,
image As Mat
)
public:
Window(
WindowMode flags,
Mat^ image
)
new :
flags : WindowMode *
image : Mat -> Window
OpenCvSharp.Window = function(flags, image);
Parameters
- flags
- Type: OpenCvSharpWindowMode
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
- Type: OpenCvSharpMat
See Also