(self)
| 29 | |
| 30 | class detect_rect: |
| 31 | def __init__(self): |
| 32 | self.curr_frame = 0 |
| 33 | self.curr_rect = np.array([0, 0, 1, 1]) |
| 34 | self.next_rect = np.array([0, 0, 1, 1]) |
| 35 | self.conf = 0 |
| 36 | self.id = 0 |
| 37 | |
| 38 | @property |
| 39 | def position(self): |
nothing calls this directly
no outgoing calls
no test coverage detected