Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phuang1024/Starst3r
Fast 3D reconstruction framework using Mast3r.
https://github.com/phuang1024/Starst3r
Last synced: 2 months ago
JSON representation
Fast 3D reconstruction framework using Mast3r.
- Host: GitHub
- URL: https://github.com/phuang1024/Starst3r
- Owner: phuang1024
- License: agpl-3.0
- Created: 2024-07-19T01:01:02.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-09-11T17:32:04.000Z (2 months ago)
- Last Synced: 2024-09-11T20:25:33.819Z (2 months ago)
- Language: Python
- Homepage: https://starst3r.readthedocs.io
- Size: 12.8 MB
- Stars: 44
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Starst3r
![](docs/images/Poster.jpg)
![](docs/images/demo.gif)
Fast 3D reconstruction framework using Mast3r.
Docs: https://starst3r.readthedocs.io/en/latest/
```py
import starsterdevice = "cuda"
files = (
"/path/to/img1.jpg",
...
)imgs = starster.load_images(files, size=224)
model = starster.Mast3rModel.from_pretrained("/path/to/model.pth").to(device)
scene = starster.reconstruct_scene(model, imgs, files, device)
```