()
| 10 | |
| 11 | |
| 12 | def _rs() -> Any: |
| 13 | try: |
| 14 | import pyrealsense2 as rs |
| 15 | except ImportError as exc: |
| 16 | raise RuntimeError("pyrealsense2 is required for --camera realsense") from exc |
| 17 | return rs |
| 18 | |
| 19 | |
| 20 | def _device_info(device: Any) -> DeviceInfo: |
no outgoing calls
no test coverage detected