From 1bae5c72fd83ba51679fbc7ec1a7512cac4902b0 Mon Sep 17 00:00:00 2001 From: s_kiani Date: Thu, 20 Feb 2025 09:44:35 +0330 Subject: [PATCH] edited newframe signal emition --- core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.py b/core.py index 6e66bc3..3191da0 100755 --- a/core.py +++ b/core.py @@ -74,7 +74,7 @@ class Core(QThread): # color = (0, 0, 255) if cls == 0 else (80, 127, 255) # self.__draw_bbox(frame, bbox, color) - self.newFrame.emit(global_bboxes, self.__processing_id, True) + self.newFrame.emit(global_bboxes, self.__processing_id, True, c_int64(int(time.time()*1e3))) self.__detection_bboxes = np.array(global_bboxes) self.__detection_frame = frame.copy() sleep(0.03)