Ask Your Question
0

Minimaze window cv2.imshow()

asked 2017-08-02 15:49:21 -0600

Mirko gravatar image

Hi all,

Is OpenCV have function for minimaze window. I need this for my raspbian OS on Raspberry Pi.

Im tried search for setWindowsProperty if have any parameters for this, but only what I found is for fullscreen window. For example

cv2.namedWindow("window", cv2.WND_PROP_FULLSCREEN) cv2.setWindowProperty("window",cv2.WND_PROP_FULLSCREEN,cv2.WINDOW_FULLSCREEN) cv2.imshow("window", img)

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
2

answered 2017-08-03 08:30:51 -0600

KjMag gravatar image

updated 2017-08-03 08:31:29 -0600

It seems it's not really possible. As you've observed, there is no window property flag that would allow you to do that. By the way, if you use built-in openCV window functions for something more than fast checking the results of your algorithms, you should really use some other facilities as GUI (e.g. Qt integration) as the built-in highgui is really limited and not really suitable for any application that's to be shown to a normal user. This is my experience at least.

edit flag offensive delete link more

Comments

@KjMag and this final answer is with openCV is not possible to make that? Do you know any other alternative how to make that with python? I need this for Debian OS.

Mirko gravatar imageMirko ( 2017-08-03 09:34:23 -0600 )edit

I'm not really familiar with python, so I can't answer that. Typical solution in C++ involves integrating with Qt. Qt is also available for python, so maybe you should check if it's possible for this language as well.

KjMag gravatar imageKjMag ( 2017-08-03 15:25:22 -0600 )edit

Question Tools

1 follower

Stats

Asked: 2017-08-02 15:49:21 -0600

Seen: 486 times

Last updated: Aug 03 '17