(*, selector: str | None, width: int, height: int, fps: int)
| 140 | |
| 141 | |
| 142 | def create_camera(*, selector: str | None, width: int, height: int, fps: int) -> RealSenseCamera: |
| 143 | serial, info = resolve_device(selector) |
| 144 | return RealSenseCamera(serial=serial, info=info, width=width, height=height, fps=fps) |
| 145 |
nothing calls this directly
no test coverage detected