Browse Source

edited newframe signal emition

client-connection
s_kiani 1 month ago
parent
commit
1bae5c72fd
  1. 2
      core.py

2
core.py

@ -74,7 +74,7 @@ class Core(QThread):
# color = (0, 0, 255) if cls == 0 else (80, 127, 255) # color = (0, 0, 255) if cls == 0 else (80, 127, 255)
# self.__draw_bbox(frame, bbox, color) # 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_bboxes = np.array(global_bboxes)
self.__detection_frame = frame.copy() self.__detection_frame = frame.copy()
sleep(0.03) sleep(0.03)

Loading…
Cancel
Save