Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「ESC」キーを押してウィンドウを終了するopencv例で多くの例を見てきました。ウィンドウの閉じるボタンを使用してopencvの「キャプチャ」ウィンドウを閉じる必要があるWindowsプラットフォームで作業していますか? どうすればいいですか?どんな提案や例も役に立ちます。
このタイプのコードが役立つと思います。私は通常、Pythonでウィンドウを閉じるためにこれを行います。
while(): if (cv2.getWindowProperty('name_of_window', 0) < 0): cv2.destroyAllWindows() break