"""Bounded per-camera frame window. No copying of image tensors across the BT API.""" from collections import deque class FrameWindow: def __init__(self,maximum=32):self.frames=deque(maxlen=maximum) def add(self,stamp,camera,path): if self.frames and stamp