(output)
| 162 | visualizer.onVioOutput(vioOutput.getCameraPose(0), status=vioOutput.status) |
| 163 | |
| 164 | def on_mapping_output(output): |
| 165 | try: |
| 166 | process_mapping_output(output) |
| 167 | except Exception as e: |
| 168 | print(f"ERROR: {e}", flush=True) |
| 169 | raise |
| 170 | |
| 171 | device_preset, cameras = parse_input_dir(args.input) |
| 172 | useMono = cameras != None and len(cameras) == 1 |
nothing calls this directly
no test coverage detected