CvInvokeNamedWindow Method |
http://www.emgu.com
Creates a window which can be used as a placeholder for images and trackbars. Created windows are reffered by their names.
If the window with such a name already exists, the function does nothing.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntaxpublic static void NamedWindow(
string name,
NamedWindowType flags = 1
)
Public Shared Sub NamedWindow (
name As String,
Optional flags As NamedWindowType = 1
)
public:
static void NamedWindow(
String^ name,
NamedWindowType^ flags = 1
)
static member NamedWindow :
name : string *
?flags : NamedWindowType
(* Defaults:
let _flags = defaultArg flags 1
*)
-> unit
Parameters
- name
- Type: SystemString
Name of the window which is used as window identifier and appears in the window caption - flags (Optional)
- Type: Emgu.CV.CvEnumNamedWindowType
Flags of the window.
See Also