File size: 1,054 Bytes
99b8547
 
a4cbfaf
99b8547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a4cbfaf
 
99b8547
 
 
 
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
import trimesh
import gradio as gr
import os

def generate_3d_object(shape_type, radius, width, height):
    if shape_type == "Sphere":
        mesh = trimesh.creation.icosphere(radius=radius)
    elif shape_type == "Box":
        mesh = trimesh.creation.box(extents=[width, height, radius])
    else:
        raise ValueError("Unsupported shape type")
    
    # Save the mesh to a file
    output_file = "generated_object.obj"
    mesh.export(output_file)
    
    return output_file

# Create the Gradio interface
iface = gr.Interface(
    fn=generate_3d_object,
    inputs=[
        gr.Dropdown(choices=["Sphere", "Box"], label="Shape Type"),
        gr.Number(label="Radius"),
        gr.Number(label="Width (for Box)"),
        gr.Number(label="Height (for Box)")
    ],
    outputs=gr.Model3D(label="Generated 3D Object"),
    title="3D Object Generator",
    description="Generate 3D objects like spheres and boxes.",
    flagging_dir=os.path.join(os.getcwd(), "flagged")  # Specify the flagging directory
)

# Launch the interface
iface.launch()