(self, tracker_id: int)
| 375 | self.current_frame_id += 1 |
| 376 | |
| 377 | def get(self, tracker_id: int) -> np.ndarray[Any, np.dtype[np.float32]]: |
| 378 | filtered: np.ndarray[Any, np.dtype[np.float32]] = ( |
| 379 | self.xy[self.tracker_id == tracker_id].copy().astype(np.float32, copy=False) |
| 380 | ) |
| 381 | return filtered |
| 382 | |
| 383 | |
| 384 | def hex_to_rgba(hex_color: str) -> tuple[int, int, int, int]: |
no outgoing calls
no test coverage detected