VGGT: Visual Geometry Grounded Transformer for Rapid 3D Scene Reconstruction

This repository profile is provided by osrepos.com, an open source repository discovery platform.

VGGT: Visual Geometry Grounded Transformer for Rapid 3D Scene Reconstruction

Summary

VGGT, the recipient of the CVPR 2025 Best Paper Award, is a Visual Geometry Grounded Transformer developed by Facebook AI and the Visual Geometry Group at Oxford. This innovative feed-forward neural network efficiently infers key 3D scene attributes, including camera parameters, depth maps, and 3D point tracks, from single or multiple images within seconds. It offers a powerful solution for rapid 3D reconstruction and scene understanding.

Repository Information

Analyzed by OSRepos on December 10, 2025

Topics

Click on any tag to explore related repositories

Use at your own risk

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.

Introduction

VGGT, the Visual Geometry Grounded Transformer, is an innovative feed-forward neural network developed by Facebook AI and the Visual Geometry Group at Oxford. Recognized with the prestigious CVPR 2025 Best Paper Award, VGGT is designed to directly infer all key 3D attributes of a scene, including extrinsic and intrinsic camera parameters, point maps, depth maps, and 3D point tracks. It achieves this remarkable feat from one, a few, or hundreds of views, all within seconds. The project recently updated its licensing to permit commercial use for a specific checkpoint, VGGT-1B-Commercial, making it accessible for a wider range of applications.

Installation

To get started with VGGT, clone the repository and install the necessary dependencies. Ensure you have torch, torchvision, numpy, Pillow, and huggingface_hub installed.

git clone https://github.com/facebookresearch/vggt.git
cd vggt
pip install -r requirements.txt

Alternatively, VGGT can be installed as a Python package. Refer to the official documentation for detailed instructions on package installation.

Examples

Using VGGT is straightforward. The model automatically downloads pretrained weights upon its first run. Here’s a quick example to predict 3D attributes from a set of images:

import torch
from vggt.models.vggt import VGGT
from vggt.utils.load_fn import load_and_preprocess_images

device = "cuda" if torch.cuda.is_available() else "cpu"
dtype = torch.bfloat16 if torch.cuda.get_device_capability()[0] >= 8 else torch.float16

# Initialize the model and load the pretrained weights.
model = VGGT.from_pretrained("facebook/VGGT-1B").to(device)

# Load and preprocess example images (replace with your own image paths)
image_names = ["path/to/imageA.png", "path/to/imageB.png", "path/to/imageC.png"]  
images = load_and_preprocess_images(image_names).to(device)

with torch.no_grad():
    with torch.cuda.amp.autocast(dtype=dtype):
        # Predict attributes including cameras, depth maps, and point maps.
        predictions = model(images)

VGGT also offers detailed usage for specific branches (camera, depth, point, track heads), interactive 3D visualization demos (Gradio and Viser), and the ability to export predictions to COLMAP format, which can then be used for Gaussian Splatting training. It also demonstrates surprisingly strong zero-shot single-view reconstruction capabilities.

Why Use VGGT

VGGT stands out for several compelling reasons:

  • Rapid 3D Reconstruction: It infers complex 3D scene attributes within seconds, significantly faster than many traditional methods.
  • Comprehensive Output: The model provides a full suite of 3D data, including camera parameters, depth maps, point maps, and 3D point tracks.
  • Versatile Input: It effectively processes scenes from a single image, a few images, or hundreds of views.
  • Award-Winning Research: Recognized with the CVPR 2025 Best Paper Award, highlighting its groundbreaking contributions to computer vision.
  • Seamless Integration: Supports direct export to COLMAP format, enabling easy integration with other 3D reconstruction and rendering pipelines like Gaussian Splatting.
  • Strong Zero-Shot Performance: Achieves competitive results in single-view reconstruction without explicit training for this task.
  • Commercial Use License: A dedicated checkpoint, VGGT-1B-Commercial, is available under a commercial-friendly license, expanding its applicability for businesses and developers.

Links

Related repositories

Similar repositories that may be relevant next.

dify-official-plugins: Extending Dify with AI Models, Tools, and Agent Strategies

dify-official-plugins: Extending Dify with AI Models, Tools, and Agent Strategies

August 18, 2026

The `dify-official-plugins` repository hosts a collection of official plugins for Dify, an open-source platform for developing LLM-powered AI applications. These plugins, including models, tools, agent strategies, and extensions, enhance Dify's capabilities and are maintained by the official Dify team. They are designed to help developers efficiently build, deploy, and manage AI-driven solutions.

PythonAILLM
Agent Skills: A Standardized Way to Give AI Agents New Capabilities

Agent Skills: A Standardized Way to Give AI Agents New Capabilities

August 18, 2026

Agent Skills provides a lightweight, open format for extending AI agent capabilities with specialized knowledge and workflows. It allows packaging procedural knowledge and context into portable, version-controlled folders that agents load on demand. This enables agents to gain domain expertise, follow repeatable workflows, and reuse skills across various compatible AI tools.

agent-skillsPythonAI
A-MEM: Self-Evolving Memory for Coding Agents

A-MEM: Self-Evolving Memory for Coding Agents

August 17, 2026

A-MEM is an innovative self-evolving memory system designed for coding agents, organizing knowledge into a dynamic Zettelkasten-style graph. It allows memories to evolve and connect over time, enhancing an agent's ability to recall and utilize information effectively. This system offers both semantic and structural search capabilities for a richer knowledge base.

PythonAILLM
Agent Sandbox: Secure Local Development for AI Coding Agents

Agent Sandbox: Secure Local Development for AI Coding Agents

August 17, 2026

Agent Sandbox provides a robust and secure local development environment specifically designed for collaborating with AI coding agents. It ensures minimal filesystem access, configurable network egress policies, and secure secret injection, protecting your local machine from potentially risky agent operations. This project supports various AI agents and integrates seamlessly with both CLI and popular IDE devcontainer setups.

agent-harnessagent-sandboxagents

Source repository

Open the original repository on GitHub.

10 counted GitHub visits

View on GitHub
OS
OSRepos

Analysis and discovery of open source repositories. Find interesting projects and follow their updates.

Monitor your website with YourWebsiteScore

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of third-party repository code is at your own risk. Always review source code, dependencies, licenses, and security implications before running anything.

© 2025 OSRepos. Built with Nuxt 3 and lots of ❤️