Kun1009's picture
Upload 86 files
a5b9369 verified
raw
history blame contribute delete
352 Bytes
import gradio as gr
import os
def load_mesh(image):
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"),
examples=[
['/home/kun/code/3d/poetry3d/m1.glb'],
],
)
if __name__ == "__main__":
demo.launch()