Tensor: BEV of the points in shape (N, 2).
(self)
| 261 | |
| 262 | @property |
| 263 | def bev(self) -> Tensor: |
| 264 | """Tensor: BEV of the points in shape (N, 2).""" |
| 265 | return self.tensor[:, [0, 1]] |
| 266 | |
| 267 | def in_range_bev( |
| 268 | self, point_range: Union[Tensor, np.ndarray, |
nothing calls this directly
no outgoing calls
no test coverage detected