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.

webargs: Efficient HTTP Request Argument Parsing for Python Web Frameworks

webargs: Efficient HTTP Request Argument Parsing for Python Web Frameworks

July 27, 2026

webargs is a robust Python library designed for parsing and validating HTTP request arguments across various web frameworks. It offers seamless integration with popular choices like Flask, Django, and aiohttp, simplifying the process of handling incoming request data. This library helps developers build more secure and reliable web applications by ensuring proper data validation.

PythonWeb DevelopmentAPI
scikit-video: Video Processing Routines for SciPy

scikit-video: Video Processing Routines for SciPy

July 27, 2026

scikit-video is a Python library designed for video processing, offering a suite of routines for tasks like I/O, quality metrics, and temporal filtering. Intended as a companion to scikit-image, it provides video-specific algorithms and aims for flexibility and GPU compute capabilities. This project offers a research-oriented alternative to existing frameworks, built entirely in Python.

PythonVideo ProcessingSciPy
vidgear: High-Performance Cross-Platform Video Processing Framework in Python

vidgear: High-Performance Cross-Platform Video Processing Framework in Python

July 27, 2026

vidgear is a high-performance, cross-platform Python framework for advanced video processing. It provides a comprehensive, multi-threaded, and asyncio API for real-time video capture, writing, streaming, and network transfer. This framework simplifies complex media operations, enabling developers to build robust applications with ease.

PythonVideo ProcessingReal-time Streaming
django-compressor: Optimize Django Assets with Compression and Minification

django-compressor: Optimize Django Assets with Compression and Minification

July 26, 2026

django-compressor is a powerful Django application that processes, combines, and minifies linked and inline JavaScript or CSS into cacheable static files. It significantly enhances web application performance by reducing file sizes and optimizing asset delivery. The tool supports various compilers like LESS and SASS, offering extensive configurability for efficient asset management.

PythonDjangoWeb Development

Source repository

Open the original repository on GitHub.

8 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 ❤️