mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-17 11:29:58 +08:00
* display modes * add changeset * test fixes * lint * Update gradio/components/model3d.py Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * solid --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2.3 KiB
2.3 KiB
Gradio Demo: model3D¶
In [ ]:
!pip install -q gradio
In [ ]:
# Downloading files from the demo repo import os os.mkdir('files') !wget -q -O files/Bunny.obj https://github.com/gradio-app/gradio/raw/main/demo/model3D/files/Bunny.obj !wget -q -O files/Duck.glb https://github.com/gradio-app/gradio/raw/main/demo/model3D/files/Duck.glb !wget -q -O files/Fox.gltf https://github.com/gradio-app/gradio/raw/main/demo/model3D/files/Fox.gltf !wget -q -O files/face.obj https://github.com/gradio-app/gradio/raw/main/demo/model3D/files/face.obj !wget -q -O files/sofia.stl https://github.com/gradio-app/gradio/raw/main/demo/model3D/files/sofia.stl !wget -q -O files/source.txt https://github.com/gradio-app/gradio/raw/main/demo/model3D/files/source.txt
In [ ]:
import gradio as gr import os def load_mesh(mesh_file_name): return mesh_file_name demo = gr.Interface( fn=load_mesh, inputs=gr.Model3D(), outputs=gr.Model3D( clear_color=[0.0, 0.0, 0.0, 0.0], label="3D Model", display_mode="wireframe"), examples=[ [os.path.join(os.path.abspath(''), "files/Bunny.obj")], [os.path.join(os.path.abspath(''), "files/Duck.glb")], [os.path.join(os.path.abspath(''), "files/Fox.gltf")], [os.path.join(os.path.abspath(''), "files/face.obj")], [os.path.join(os.path.abspath(''), "files/sofia.stl")], ["https://huggingface.co/datasets/dylanebert/3dgs/resolve/main/bonsai/bonsai-7k-mini.splat"], ["https://huggingface.co/datasets/dylanebert/3dgs/resolve/main/luigi/luigi.ply"], ], cache_examples=True ) if __name__ == "__main__": demo.launch()