I welcome everyone!
How to make main window without frame and title in OpenCV?
Windows / Python
Thank you.
I welcome everyone!
How to make main window without frame and title in OpenCV?
Windows / Python
Thank you.
Welcome.
You need to use a GUI toolkit for this. OpenCV is not a GUI toolkit.
If you really only want a full-screen borderless imshow()
window, there are window creation flags for that. you’ll find them in the docs. if it isn’t full-screen, you can probably not switch it to frameless.
Thank you.
I have used the following settings.
cv2.namedWindow(“result”, cv2.WINDOW_NORMAL)
cv2.setWindowProperty(“result”, cv2.WND_PROP_FULLSCREEN, cv2.WINDOW_FULLSCREEN)
That’s what I need.