Tensor: BEV of the points in shape (N, 2).
(self)
| 51 | |
| 52 | @property |
| 53 | def bev(self) -> Tensor: |
| 54 | """Tensor: BEV of the points in shape (N, 2).""" |
| 55 | return self.tensor[:, [0, 2]] |
| 56 | |
| 57 | def convert_to(self, |
| 58 | dst: int, |
nothing calls this directly
no outgoing calls
no test coverage detected