is it possible to create frameless namedWindow
I am working on an embedded System with a Debian-based Linux, OpwnCV 3.0 at the Moment. The System has a 320x240 LC Display.
I want to show an OpenCV Mat fullscreen, without any border or title bar.
Is this possible with namedWindow ? or are there alternative ways to to show a cv::Mat ?
Best regards
Bernhard
this is probably not doable from plain opencv (too many abstraction layers between you and the window creation) , but, what kind of gui are you using ? it probably needs diving deeper into that.
berak is right. namedWindow/imshow are basic functions, they are not intended to create a nice GUI.
To display images in fullscreen, I think the best way is to create an OpenGL (GLUT) wrapper; create a fullscreen window, a polygon which fills this window and use your image as texture.
Another solution would be to use Qt. Create a fullscreen window with a QGraphicsWidget of a QLabel, transform your Mat to QImage and display it.