【发布时间】:2011-08-23 02:09:05
【问题描述】:
有没有办法将 OpenCV 窗口设置为始终位于顶部? 我可以从我的窗口中删除最小化和关闭按钮吗? 谢谢。
【问题讨论】:
-
从 OpenCV 3.4.8/4.1.2 开始,有一种方法可以做到这一点,在这个问题的任何答案中都没有提到。见OpenCV: how to force the image window to appear on top of other windows?
有没有办法将 OpenCV 窗口设置为始终位于顶部? 我可以从我的窗口中删除最小化和关闭按钮吗? 谢谢。
【问题讨论】:
cv2.namedWindow('CCPDA')
cv2.resizeWindow('CCPDA', 200, 200)
hWnd = win32gui.FindWindow(None, 'CCPDA')
win32gui.SetWindowPos(hWnd, win32con.HWND_TOPMOST, 0, 0, 0, 0,
win32con.SWP_SHOWWINDOW | win32con.SWP_NOSIZE | win32con.SWP_NOMOVE)
【讨论】:
对我来说,这在 macOS 中可以正常工作,我认为它在其他操作系统中也可以正常工作
destroyWindow( "windowName" );
namedWindow( "windowName", WINDOW_NORMAL );
moveWindow( "windowName", posx, posy );
imshow( "windowName", frame );
这个循环重复,顺序是:
【讨论】:
我发现我需要做的就是将主窗口设置为全屏,然后恢复正常。
#!/usr/bin/env python
import cv2
import numpy
WindowName="Main View"
view_window = cv2.namedWindow(WindowName,cv2.WINDOW_NORMAL)
# These two lines will force your "Main View" window to be on top with focus.
cv2.setWindowProperty(WindowName,cv2.WND_PROP_FULLSCREEN,cv2.WINDOW_FULLSCREEN)
cv2.setWindowProperty(WindowName,cv2.WND_PROP_FULLSCREEN,cv2.WINDOW_NORMAL)
# The rest of this does not matter. This would be the rest of your program.
# This just shows an image so that you can see that this example works.
img = numpy.zeros((400,400,3), numpy.uint8)
for x in range(0,401,100):
for y in range(0,401,100):
cv2.line(img,(x,0),(0,y),(128,128,254),1)
cv2.line(img,(x,399),(0,y),(254,128,128),1)
cv2.line(img,(399,y),(x,399),(128,254,128),1)
cv2.line(img,(399,y),(x,0),(254,254,254),1)
cv2.imshow(WindowName, img)
cv2.waitKey(0)
cv2.destroyWindow(WindowName)
【讨论】:
cv2.waitKey(1),至少在 Windows 10 上
我在这里找到了 cmets 中发布的最佳解决方案:Python OpenCV open window on top of other applications
打开一个窗口后只需添加下面的命令,例如
cv2.namedWindow('img_file_name', cv2.WINDOW_NORMAL) # Creates a window
os.system('''/usr/bin/osascript -e 'tell app "Finder" to set frontmost of process "python" to true' ''') # To make window active
使用小写的“python”。正如我在一些答案中发现的那样,使用“Python”给了我一个错误:
21:62: execution error: Finder got an error: Can’t set process "Python" to true. (-10006))
【讨论】:
您可以使用: cvGetWindowHandle() 获取寡妇处理程序。然后使用常规的 windows API 你可以做任何你喜欢的事情
【讨论】: