From d899ef158e1dba73bb7224915f5f92971d22b7fe Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Sun, 8 Dec 2019 09:40:20 -0600 Subject: [PATCH] fix datestamp positioning --- frigate/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/objects.py b/frigate/objects.py index aa9ef4b69..1ae63b3f3 100644 --- a/frigate/objects.py +++ b/frigate/objects.py @@ -87,6 +87,6 @@ class BestPersonFrame(threading.Thread): # print a timestamp time_to_show = datetime.datetime.fromtimestamp(self.best_person['frame_time']).strftime("%m/%d/%Y %H:%M:%S") - cv2.putText(best_frame, time_to_show, (10, 10), cv2.FONT_HERSHEY_SIMPLEX, fontScale=1, color=(255, 255, 255), thickness=4) + cv2.putText(best_frame, time_to_show, (10, 30), cv2.FONT_HERSHEY_SIMPLEX, fontScale=.8, color=(255, 255, 255), thickness=2) self.best_frame = cv2.cvtColor(best_frame, cv2.COLOR_RGB2BGR)