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
cv2.imshow(img)
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.