File size: 1,655 Bytes
a42939e
 
 
ebd1aad
de3b99a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ebd1aad
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
license: mit
---

# TripoSplat: Generative 3D Gaussians with Learned Density Control

TripoSplat converts a single 2D image into high-quality and variable number of 3D Gaussians developed by [TripoAI](https://www.tripo3d.ai/). It can serve as a powerful pipeline tool for asset creation, AR/VR, game development, simulation environments, and beyond.

[Read Paper](https://arxiv.org/abs/2605.16355) | [Technical Blog](https://www.tripo3d.ai/research/triposplat)

# Usage
To use with the [official inference code](https://github.com/VAST-AI-Research/TripoSplat), place the files in the following structure:
```
πŸ“‚ TripoSplat/
β”œβ”€β”€ πŸ“‚ ckpts/
β”‚   β”œβ”€β”€ πŸ“‚ background_removal/
β”‚   β”‚   └── birefnet.safetensors
β”‚   β”œβ”€β”€ πŸ“‚ diffusion_models/
β”‚   β”‚   └── triposplat_fp16.safetensors
β”‚   β”œβ”€β”€ πŸ“‚ clip_vision/
β”‚   β”‚   └── dino_v3_vit_h.safetensors
β”‚   β”œβ”€β”€ πŸ“‚ vae/
β”‚   β”‚   β”œβ”€β”€ flux2-vae.safetensors
β”‚   β”‚   └── triposplat_vae_decoder_fp16.safetensors
```

To use with [ComfyUI](https://github.com/Comfy-Org/workflow_templates/blob/main/templates/3d_triposplat_image_to_gaussian_splat.json), place the files in the following structure:
```
πŸ“‚ ComfyUI/
β”œβ”€β”€ πŸ“‚ models/
β”‚   β”œβ”€β”€ πŸ“‚ background_removal/
β”‚   β”‚   └── birefnet.safetensors
β”‚   β”œβ”€β”€ πŸ“‚ diffusion_models/
β”‚   β”‚   └── triposplat_fp16.safetensors
β”‚   β”œβ”€β”€ πŸ“‚ clip_vision/
β”‚   β”‚   └── dino_v3_vit_h.safetensors
β”‚   β”œβ”€β”€ πŸ“‚ vae/
β”‚   β”‚   β”œβ”€β”€ flux2-vae.safetensors
β”‚   β”‚   └── triposplat_vae_decoder_fp16.safetensors
```