# WinT3R **Repository Path**: falin1/WinT3R ## Basic Information - **Project Name**: WinT3R - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-2-Clause - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-15 - **Last Updated**: 2025-09-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # WinT3R: Window-Based Streaming Reconstruction With Camera Token Pool [![Paper](https://img.shields.io/badge/Paper-00AEEF?style=plastic&logo=arxiv&logoColor=white)](https://arxiv.org/abs/2509.05296) [![Website](https://img.shields.io/website-up-down-green-red/http/shields.io.svg)](https://lizizun.github.io/WinT3R.github.io/) [![Hugging Face](https://img.shields.io/badge/%F0%9F%A4%97-Hugging%20Face-yellow)](https://huggingface.co/lizizun/WinT3R) Official implementation of **WinT3R** - an online model that infers precise camera pose and high-quality point map for image streams. ![Teaser Video](./assets/teaser.jpg) - [πŸ“– Overview](#-overview) - [πŸ› οΈ TODO List](#-todo-list) - [🌍 Installation](#-installation) - [πŸ’Ώ Checkpoints](#-checkpoints) - [🎯 Run Inference from Command Line](#-run-inference-from-command-line) - [πŸ“œ Citation ](#-citation) ## πŸ“– Overview We present WinT3R, a feed-forward model that infers precise camera pose and high-quality point map for image stream in an online manner. Our main contributions are summarized as follows: 1. **We propose an online window mechanism,** enabling sufficient interaction of image tokens within the same window and across adjacent windows. 2. **We maintain a camera token pool,** which functions as a lightweight ”global memory” and improves the quality of camera pose prediction with a global perspective. 3. **We achieve state-of-the-art performance,** experiments demonstrate that WinT3R achieves state-of-the-art performance in online 3D reconstruction and camera pose estimation, with the fastest reconstruction speed to date. ## πŸ› οΈ TODO List - [x] Release point cloud and camera pose estimation code. - [ ] Release evaluation code. - [ ] Release training code. ## 🌍 Installation ``` conda create -n WinT3R python=3.10 conda activate WinT3R pip install torch==2.5.1 torchvision==0.20.1 torchaudio==2.5.1 --index-url https://download.pytorch.org/whl/cu118 # use the correct version of cuda for your system pip install -r requirements.txt ``` ## πŸ’Ώ Checkpoints Download the checkpoint from [huggingface](https://huggingface.co/lizizun/WinT3R/resolve/main/pytorch_model.bin) and place it in the checkpoints/pytorch_model.bin directory. ## 🎯 Run Inference from Command Line ```bash # Run with default example images python recon.py # Run on your own data python recon.py --data_path ``` ## πŸ“œ Citation ```bibtex @misc{li2025wint3rwindowbasedstreamingreconstruction, title={WinT3R: Window-Based Streaming Reconstruction with Camera Token Pool}, author={Zizun Li and Jianjun Zhou and Yifan Wang and Haoyu Guo and Wenzheng Chang and Yang Zhou and Haoyi Zhu and Junyi Chen and Chunhua Shen and Tong He}, year={2025}, eprint={2509.05296}, archivePrefix={arXiv}, primaryClass={cs.CV}, url={https://arxiv.org/abs/2509.05296}, } ``` ## πŸ™ Acknowledgement WinT3R is constructed on the outstanding open-source projects. We are extremely grateful for the contributions of these projects and their communities, whose hard work has greatly propelled the development of the field and enabled our work to be realized. - [DUSt3R](https://dust3r.europe.naverlabs.com/) - [MASt3R](https://github.com/naver/mast3r) - [CUT3R](https://github.com/CUT3R/CUT3R) - [VGGT](https://github.com/facebookresearch/vggt) - [Pi3](https://yyfz.github.io/pi3/)