three / app.py
sudo-soldier's picture
Update app.py
ccfb544 verified
raw
history blame contribute delete
759 Bytes
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.dirname(__file__), "files/model1.glb")],
[os.path.join(os.path.dirname(__file__), "files/model2.glb")],
[os.path.join(os.path.dirname(__file__), "files/model3.glb")],
[os.path.join(os.path.dirname(__file__), "files/model4.glb")],
["https://huggingface.co/datasets/dylanebert/3dgs/resolve/main/bonsai/bonsai-7k-mini.splat"],
],
cache_examples=True
)
if __name__ == "__main__":
demo.launch()