2019-02-26 03:27:02 +01:00
|
|
|
import time
|
|
|
|
import datetime
|
|
|
|
import threading
|
2019-02-28 03:55:07 +01:00
|
|
|
import cv2
|
2019-06-02 14:29:50 +02:00
|
|
|
from . util import draw_box_with_label
|
2019-02-26 03:27:02 +01:00
|
|
|
|
|
|
|
class ObjectCleaner(threading.Thread):
|
2019-03-27 12:17:00 +01:00
|
|
|
def __init__(self, objects_parsed, detected_objects):
|
2019-02-26 03:27:02 +01:00
|
|
|
threading.Thread.__init__(self)
|
|
|
|
self._objects_parsed = objects_parsed
|
|
|
|
self._detected_objects = detected_objects
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
while True:
|
|
|
|
|
2019-03-27 12:17:00 +01:00
|
|
|
# wait a bit before checking for expired frames
|
|
|
|
time.sleep(0.2)
|
|
|
|
|
|
|
|
# expire the objects that are more than 1 second old
|
|
|
|
now = datetime.datetime.now().timestamp()
|
|
|
|
# look for the first object found within the last second
|
|
|
|
# (newest objects are appended to the end)
|
|
|
|
detected_objects = self._detected_objects.copy()
|
|
|
|
|
|
|
|
num_to_delete = 0
|
|
|
|
for obj in detected_objects:
|
|
|
|
if now-obj['frame_time']<2:
|
|
|
|
break
|
|
|
|
num_to_delete += 1
|
|
|
|
if num_to_delete > 0:
|
|
|
|
del self._detected_objects[:num_to_delete]
|
|
|
|
|
|
|
|
# notify that parsed objects were changed
|
|
|
|
with self._objects_parsed:
|
|
|
|
self._objects_parsed.notify_all()
|
2019-03-16 02:15:41 +01:00
|
|
|
|
2019-02-28 03:55:07 +01:00
|
|
|
|
|
|
|
# Maintains the frame and person with the highest score from the most recent
|
|
|
|
# motion event
|
|
|
|
class BestPersonFrame(threading.Thread):
|
2019-03-27 12:17:00 +01:00
|
|
|
def __init__(self, objects_parsed, recent_frames, detected_objects):
|
2019-02-28 03:55:07 +01:00
|
|
|
threading.Thread.__init__(self)
|
|
|
|
self.objects_parsed = objects_parsed
|
|
|
|
self.recent_frames = recent_frames
|
|
|
|
self.detected_objects = detected_objects
|
|
|
|
self.best_person = None
|
|
|
|
self.best_frame = None
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
while True:
|
|
|
|
|
2019-03-27 12:17:00 +01:00
|
|
|
# wait until objects have been parsed
|
|
|
|
with self.objects_parsed:
|
|
|
|
self.objects_parsed.wait()
|
2019-02-28 03:55:07 +01:00
|
|
|
|
2019-03-27 12:17:00 +01:00
|
|
|
# make a copy of detected objects
|
|
|
|
detected_objects = self.detected_objects.copy()
|
|
|
|
detected_people = [obj for obj in detected_objects if obj['name'] == 'person']
|
2019-02-28 03:55:07 +01:00
|
|
|
|
2019-03-27 12:17:00 +01:00
|
|
|
# get the highest scoring person
|
|
|
|
new_best_person = max(detected_people, key=lambda x:x['score'], default=self.best_person)
|
2019-02-28 03:55:07 +01:00
|
|
|
|
2019-03-27 12:17:00 +01:00
|
|
|
# if there isnt a person, continue
|
|
|
|
if new_best_person is None:
|
|
|
|
continue
|
2019-02-28 03:55:07 +01:00
|
|
|
|
2019-03-27 12:17:00 +01:00
|
|
|
# if there is no current best_person
|
|
|
|
if self.best_person is None:
|
|
|
|
self.best_person = new_best_person
|
|
|
|
# if there is already a best_person
|
|
|
|
else:
|
|
|
|
now = datetime.datetime.now().timestamp()
|
|
|
|
# if the new best person is a higher score than the current best person
|
|
|
|
# or the current person is more than 1 minute old, use the new best person
|
|
|
|
if new_best_person['score'] > self.best_person['score'] or (now - self.best_person['frame_time']) > 60:
|
2019-02-28 03:55:07 +01:00
|
|
|
self.best_person = new_best_person
|
2019-03-30 13:58:31 +01:00
|
|
|
|
|
|
|
# make a copy of the recent frames
|
|
|
|
recent_frames = self.recent_frames.copy()
|
|
|
|
|
2019-03-27 12:17:00 +01:00
|
|
|
if not self.best_person is None and self.best_person['frame_time'] in recent_frames:
|
|
|
|
best_frame = recent_frames[self.best_person['frame_time']]
|
|
|
|
|
2019-07-03 13:14:39 +02:00
|
|
|
label = "{}: {}% {}".format(self.best_person['name'],int(self.best_person['score']*100),int(self.best_person['area']))
|
2019-06-02 14:29:50 +02:00
|
|
|
draw_box_with_label(best_frame, self.best_person['xmin'], self.best_person['ymin'],
|
|
|
|
self.best_person['xmax'], self.best_person['ymax'], label)
|
|
|
|
|
2019-12-08 15:55:19 +01:00
|
|
|
# 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)
|
|
|
|
|
2019-03-27 12:17:00 +01:00
|
|
|
self.best_frame = cv2.cvtColor(best_frame, cv2.COLOR_RGB2BGR)
|