http://www.emgu.com
The named window type
Namespace:
Emgu.CV.CvEnum
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax[FlagsAttribute]
public enum WindowFlags
<FlagsAttribute>
Public Enumeration WindowFlags
[FlagsAttribute]
public enum class WindowFlags
[<FlagsAttribute>]
type WindowFlags
Members
| Member name | Value | Description |
---|
| Normal | 0 |
The user can resize the window (no constraint) / also use to switch a fullscreen window to a normal size
|
| AutoSize | 1 |
The user cannot resize the window, the size is constrainted by the image displayed
|
| Opengl | 4096 |
Window with opengl support
|
| Fullscreen | 1 |
Change the window to fullscreen
|
| FreeRatio | 256 |
The image expends as much as it can (no ratio constraint)
|
| KeepRatio | 0 |
the ratio of the image is respected
|
| GuiExpanded | 0 |
status bar and tool bar
|
| GuiNormal | 16 |
Old fashion way
|
See Also