Spaces:
Runtime error
Runtime error
File size: 1,178 Bytes
83464bc c22d82f 83464bc 1f9be72 766fbfc 1f9be72 83464bc f2f8d4f b2aadb3 f2f8d4f 766fbfc 83464bc 6411c28 766fbfc 6411c28 83464bc 6411c28 83464bc 1f9be72 83464bc 6411c28 766fbfc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
import os
import subprocess
import gradio as gr
def load_mesh(mesh_file_name):
try:
os.system("cd text2room && python3 generate_scene.py")
except Exception as e:
print(e)
search_files(".ply")
return mesh_file_name
def search_files(extension):
# recursively search for files with the given extension
files = []
# print content of the current directory
print(os.listdir())
# print content of the text2room directory
print(os.listdir("text2room"))
return files
iface = 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=[
[os.path.join(os.path.dirname(__file__), "files/Bunny.obj")],
[os.path.join(os.path.dirname(__file__), "files/Duck.glb")],
[os.path.join(os.path.dirname(__file__), "files/Fox.gltf")],
[os.path.join(os.path.dirname(__file__), "files/face.obj")],
],
)
if __name__ == "__main__":
subprocess.run(
[
"pip",
"install",
"git+https://github.com/facebookresearch/pytorch3d.git@stable",
]
)
iface.launch()
|