百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
T

TripoSR

> 编程语言
开源

TripoSR: 从单张图像快速重建 3D 对象

6.8K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

TripoSR: 从单张图像快速重建 3D 对象

# TripoSR This is the official codebase for **TripoSR**, a state-of-the-art open-source model for **fast** feedforward 3D reconstruction from a single image, collaboratively developed by [Tripo AI](https://www.tripo3d.ai/) and [Stability AI](https://stability.ai/).

Leveraging the principles of the [Large Reconstruction Model (LRM)](https://yiconghong.me/LRM/), TripoSR brings to the table key advancements that significantly boost both the speed and quality of 3D reconstruction. Our model is distinguished by its ability to rapidly process inputs, generating high-quality 3D models in less than 0.5 seconds on an NVIDIA A100 GPU. TripoSR has exhibited superior performance in both qualitative and quantitative evaluations, outperforming other open-source alternatives across multiple public datasets. The figures below illustrate visual comparisons and metrics showcasing TripoSR's performance relative to other leading models. Details about the model architecture, training process, and comparisons can be found in this [technical report](https://arxiv.org/abs/2403.02151).

The model is released under the MIT license, which includes the source code, pretrained models, and an interactive online demo. Our goal is to empower researchers, developers, and creatives to push the boundaries of what's possible in 3D generative AI and 3D content creation. ## Getting Started ### Installation - Python >= 3.8 - Install CUDA if available - Install PyTorch according to your platform: [https://pytorch.org/get-started/locally/](https://pytorch.org/get-started/locally/) **[Please make sure that the locally-installed CUDA major version matches the PyTorch-shipped CUDA major version. For example if you have CUDA 11.x installed, make sure to install PyTorch compiled with CUDA 11.x.]** - Update setuptools by `pip install --upgrade setuptools` - Install other dependencies by `pip install -r requirements.txt` ### Manual Inference ```sh python run.py examples/chair.png --output-dir output/ ``` This will save the reconstructed 3D model to `output/`. You can also specify more than one image path separated by spaces. The default options takes about **6GB VRAM** for a single image input. If you would like to output a texture instead of vertex colors, use the `--bake-texture` option. You may also use `--texture-resolution` to specify the resolution in pixels of the output texture. For detailed usage of this script, use `python run.py --help`. ### Local Gradio App ```sh python gradio_app.py ``` ## Troubleshooting > AttributeError: module 'torchmcubes_module' has no attribute 'mcubes_cuda' or > torchmcubes was not compiled with CUDA support, use CPU version instead. This is because `torchmcubes` is compiled without CUDA support. Please make sure that - The locally-installed CUDA major version matches the PyTorch-shipped CUDA major version. For example if you have CUDA 11.x installed, make sure to install PyTorch compiled with CUDA 11.x. - `setuptools>=49.6.0`. If not, upgrade by `pip install --upgrade setuptools`. Then re-install `torchmcubes` by: ```sh pip uninstall torchmcubes pip install git+https://github.com/tatsy/torchmcubes.git ``` ## Citation ```BibTeX @article{TripoSR2024, title={TripoSR: Fast 3D Object Reconstruction from a Single Image}, author={Tochilkin, Dmitry and Pankratz, David and Liu, Zexiang and Huang, Zixuan and and Letts, Adam and Li, Yangguang and Liang, Ding and Laforte, Christian and Jampani, Varun and Cao, Yan-Pei}, journal={arXiv preprint arXiv:2403.02151}, year={2024} } ```

GitHub Issues· 0 开放

在 GitHub 查看全部

暂无开放 Issues,或尚未同步最近议题。

核心特点

  • •Python >= 3.8
  • •Install CUDA if available
  • •Update setuptools by pip install --upgrade setuptools
  • •Install other dependencies by pip install -r requirements.txt
  • •setuptools>=49.6.0. If not, upgrade by pip install --upgrade setuptools.

> 标签

Python

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言