← Reddit

Has anyone used Claude Code to build a walkable, photorealistic 3D tour of a property?

Reddit · dr_progress · August 2, 2026
A developer used Claude Code to autonomously create photorealistic walkable 3D tours of interior properties by processing 4K iPhone footage through GPU infrastructure, frame extraction, and Gaussian splat training, resulting in WebGL viewers. Small rooms achieved sharp photorealistic results, but larger spaces produced scattered reconstructions that remained sharp only from specific filming angles. The issue was identified as a capture problem rather than a code limitation, prompting a plan to implement depth-regularized Gaussian splats using combined RGB and LiDAR data.

Detailed Analysis

A Reddit post in r/ClaudeAI details an ambitious experiment in which a user tasked Claude Code with building a photorealistic, walkable 3D tour of a real estate interior, largely autonomously. Rather than treating Claude as a coding assistant confined to a text editor, the user gave it a high-level goal and let it operate across a much wider stack: provisioning a cloud GPU instance, installing CUDA, COLMAP, and a Gaussian-splatting trainer over SSH, then processing an iPhone 16 Pro Max video walkthrough end-to-end. Claude extracted and de-blurred frames, solved camera poses via COLMAP's structure-from-motion pipeline, trained a 3D Gaussian splat model, and published both a WebGL viewer and a first-person walkable experience — sending the finished links back to the user with minimal supervision required.

The technical results were mixed but instructive. Small, texture-rich rooms reconstructed with genuine photorealism, while larger spaces degraded into scattered point-cloud smears that only looked coherent from the exact angles originally filmed. This is a well-known limitation of Gaussian splatting and photogrammetry more broadly: sparse or fast handheld footage, plain untextured surfaces, and inconsistent lighting make it hard for structure-from-motion algorithms to triangulate accurate geometry. Notably, Claude itself diagnosed this as a capture problem rather than a code problem, and proposed a next iteration using depth-regularized splatting — fusing RGB footage with LiDAR depth data (via an app like Record3D) so that measured geometry anchors the splat and prevents the drift and smearing seen in texture-poor, larger rooms. That Claude could reason about the failure mode and propose a domain-appropriate fix, rather than just executing a fixed pipeline, is itself notable.

The significance here extends beyond a single hobbyist project. It illustrates how coding agents like Claude Code are increasingly being pushed outside conventional software engineering tasks into orchestrating full computer-vision and 3D-reconstruction pipelines — provisioning infrastructure, chaining together specialized tools (COLMAP, CUDA, Gaussian-splatting trainers, LiDAR capture apps), and iterating on results based on visual inspection of output quality. This is a meaningful expansion of what "agentic coding" means in practice: not just writing and debugging code, but managing an entire applied research workflow across cloud infrastructure, third-party CV tools, and a physical-world capture process, with the agent making judgment calls about which failures are algorithmic versus data-related.

This also reflects a broader trend in AI development where large language model agents are being used as general-purpose technical orchestrators for domains that traditionally required specialized expertise in robotics, photogrammetry, or computer vision. Real estate, architecture, and virtual production are natural target markets for cheap, automated photoreal capture, and the barrier has historically been the need for expensive LiDAR rigs or manual COLMAP/Gaussian-splat tuning by specialists. If agents like Claude Code can meaningfully lower that barrier — diagnosing capture artifacts, proposing depth-regularized fixes, and automating the GPU/training pipeline — it points toward a future where consumer-grade phone footage plus an AI orchestrator can approximate outputs that once required professional 3D scanning teams. The unresolved scaling challenge (stitching multiple rooms into a single coherent walkable property) also highlights that while agentic AI can automate individual pipeline stages effectively, composing them into a robust, production-ready system for messier real-world use cases remains an open, active problem.

Read original article →