(self)
| 43 | |
| 44 | @property |
| 45 | def size(self): |
| 46 | w = self.curr_rect[2] - self.curr_rect[0] |
| 47 | h = self.curr_rect[3] - self.curr_rect[1] |
| 48 | return np.array([w, h]) |
| 49 | |
| 50 | class tracklet: |
| 51 | def __init__(self, det_rect): |
no outgoing calls
no test coverage detected