Spaces:
Paused
Paused
File size: 12,887 Bytes
c4ee290 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | """
ShortSmith v2 - Object Tracker Module
Multi-object tracking using ByteTrack for:
- Maintaining person identity across frames
- Handling occlusions and reappearances
- Tracking specific individuals through video
ByteTrack uses two-stage association for robust tracking.
"""
from pathlib import Path
from typing import List, Optional, Dict, Tuple, Union
from dataclasses import dataclass, field
import numpy as np
from utils.logger import get_logger, LogTimer
from utils.helpers import InferenceError
from config import get_config
logger = get_logger("models.tracker")
@dataclass
class TrackedObject:
"""Represents a tracked object across frames."""
track_id: int # Unique track identifier
bbox: Tuple[int, int, int, int] # Current bounding box (x1, y1, x2, y2)
confidence: float # Detection confidence
class_id: int = 0 # Object class (0 = person)
frame_id: int = 0 # Current frame number
# Track history
history: List[Tuple[int, int, int, int]] = field(default_factory=list)
age: int = 0 # Frames since first detection
hits: int = 0 # Number of detections
time_since_update: int = 0 # Frames since last detection
@property
def center(self) -> Tuple[int, int]:
x1, y1, x2, y2 = self.bbox
return ((x1 + x2) // 2, (y1 + y2) // 2)
@property
def area(self) -> int:
x1, y1, x2, y2 = self.bbox
return (x2 - x1) * (y2 - y1)
@property
def is_confirmed(self) -> bool:
"""Track is confirmed after multiple detections."""
return self.hits >= 3
@dataclass
class TrackingResult:
"""Result of tracking for a single frame."""
frame_id: int
tracks: List[TrackedObject]
lost_tracks: List[int] # Track IDs lost this frame
new_tracks: List[int] # New track IDs this frame
class ObjectTracker:
"""
Multi-object tracker using ByteTrack algorithm.
ByteTrack features:
- Two-stage association (high-confidence first, then low-confidence)
- Handles occlusions by keeping lost tracks
- Re-identifies objects after temporary disappearance
"""
def __init__(
self,
track_thresh: float = 0.5,
track_buffer: int = 30,
match_thresh: float = 0.8,
):
"""
Initialize tracker.
Args:
track_thresh: Detection confidence threshold for new tracks
track_buffer: Frames to keep lost tracks
match_thresh: IoU threshold for matching
"""
self.track_thresh = track_thresh
self.track_buffer = track_buffer
self.match_thresh = match_thresh
self._tracks: Dict[int, TrackedObject] = {}
self._lost_tracks: Dict[int, TrackedObject] = {}
self._next_id = 1
self._frame_id = 0
logger.info(
f"ObjectTracker initialized (thresh={track_thresh}, "
f"buffer={track_buffer}, match={match_thresh})"
)
def update(
self,
detections: List[Tuple[Tuple[int, int, int, int], float]],
) -> TrackingResult:
"""
Update tracker with new detections.
Args:
detections: List of (bbox, confidence) tuples
Returns:
TrackingResult with current tracks
"""
self._frame_id += 1
if not detections:
# No detections - age all tracks
return self._handle_no_detections()
# Separate high and low confidence detections
high_conf = [(bbox, conf) for bbox, conf in detections if conf >= self.track_thresh]
low_conf = [(bbox, conf) for bbox, conf in detections if conf < self.track_thresh]
# First association: match high-confidence detections to active tracks
matched, unmatched_tracks, unmatched_dets = self._associate(
list(self._tracks.values()),
high_conf,
self.match_thresh,
)
# Update matched tracks
for track_id, det_idx in matched:
bbox, conf = high_conf[det_idx]
self._update_track(track_id, bbox, conf)
# Second association: match low-confidence to remaining tracks
if low_conf and unmatched_tracks:
remaining_tracks = [self._tracks[tid] for tid in unmatched_tracks]
matched2, unmatched_tracks, _ = self._associate(
remaining_tracks,
low_conf,
self.match_thresh * 0.9, # Lower threshold
)
for track_id, det_idx in matched2:
bbox, conf = low_conf[det_idx]
self._update_track(track_id, bbox, conf)
# Handle unmatched tracks
lost_this_frame = []
for track_id in unmatched_tracks:
track = self._tracks[track_id]
track.time_since_update += 1
if track.time_since_update > self.track_buffer:
# Remove track
del self._tracks[track_id]
lost_this_frame.append(track_id)
else:
# Move to lost tracks
self._lost_tracks[track_id] = self._tracks.pop(track_id)
# Try to recover lost tracks with unmatched detections
recovered = self._recover_lost_tracks(
[(high_conf[i] if i < len(high_conf) else low_conf[i - len(high_conf)])
for i in unmatched_dets]
)
# Create new tracks for remaining detections
new_tracks = []
for i in unmatched_dets:
if i not in recovered:
det = high_conf[i] if i < len(high_conf) else low_conf[i - len(high_conf)]
bbox, conf = det
track_id = self._create_track(bbox, conf)
new_tracks.append(track_id)
return TrackingResult(
frame_id=self._frame_id,
tracks=list(self._tracks.values()),
lost_tracks=lost_this_frame,
new_tracks=new_tracks,
)
def _associate(
self,
tracks: List[TrackedObject],
detections: List[Tuple[Tuple[int, int, int, int], float]],
thresh: float,
) -> Tuple[List[Tuple[int, int]], List[int], List[int]]:
"""
Associate detections to tracks using IoU.
Returns:
(matched_pairs, unmatched_track_ids, unmatched_detection_indices)
"""
if not tracks or not detections:
return [], [t.track_id for t in tracks], list(range(len(detections)))
# Compute IoU matrix
iou_matrix = np.zeros((len(tracks), len(detections)))
for i, track in enumerate(tracks):
for j, (det_bbox, _) in enumerate(detections):
iou_matrix[i, j] = self._compute_iou(track.bbox, det_bbox)
# Greedy matching
matched = []
unmatched_tracks = set(t.track_id for t in tracks)
unmatched_dets = set(range(len(detections)))
while True:
# Find best match
if iou_matrix.size == 0:
break
max_iou = np.max(iou_matrix)
if max_iou < thresh:
break
max_idx = np.unravel_index(np.argmax(iou_matrix), iou_matrix.shape)
track_idx, det_idx = max_idx
track_id = tracks[track_idx].track_id
matched.append((track_id, det_idx))
unmatched_tracks.discard(track_id)
unmatched_dets.discard(det_idx)
# Remove matched row and column
iou_matrix[track_idx, :] = -1
iou_matrix[:, det_idx] = -1
return matched, list(unmatched_tracks), list(unmatched_dets)
def _compute_iou(
self,
bbox1: Tuple[int, int, int, int],
bbox2: Tuple[int, int, int, int],
) -> float:
"""Compute IoU between two bounding boxes."""
x1_1, y1_1, x2_1, y2_1 = bbox1
x1_2, y1_2, x2_2, y2_2 = bbox2
# Intersection
xi1 = max(x1_1, x1_2)
yi1 = max(y1_1, y1_2)
xi2 = min(x2_1, x2_2)
yi2 = min(y2_1, y2_2)
if xi2 <= xi1 or yi2 <= yi1:
return 0.0
intersection = (xi2 - xi1) * (yi2 - yi1)
# Union
area1 = (x2_1 - x1_1) * (y2_1 - y1_1)
area2 = (x2_2 - x1_2) * (y2_2 - y1_2)
union = area1 + area2 - intersection
return intersection / union if union > 0 else 0.0
def _update_track(
self,
track_id: int,
bbox: Tuple[int, int, int, int],
confidence: float,
) -> None:
"""Update an existing track."""
track = self._tracks.get(track_id) or self._lost_tracks.get(track_id)
if track is None:
return
# Move from lost to active if needed
if track_id in self._lost_tracks:
self._tracks[track_id] = self._lost_tracks.pop(track_id)
track = self._tracks[track_id]
track.history.append(track.bbox)
track.bbox = bbox
track.confidence = confidence
track.frame_id = self._frame_id
track.hits += 1
track.time_since_update = 0
def _create_track(
self,
bbox: Tuple[int, int, int, int],
confidence: float,
) -> int:
"""Create a new track."""
track_id = self._next_id
self._next_id += 1
track = TrackedObject(
track_id=track_id,
bbox=bbox,
confidence=confidence,
frame_id=self._frame_id,
age=1,
hits=1,
)
self._tracks[track_id] = track
logger.debug(f"Created new track {track_id}")
return track_id
def _recover_lost_tracks(
self,
detections: List[Tuple[Tuple[int, int, int, int], float]],
) -> set:
"""Try to recover lost tracks with unmatched detections."""
recovered = set()
if not self._lost_tracks or not detections:
return recovered
for det_idx, (bbox, conf) in enumerate(detections):
best_iou = 0
best_track_id = None
for track_id, track in self._lost_tracks.items():
iou = self._compute_iou(track.bbox, bbox)
if iou > best_iou and iou > self.match_thresh * 0.7:
best_iou = iou
best_track_id = track_id
if best_track_id is not None:
self._update_track(best_track_id, bbox, conf)
recovered.add(det_idx)
logger.debug(f"Recovered track {best_track_id}")
return recovered
def _handle_no_detections(self) -> TrackingResult:
"""Handle frame with no detections."""
lost_this_frame = []
for track_id in list(self._tracks.keys()):
track = self._tracks[track_id]
track.time_since_update += 1
if track.time_since_update > self.track_buffer:
del self._tracks[track_id]
lost_this_frame.append(track_id)
else:
self._lost_tracks[track_id] = self._tracks.pop(track_id)
return TrackingResult(
frame_id=self._frame_id,
tracks=list(self._tracks.values()),
lost_tracks=lost_this_frame,
new_tracks=[],
)
def get_track(self, track_id: int) -> Optional[TrackedObject]:
"""Get a specific track by ID."""
return self._tracks.get(track_id) or self._lost_tracks.get(track_id)
def get_active_tracks(self) -> List[TrackedObject]:
"""Get all active tracks."""
return list(self._tracks.values())
def get_confirmed_tracks(self) -> List[TrackedObject]:
"""Get only confirmed tracks (multiple detections)."""
return [t for t in self._tracks.values() if t.is_confirmed]
def reset(self) -> None:
"""Reset tracker state."""
self._tracks.clear()
self._lost_tracks.clear()
self._frame_id = 0
logger.info("Tracker reset")
def get_track_for_target(
self,
target_bbox: Tuple[int, int, int, int],
threshold: float = 0.5,
) -> Optional[int]:
"""
Find track that best matches a target bounding box.
Args:
target_bbox: Target bounding box to match
threshold: Minimum IoU for match
Returns:
Track ID if found, None otherwise
"""
best_iou = 0
best_track = None
for track in self._tracks.values():
iou = self._compute_iou(track.bbox, target_bbox)
if iou > best_iou and iou > threshold:
best_iou = iou
best_track = track.track_id
return best_track
# Export public interface
__all__ = ["ObjectTracker", "TrackedObject", "TrackingResult"]
|