Python OpenCV open window on top of other applications

前端 未结 3 1121
南旧
南旧 2020-12-17 09:57

When executing an OpenCV python script containing: cv2.imshow(img) the resulting window opens behind my terminal window. This is a mild irritation - is there an

3条回答
  •  南笙
    南笙 (楼主)
    2020-12-17 10:20

    One way to work around this would be to set all windows from OpenCV "frontmost" using AppleScript.

    subprocess.call(["/usr/bin/osascript", "-e", 'tell app "Finder" to set frontmost of process "Python" to true'])
    

    This way, all windows should be brought to the front.

提交回复
热议问题