Fix launcher stop/close cleanup and debug window exit - #20
Open
AdamPlatin123 wants to merge 2 commits into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
主要修复点:
launcher2.py
新增统一停止函数 stop_inference_process(),Stop 按钮和窗口 X 共用同一清理逻辑。
Stop 时只在进程仍存活时执行停止。
启动子进程时增加 CREATE_NEW_PROCESS_GROUP,提升终止可靠性。
位置:launcher2.py
main.py
调试窗口支持 X / Esc / q 退出主循环。
增加统一 finally 清理:输入/推理子进程、共享内存、OpenCV 窗口、虚拟摄像头/Spout 资源。
位置:main.py
验证:
本机执行:main.py(通过)。