| Window Constructor (String, Mat) |
Creates a window
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public 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 -> Window
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