OpenCvSharp.Window.DisplayOverlay C# (CSharp) Метод

DisplayOverlay() публичный Метод

Display text on the window's image as an overlay for delay milliseconds. This is not editing the image's data. The text is display on the top of the image.
public DisplayOverlay ( string text, int delayms ) : void
text string Overlay text to write on the window’s image
delayms int Delay to display the overlay text. If this function is called before the previous overlay text time out, the timer is restarted and the text updated. . If this value is zero, the text never disapers.
Результат void
        public void DisplayOverlay(string text, int delayms)
        {
            throw new NotImplementedException();
            //Cv.DisplayOverlay(name, text, delayms);
        }