From af247275cfe9495293a853ebe8c258bcf2949581 Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Sat, 18 Jan 2020 08:41:55 -0600 Subject: [PATCH] make timestamp on snapshots configurable (fixes #88) --- config/config.example.yml | 6 ++++++ frigate/objects.py | 14 ++++++++++++-- frigate/video.py | 3 +++ 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/config/config.example.yml b/config/config.example.yml index 07bcdc24a..b9786e700 100644 --- a/config/config.example.yml +++ b/config/config.example.yml @@ -105,6 +105,12 @@ cameras: ################ # watchdog_timeout: 300 + ################ + # Configuration for the snapshot sent over mqtt + ################ + snapshots: + show_timestamp: True + ################ # Camera level object config. This config is merged with the global config above. ################ diff --git a/frigate/objects.py b/frigate/objects.py index b4e7969ef..6c6f0226e 100644 --- a/frigate/objects.py +++ b/frigate/objects.py @@ -88,10 +88,12 @@ class DetectedObjectsProcessor(threading.Thread): obj['clipped'] = True # Compute the area + # TODO: +1 right? obj['area'] = (obj['box']['xmax']-obj['box']['xmin'])*(obj['box']['ymax']-obj['box']['ymin']) self.camera.detected_objects[frame['frame_time']].append(obj) + # TODO: use in_process and processed counts instead to avoid lock with self.camera.regions_in_process_lock: if frame['frame_time'] in self.camera.regions_in_process: self.camera.regions_in_process[frame['frame_time']] -= 1 @@ -106,6 +108,10 @@ class DetectedObjectsProcessor(threading.Thread): # Thread that checks finished frames for clipped objects and sends back # for processing if needed +# TODO: evaluate whether or not i really need separate threads/queues for each step +# given that only 1 thread will really be able to run at a time. you need a +# separate process to actually do things in parallel for when you are CPU bound. +# threads are good when you are waiting and could be processing while you wait class RegionRefiner(threading.Thread): def __init__(self, camera): threading.Thread.__init__(self) @@ -363,6 +369,9 @@ class ObjectTracker(threading.Thread): # than the number of existing object centroids we need to # register each new input centroid as a trackable object # if D.shape[0] < D.shape[1]: + # TODO: rather than assuming these are new objects, we could + # look to see if any of the remaining boxes have a large amount + # of overlap... for col in unusedCols: self.register(col, group[col]) @@ -402,7 +411,8 @@ class BestFrames(threading.Thread): obj['box']['xmax'], obj['box']['ymax'], obj['name'], "{}% {}".format(int(obj['score']*100), obj['area'])) # print a timestamp - time_to_show = datetime.datetime.fromtimestamp(obj['frame_time']).strftime("%m/%d/%Y %H:%M:%S") - cv2.putText(best_frame, time_to_show, (10, 30), cv2.FONT_HERSHEY_SIMPLEX, fontScale=.8, color=(255, 255, 255), thickness=2) + if self.camera.snapshot_config['show_timestamp']: + time_to_show = datetime.datetime.fromtimestamp(obj['frame_time']).strftime("%m/%d/%Y %H:%M:%S") + cv2.putText(best_frame, time_to_show, (10, 30), cv2.FONT_HERSHEY_SIMPLEX, fontScale=.8, color=(255, 255, 255), thickness=2) self.best_frames[name] = best_frame \ No newline at end of file diff --git a/frigate/video.py b/frigate/video.py index 25ec223e5..73a2af66e 100644 --- a/frigate/video.py +++ b/frigate/video.py @@ -152,6 +152,9 @@ class Camera: self.take_frame = self.config.get('take_frame', 1) self.watchdog_timeout = self.config.get('watchdog_timeout', 300) + self.snapshot_config = { + 'show_timestamp': self.config.get('snapshots', {}).get('show_timestamp', True) + } self.regions = self.config['regions'] self.frame_shape = get_frame_shape(self.ffmpeg_input) self.frame_size = self.frame_shape[0] * self.frame_shape[1] * self.frame_shape[2]