作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 pyqt5
项目。我以全屏模式启动窗口。它正在工作,但因为它是全屏的,所以我无法点击 x
按钮关闭它,所以我必须按 alt-f4
关闭它。它工作正常,但现在我在项目中运行了另一个类,因此当我按下 alt-f4
时,它关闭了窗口,但仍然看起来线程没有关闭,因为它停留在终端中。下面是代码:
class RecognizeFaceInFrame(Thread):
def __init__(self):
super().__init__()
self.get_face_name = False
self.stop_face_thread = False
def recognize_face_frame(self):
try:
if self.get_face_name:
#SOME CODE
time.sleep(1)
except Exception as e:
print("Exception occurred in recognize face {}".format(e))
def run(self):
while not self.stop_face_thread:
self.recognize_face_frame()
class TRIANGLE(QMainWindow, Ui_MainWindow):
def __init__(self):
# SOME CODE
self.showFullScreen()
self.timer = QTimer()
self.timer.timeout.connect(self.view_cam)
self.timer.start(20)
self.frame_count = 0
self.face_recog_thread = RecognizeFaceInFrame()
self.face_recog_thread.start()
def __del__(self):
self.timer.stop()
self.face_recog_thread.stop_face_thread = True
def view_cam(self):
# SOME CODE
app = QApplication(sys.argv)
app.setStyle('Windows')
main_window = TRIANGLE()
main_window.show()
sys.exit(app.exec_())
RecognizeFaceInFrame
我在
__init__
中初始化在
TRIANGLE
类(class)。功能
recognize_face_frame
如果我们设置
get_face_name
将开始执行至
True
.如果我们设置
stop_face_thread
至
True
,该线程将自动关闭,因此我将其放入
__del__
的
TRAINGLE
但是当我按下
alt-f4
它没有关闭。谁能帮我理解我应该在这里做什么来安全地关闭所有线程和应用程序。请帮忙。谢谢
最佳答案
如何使用 closeEvent ?
继承 Qt 模块的类被 Qt 自己的 garbage collector 删除- 至少链接是这样说的。因此,UI 对象不会立即被删除。
将 PySide2 更改为 PyQt 并尝试此操作。一旦你按下 alt+f4,函数 closeEvent 就会运行。在那之前,线程将继续向控制台打印消息。
from PySide2.QtWidgets import QWidget, QApplication, QTextEdit, QVBoxLayout
from PySide2.QtGui import QCloseEvent
from threading import Thread
import sys
import time
class TestThread(Thread):
def __init__(self):
super().__init__()
self.stop_thread = False
def run(self):
while not self.stop_thread:
print("I'm alive!")
time.sleep(1)
print("Dead! Not a big surprise.")
class MainWindow(QWidget):
def __init__(self):
super(MainWindow, self).__init__()
self.test_thread = TestThread()
self.test_thread.start()
def closeEvent(self, event:QCloseEvent):
self.test_thread.stop_thread = True
if __name__ == '__main__':
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_())
I'm alive!
I'm alive!
I'm alive!
Dead! Not a big surprise.Process finished with exit code -1
关于python - 如何安全退出pyqt应用程序python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62355887/
我是一名优秀的程序员,十分优秀!