create tracked object class and save thumbnails

This commit is contained in:
Blake Blackshear
2020-12-05 08:48:46 -06:00
parent 24b703a875
commit 8874a55b0f
3 changed files with 237 additions and 226 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ class FrigateApp():
self.detectors[name] = EdgeTPUProcess(name, self.detection_queue, out_events=self.detection_out_events, tf_device=detector.device)
def start_detected_frames_processor(self):
self.detected_frames_processor = TrackedObjectProcessor(self.config.cameras, self.mqtt_client, self.config.mqtt.topic_prefix,
self.detected_frames_processor = TrackedObjectProcessor(self.config, self.mqtt_client, self.config.mqtt.topic_prefix,
self.detected_frames_queue, self.event_queue, self.stop_event)
self.detected_frames_processor.start()