| Window Constructor (String, Mat) | 
        
         
            Creates a window
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic Window(
	string name,
	Mat image
)
Public Sub New ( 
	name As String,
	image As Mat
)
public:
Window(
	String^ name, 
	Mat^ image
)
new : 
        name : string * 
        image : Mat -> WindowOpenCvSharp.Window = function(name, image);
Parameters
- name
- Type: SystemString
 Name of the window which is used as window identifier and appears in the window caption.
- image
- Type: OpenCvSharpMat
 Image to be shown.
 See Also
See Also