Tensor: Size dimensions of each box in shape (N, 3).
(self)
| 178 | |
| 179 | @property |
| 180 | def dims(self) -> torch.Tensor: |
| 181 | """Tensor: Size dimensions of each box in shape (N, 3).""" |
| 182 | return self.tensor[:, 3:6] |
| 183 | |
| 184 | @classmethod |
| 185 | def overlaps(cls, boxes1, boxes2, mode='iou', eps=1e-4): |
nothing calls this directly
no outgoing calls
no test coverage detected