namedwindow
Is "namedwindow" preferred function to build window in OpenCV?
I am interested in just base window as GUI - with title, max / min , close "buttons".
The actual content of window is not important.
Is "namedwindow" preferred function to build window in OpenCV?
I am interested in just base window as GUI - with title, max / min , close "buttons".
The actual content of window is not important.
you only need to call namedWindow() if you need certain flags, or try to add trackbars.
in any other case, imshow() will just create a window on-the-fly with the default flags (WINDOW_AUTOSIZE)
(and you can omit the namedWindow() call entirely)
Asked: 2016-12-05 11:17:54 -0600
Seen: 1,277 times
Last updated: Dec 05 '16
using highgui - difficulties with namedWindow [closed]
Is there a faster way to display video than NamedWindow and WaitKey? (Linux)(Python)
opencv imshow causing a memory leak (c++)
imshow without namedWindow showing image
write content of namedWindow to a Mat / file
How to create a window with gray Background?