class Emotion_MainWindow(Ui_MainWindow): def __init__(self, MainWindow): self.path = getcwd() self.timer_camera = QtCore.QTimer() # 定时器 self.timer_video = QtCore.QTimer() # 定时器 self.setupUi(MainWindow) self.retranslateUi(MainWindow) self.slot_init() # 槽函数设置 # 设置界面动画 gif = QMovie(':/newPrefix/icons/scan.gif') self.label_face.setMovie(gif) gif.start() self.cap = cv2.VideoCapture() # 屏幕画面对象 self.cap2 = cv2.VideoCapture() self.CAM_NUM = 0 # 摄像头标号 self.model_path = None # 模型路径 # self.__flag_work = 0
时间: 2023-06-02 12:05:15 浏览: 213
emotioneeg.zip_EEG_emotion_emotion matlab_emotion matlab_emotio
这是一个Python类,它继承自Ui_MainWindow。它有一个构造函数__init__,它的参数是MainWindow。它的成员变量包括self.path和self.timer_camera。其中,self.path是当前路径,self.timer_camera是一个计时器。
阅读全文