OpenCvSharp.Window.ShowImages C# (CSharp) Méthode

ShowImages() public static méthode

public static ShowImages ( ) : void
Résultat void
        public static void ShowImages(params Mat[] images)
        {
            if (images == null)
                throw new ArgumentNullException(nameof(images));
            if (images.Length == 0)
                return;

            var windows = new List<Window>();
            foreach (Mat img in images)
            {
                windows.Add(new Window(img));
            }

            WaitKey();

            foreach (Window w in windows)
            {
                w.Close();
            }
        }

Same methods

Window::ShowImages ( IEnumerable images, IEnumerable names ) : void