Emgu.CV.CvInvoke.cvNamedWindow C# (CSharp) Метод

cvNamedWindow() публичный статический Метод

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.
public static cvNamedWindow ( String name ) : int
name String Name of the window which is used as window identifier and appears in the window caption
Результат int
        public static int cvNamedWindow(String name)
        {
            return _cvNamedWindow(name, 1);
        }
CvInvoke