2023-10-24 02:50:22 +02:00
|
|
|
import logging
|
2023-05-31 16:12:43 +02:00
|
|
|
import random
|
|
|
|
import string
|
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
from norfair import Detection, Drawable, Tracker, draw_boxes
|
|
|
|
from norfair.drawing.drawer import Drawer
|
|
|
|
|
2023-07-08 14:04:47 +02:00
|
|
|
from frigate.config import CameraConfig
|
|
|
|
from frigate.ptz.autotrack import PtzMotionEstimator
|
2023-05-31 16:12:43 +02:00
|
|
|
from frigate.track import ObjectTracker
|
2023-07-11 13:23:20 +02:00
|
|
|
from frigate.types import PTZMetricsTypes
|
2023-07-06 16:28:50 +02:00
|
|
|
from frigate.util.image import intersection_over_union
|
2023-05-31 16:12:43 +02:00
|
|
|
|
2023-10-24 02:50:22 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2023-05-31 16:12:43 +02:00
|
|
|
|
|
|
|
# Normalizes distance from estimate relative to object size
|
|
|
|
# Other ideas:
|
|
|
|
# - if estimates are inaccurate for first N detections, compare with last_detection (may be fine)
|
|
|
|
# - could be variable based on time since last_detection
|
|
|
|
# - include estimated velocity in the distance (car driving by of a parked car)
|
|
|
|
# - include some visual similarity factor in the distance for occlusions
|
|
|
|
def distance(detection: np.array, estimate: np.array) -> float:
|
|
|
|
# ultimately, this should try and estimate distance in 3-dimensional space
|
|
|
|
# consider change in location, width, and height
|
|
|
|
|
|
|
|
estimate_dim = np.diff(estimate, axis=0).flatten()
|
|
|
|
detection_dim = np.diff(detection, axis=0).flatten()
|
|
|
|
|
|
|
|
# get bottom center positions
|
|
|
|
detection_position = np.array(
|
|
|
|
[np.average(detection[:, 0]), np.max(detection[:, 1])]
|
|
|
|
)
|
|
|
|
estimate_position = np.array([np.average(estimate[:, 0]), np.max(estimate[:, 1])])
|
|
|
|
|
|
|
|
distance = (detection_position - estimate_position).astype(float)
|
|
|
|
# change in x relative to w
|
|
|
|
distance[0] /= estimate_dim[0]
|
|
|
|
# change in y relative to h
|
|
|
|
distance[1] /= estimate_dim[1]
|
|
|
|
|
|
|
|
# get ratio of widths and heights
|
|
|
|
# normalize to 1
|
|
|
|
widths = np.sort([estimate_dim[0], detection_dim[0]])
|
|
|
|
heights = np.sort([estimate_dim[1], detection_dim[1]])
|
|
|
|
width_ratio = widths[1] / widths[0] - 1.0
|
|
|
|
height_ratio = heights[1] / heights[0] - 1.0
|
|
|
|
|
|
|
|
# change vector is relative x,y change and w,h ratio
|
|
|
|
change = np.append(distance, np.array([width_ratio, height_ratio]))
|
|
|
|
|
|
|
|
# calculate euclidean distance of the change vector
|
|
|
|
return np.linalg.norm(change)
|
|
|
|
|
|
|
|
|
|
|
|
def frigate_distance(detection: Detection, tracked_object) -> float:
|
|
|
|
return distance(detection.points, tracked_object.estimate)
|
|
|
|
|
|
|
|
|
|
|
|
class NorfairTracker(ObjectTracker):
|
2023-07-11 13:23:20 +02:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
config: CameraConfig,
|
|
|
|
ptz_metrics: PTZMetricsTypes,
|
|
|
|
):
|
2023-05-31 16:12:43 +02:00
|
|
|
self.tracked_objects = {}
|
2023-10-24 02:50:22 +02:00
|
|
|
self.untracked_object_boxes: list[list[int]] = []
|
2023-05-31 16:12:43 +02:00
|
|
|
self.disappeared = {}
|
|
|
|
self.positions = {}
|
2023-07-08 14:04:47 +02:00
|
|
|
self.camera_config = config
|
|
|
|
self.detect_config = config.detect
|
2023-07-13 12:32:51 +02:00
|
|
|
self.ptz_metrics = ptz_metrics
|
2023-07-11 13:23:20 +02:00
|
|
|
self.ptz_autotracker_enabled = ptz_metrics["ptz_autotracker_enabled"]
|
2023-07-13 12:32:51 +02:00
|
|
|
self.ptz_motion_estimator = {}
|
2023-07-08 14:04:47 +02:00
|
|
|
self.camera_name = config.name
|
2023-05-31 16:12:43 +02:00
|
|
|
self.track_id_map = {}
|
|
|
|
# TODO: could also initialize a tracker per object class if there
|
|
|
|
# was a good reason to have different distance calculations
|
|
|
|
self.tracker = Tracker(
|
|
|
|
distance_function=frigate_distance,
|
|
|
|
distance_threshold=2.5,
|
2023-10-31 01:26:31 +01:00
|
|
|
initialization_delay=self.detect_config.min_initialized,
|
|
|
|
hit_counter_max=self.detect_config.max_disappeared,
|
2023-05-31 16:12:43 +02:00
|
|
|
)
|
2023-07-11 13:23:20 +02:00
|
|
|
if self.ptz_autotracker_enabled.value:
|
2023-07-13 12:32:51 +02:00
|
|
|
self.ptz_motion_estimator = PtzMotionEstimator(
|
|
|
|
self.camera_config, self.ptz_metrics
|
|
|
|
)
|
2023-05-31 16:12:43 +02:00
|
|
|
|
|
|
|
def register(self, track_id, obj):
|
|
|
|
rand_id = "".join(random.choices(string.ascii_lowercase + string.digits, k=6))
|
|
|
|
id = f"{obj['frame_time']}-{rand_id}"
|
|
|
|
self.track_id_map[track_id] = id
|
|
|
|
obj["id"] = id
|
|
|
|
obj["start_time"] = obj["frame_time"]
|
|
|
|
obj["motionless_count"] = 0
|
|
|
|
obj["position_changes"] = 0
|
2023-10-25 01:24:30 +02:00
|
|
|
obj["score_history"] = [
|
|
|
|
p.data["score"]
|
|
|
|
for p in next(
|
|
|
|
(o for o in self.tracker.tracked_objects if o.global_id == track_id)
|
|
|
|
).past_detections
|
|
|
|
]
|
2023-05-31 16:12:43 +02:00
|
|
|
self.tracked_objects[id] = obj
|
|
|
|
self.disappeared[id] = 0
|
|
|
|
self.positions[id] = {
|
|
|
|
"xmins": [],
|
|
|
|
"ymins": [],
|
|
|
|
"xmaxs": [],
|
|
|
|
"ymaxs": [],
|
|
|
|
"xmin": 0,
|
|
|
|
"ymin": 0,
|
|
|
|
"xmax": self.detect_config.width,
|
|
|
|
"ymax": self.detect_config.height,
|
|
|
|
}
|
|
|
|
|
2023-06-16 14:32:43 +02:00
|
|
|
def deregister(self, id, track_id):
|
2023-05-31 16:12:43 +02:00
|
|
|
del self.tracked_objects[id]
|
|
|
|
del self.disappeared[id]
|
2023-06-16 14:32:43 +02:00
|
|
|
self.tracker.tracked_objects = [
|
|
|
|
o for o in self.tracker.tracked_objects if o.global_id != track_id
|
|
|
|
]
|
|
|
|
del self.track_id_map[track_id]
|
2023-05-31 16:12:43 +02:00
|
|
|
|
|
|
|
# tracks the current position of the object based on the last N bounding boxes
|
|
|
|
# returns False if the object has moved outside its previous position
|
|
|
|
def update_position(self, id, box):
|
|
|
|
position = self.positions[id]
|
|
|
|
position_box = (
|
|
|
|
position["xmin"],
|
|
|
|
position["ymin"],
|
|
|
|
position["xmax"],
|
|
|
|
position["ymax"],
|
|
|
|
)
|
|
|
|
|
|
|
|
xmin, ymin, xmax, ymax = box
|
|
|
|
|
|
|
|
iou = intersection_over_union(position_box, box)
|
|
|
|
|
|
|
|
# if the iou drops below the threshold
|
|
|
|
# assume the object has moved to a new position and reset the computed box
|
|
|
|
if iou < 0.6:
|
|
|
|
self.positions[id] = {
|
|
|
|
"xmins": [xmin],
|
|
|
|
"ymins": [ymin],
|
|
|
|
"xmaxs": [xmax],
|
|
|
|
"ymaxs": [ymax],
|
|
|
|
"xmin": xmin,
|
|
|
|
"ymin": ymin,
|
|
|
|
"xmax": xmax,
|
|
|
|
"ymax": ymax,
|
|
|
|
}
|
|
|
|
return False
|
|
|
|
|
|
|
|
# if there are less than 10 entries for the position, add the bounding box
|
|
|
|
# and recompute the position box
|
|
|
|
if len(position["xmins"]) < 10:
|
|
|
|
position["xmins"].append(xmin)
|
|
|
|
position["ymins"].append(ymin)
|
|
|
|
position["xmaxs"].append(xmax)
|
|
|
|
position["ymaxs"].append(ymax)
|
|
|
|
# by using percentiles here, we hopefully remove outliers
|
|
|
|
position["xmin"] = np.percentile(position["xmins"], 15)
|
|
|
|
position["ymin"] = np.percentile(position["ymins"], 15)
|
|
|
|
position["xmax"] = np.percentile(position["xmaxs"], 85)
|
|
|
|
position["ymax"] = np.percentile(position["ymaxs"], 85)
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def is_expired(self, id):
|
|
|
|
obj = self.tracked_objects[id]
|
|
|
|
# get the max frames for this label type or the default
|
|
|
|
max_frames = self.detect_config.stationary.max_frames.objects.get(
|
|
|
|
obj["label"], self.detect_config.stationary.max_frames.default
|
|
|
|
)
|
|
|
|
|
|
|
|
# if there is no max_frames for this label type, continue
|
|
|
|
if max_frames is None:
|
|
|
|
return False
|
|
|
|
|
|
|
|
# if the object has exceeded the max_frames setting, deregister
|
|
|
|
if (
|
|
|
|
obj["motionless_count"] - self.detect_config.stationary.threshold
|
|
|
|
> max_frames
|
|
|
|
):
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
def update(self, track_id, obj):
|
|
|
|
id = self.track_id_map[track_id]
|
|
|
|
self.disappeared[id] = 0
|
|
|
|
# update the motionless count if the object has not moved to a new position
|
|
|
|
if self.update_position(id, obj["box"]):
|
|
|
|
self.tracked_objects[id]["motionless_count"] += 1
|
|
|
|
if self.is_expired(id):
|
2023-06-16 14:32:43 +02:00
|
|
|
self.deregister(id, track_id)
|
2023-05-31 16:12:43 +02:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
# register the first position change and then only increment if
|
|
|
|
# the object was previously stationary
|
|
|
|
if (
|
|
|
|
self.tracked_objects[id]["position_changes"] == 0
|
|
|
|
or self.tracked_objects[id]["motionless_count"]
|
|
|
|
>= self.detect_config.stationary.threshold
|
|
|
|
):
|
|
|
|
self.tracked_objects[id]["position_changes"] += 1
|
|
|
|
self.tracked_objects[id]["motionless_count"] = 0
|
|
|
|
|
|
|
|
self.tracked_objects[id].update(obj)
|
|
|
|
|
|
|
|
def update_frame_times(self, frame_time):
|
|
|
|
# if the object was there in the last frame, assume it's still there
|
|
|
|
detections = [
|
|
|
|
(
|
|
|
|
obj["label"],
|
|
|
|
obj["score"],
|
|
|
|
obj["box"],
|
|
|
|
obj["area"],
|
|
|
|
obj["ratio"],
|
|
|
|
obj["region"],
|
|
|
|
)
|
|
|
|
for id, obj in self.tracked_objects.items()
|
|
|
|
if self.disappeared[id] == 0
|
|
|
|
]
|
|
|
|
self.match_and_update(frame_time, detections=detections)
|
|
|
|
|
|
|
|
def match_and_update(self, frame_time, detections):
|
|
|
|
norfair_detections = []
|
|
|
|
|
|
|
|
for obj in detections:
|
|
|
|
# centroid is used for other things downstream
|
|
|
|
centroid_x = int((obj[2][0] + obj[2][2]) / 2.0)
|
|
|
|
centroid_y = int((obj[2][1] + obj[2][3]) / 2.0)
|
|
|
|
|
|
|
|
# track based on top,left and bottom,right corners instead of centroid
|
|
|
|
points = np.array([[obj[2][0], obj[2][1]], [obj[2][2], obj[2][3]]])
|
|
|
|
|
|
|
|
norfair_detections.append(
|
|
|
|
Detection(
|
|
|
|
points=points,
|
|
|
|
label=obj[0],
|
|
|
|
data={
|
|
|
|
"label": obj[0],
|
|
|
|
"score": obj[1],
|
|
|
|
"box": obj[2],
|
|
|
|
"area": obj[3],
|
|
|
|
"ratio": obj[4],
|
|
|
|
"region": obj[5],
|
|
|
|
"frame_time": frame_time,
|
|
|
|
"centroid": (centroid_x, centroid_y),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2023-07-08 14:04:47 +02:00
|
|
|
coord_transformations = None
|
|
|
|
|
2023-07-11 13:23:20 +02:00
|
|
|
if self.ptz_autotracker_enabled.value:
|
2023-07-13 12:32:51 +02:00
|
|
|
# we must have been enabled by mqtt, so set up the estimator
|
|
|
|
if not self.ptz_motion_estimator:
|
|
|
|
self.ptz_motion_estimator = PtzMotionEstimator(
|
|
|
|
self.camera_config, self.ptz_metrics
|
|
|
|
)
|
|
|
|
|
2023-07-08 14:04:47 +02:00
|
|
|
coord_transformations = self.ptz_motion_estimator.motion_estimator(
|
|
|
|
detections, frame_time, self.camera_name
|
|
|
|
)
|
|
|
|
|
|
|
|
tracked_objects = self.tracker.update(
|
|
|
|
detections=norfair_detections, coord_transformations=coord_transformations
|
|
|
|
)
|
2023-05-31 16:12:43 +02:00
|
|
|
|
|
|
|
# update or create new tracks
|
|
|
|
active_ids = []
|
|
|
|
for t in tracked_objects:
|
2023-06-11 15:45:11 +02:00
|
|
|
estimate = tuple(t.estimate.flatten().astype(int))
|
|
|
|
# keep the estimate within the bounds of the image
|
|
|
|
estimate = (
|
|
|
|
max(0, estimate[0]),
|
|
|
|
max(0, estimate[1]),
|
|
|
|
min(self.detect_config.width - 1, estimate[2]),
|
|
|
|
min(self.detect_config.height - 1, estimate[3]),
|
|
|
|
)
|
|
|
|
obj = {
|
|
|
|
**t.last_detection.data,
|
|
|
|
"estimate": estimate,
|
2023-10-22 18:59:13 +02:00
|
|
|
"estimate_velocity": t.estimate_velocity,
|
2023-06-11 15:45:11 +02:00
|
|
|
}
|
2023-05-31 16:12:43 +02:00
|
|
|
active_ids.append(t.global_id)
|
|
|
|
if t.global_id not in self.track_id_map:
|
2023-06-11 15:45:11 +02:00
|
|
|
self.register(t.global_id, obj)
|
2023-05-31 16:12:43 +02:00
|
|
|
# if there wasn't a detection in this frame, increment disappeared
|
|
|
|
elif t.last_detection.data["frame_time"] != frame_time:
|
|
|
|
id = self.track_id_map[t.global_id]
|
|
|
|
self.disappeared[id] += 1
|
2023-06-11 15:45:11 +02:00
|
|
|
# sometimes the estimate gets way off
|
|
|
|
# only update if the upper left corner is actually upper left
|
|
|
|
if estimate[0] < estimate[2] and estimate[1] < estimate[3]:
|
|
|
|
self.tracked_objects[id]["estimate"] = obj["estimate"]
|
2023-05-31 16:12:43 +02:00
|
|
|
# else update it
|
|
|
|
else:
|
2023-06-11 15:45:11 +02:00
|
|
|
self.update(t.global_id, obj)
|
2023-05-31 16:12:43 +02:00
|
|
|
|
|
|
|
# clear expired tracks
|
|
|
|
expired_ids = [k for k in self.track_id_map.keys() if k not in active_ids]
|
|
|
|
for e_id in expired_ids:
|
2023-06-16 14:32:43 +02:00
|
|
|
self.deregister(self.track_id_map[e_id], e_id)
|
2023-05-31 16:12:43 +02:00
|
|
|
|
2023-10-24 02:50:22 +02:00
|
|
|
# update list of object boxes that don't have a tracked object yet
|
|
|
|
tracked_object_boxes = [obj["box"] for obj in self.tracked_objects.values()]
|
|
|
|
self.untracked_object_boxes = [
|
|
|
|
o[2] for o in detections if o[2] not in tracked_object_boxes
|
|
|
|
]
|
|
|
|
|
2023-05-31 16:12:43 +02:00
|
|
|
def debug_draw(self, frame, frame_time):
|
|
|
|
active_detections = [
|
|
|
|
Drawable(id=obj.id, points=obj.last_detection.points, label=obj.label)
|
|
|
|
for obj in self.tracker.tracked_objects
|
|
|
|
if obj.last_detection.data["frame_time"] == frame_time
|
|
|
|
]
|
|
|
|
missing_detections = [
|
|
|
|
Drawable(id=obj.id, points=obj.last_detection.points, label=obj.label)
|
|
|
|
for obj in self.tracker.tracked_objects
|
|
|
|
if obj.last_detection.data["frame_time"] != frame_time
|
|
|
|
]
|
|
|
|
# draw the estimated bounding box
|
|
|
|
draw_boxes(frame, self.tracker.tracked_objects, color="green", draw_ids=True)
|
|
|
|
# draw the detections that were detected in the current frame
|
|
|
|
draw_boxes(frame, active_detections, color="blue", draw_ids=True)
|
|
|
|
# draw the detections that are missing in the current frame
|
|
|
|
draw_boxes(frame, missing_detections, color="red", draw_ids=True)
|
|
|
|
|
|
|
|
# draw the distance calculation for the last detection
|
|
|
|
# estimate vs detection
|
|
|
|
for obj in self.tracker.tracked_objects:
|
|
|
|
ld = obj.last_detection
|
|
|
|
# bottom right
|
|
|
|
text_anchor = (
|
|
|
|
ld.points[1, 0],
|
|
|
|
ld.points[1, 1],
|
|
|
|
)
|
|
|
|
frame = Drawer.text(
|
|
|
|
frame,
|
|
|
|
f"{obj.id}: {str(obj.last_distance)}",
|
|
|
|
position=text_anchor,
|
|
|
|
size=None,
|
|
|
|
color=(255, 0, 0),
|
|
|
|
thickness=None,
|
|
|
|
)
|