Modify the default extrinsics.
(self, new_value: torch.Tensor)
| 345 | return camera_info |
| 346 | |
| 347 | def set_screen_extrinsics(self, new_value: torch.Tensor) -> None: |
| 348 | """Modify the default extrinsics.""" |
| 349 | self.screen_extrinsics = new_value |
| 350 | self.depth_quantiles = _compute_depth_quantiles(self._scene_points, self.screen_extrinsics) |
| 351 | |
| 352 | |
| 353 | def get_screen_resolution_px_from_input(width: int, height: int) -> tuple[int, int]: |
nothing calls this directly
no test coverage detected