GitXplorerGitXplorer
a

cog-wonder3d

public
5 stars
0 forks
1 issues

Commits

List of commits on branch main.
Unverified
c01cf1059eb0c214c2880804476d11aada7037ea

update files

aalaradirik committed a year ago
Verified
65b51bbe56228a835eb6348547a4d0132a9866ac

Update README.md

aalaradirik committed a year ago
Unverified
4cc2a8c9efe9aa73657f4edd140dfb61071573f6

add files

aalaradirik committed a year ago
Verified
c49c0db2e8d74aab9711dcba8c6b9a3dcfb4f214

Initial commit

aalaradirik committed a year ago

README

The README file for this repository.

Cog-Wonder3D

Cog wrapper for Wonder3D: Single Image to 3D using Cross-Domain Diffusion based on the original repository, see the paper, project page and Replicate demo for details.

Basic Usage

Wonder 3D is an image-to-3D model that uses a multi-view diffusion model as its backbone to generate 3D assets in a few minutes. You need to have Cog and Docker installed to run this model locally. Follow the model pushing guide to push your own fork of Wonder3D to Replicate.

To build the docker image with cog and run a prediction:

cog predict -i image=@example_images/sample.jpg -i remove_bg=True -i num_steps=3000

To start a server and send requests to your locally deployed API:

cog run -p 5000 python -m cog.server.http

References

@misc{long2023wonder3d,
      title={Wonder3D: Single Image to 3D using Cross-Domain Diffusion}, 
      author={Xiaoxiao Long and Yuan-Chen Guo and Cheng Lin and Yuan Liu and Zhiyang Dou and Lingjie Liu and Yuexin Ma and Song-Hai Zhang and Marc Habermann and Christian Theobalt and Wenping Wang},
      year={2023},
      eprint={2310.15008},
      archivePrefix={arXiv},
      primaryClass={cs.CV}
}