Artificial Intelligence · 31.07.2026, 20:34 UTC
LingBot-Map Tutorial: GPU-Aware Inference and Point Cloud Export
| Schweregrad | info |
|---|---|
| Kategorie | Artificial Intelligence |
| Quelle | MarkTechPost ↗ |
| Veröffentlicht | 31.07.2026 UTC |
Sicherheitsmeldung mit Schweregrad noch nicht bewertet. Technische Details im Tab „Originaltext“; empfohlene Schritte in der Checkliste.
In this tutorial, we implement an end-to-end streaming 3D reconstruction pipeline with LingBot-Map. We begin by configuring the input source, reconstruction settings, checkpoint selection, and output controls, then probe the available GPU and automatically tune frame limits, camera iterations, scale frames, and KV-cache parameters according to the detected VRAM. We install the repository and its dependencies, download the pretrained checkpoint, preprocess image or video frames, and construct the GCTStream model with streaming attention and long-range trajectory memory. We then perform mixed-precision inference, decode the predicted camera poses and intrinsic parameters, convert depth maps into world-coordinate point clouds, validate the recovered geometry, visualize the reconstructed scene and camera trajectory, and export the results as PLY, NPZ, or GLB artifacts.
Copy CodeCopiedUse a different BrowserCFG = { "scene": "courthouse", "image_folder": None, "video_path": None, "fps": 10, "max_frames": None, "stride": None, "checkpoint": "lingbot-map.pt", "image_size": 518, "patch_size": 14, "use_sdpa": True, "mode": "streaming", "num_scale_frames": None, "keyframe_interval": None, "kv_cache_sliding_window": 64, "camera_num_iterations": None, "offload_to_cpu": True, "window_size": 128, "overlap_keyframes": 8, "conf_percentile": 55.0, "pixel_stride": 2, "max_plot_points": 60000, "export_ply": True, "export_glb": False, "launch_viser": False, "run_ablation": False, "seed": 0, } WORK = "/content" REPO = f"{WORK}/lingbot-map" OUT = …