File size: 749 Bytes
c79165d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import gradio as gr
import trimesh
import base64
import io

def modify_texture():
    # Load the GLB file
    mesh = trimesh.load("train.glb")

    # Load the default texture image
    with open("defect.jpg", "rb") as f:
        default_texture_data = f.read()

    # Set the texture to the mesh
    mesh.visual.material.texture.image = default_texture_data

    # Export the modified mesh to GLB format
    modified_mesh_data = mesh.export(file_type="glb")

    # Convert the modified mesh data to BytesIO object
    output_file = io.BytesIO(modified_mesh_data)

    return output_file

gr.Interface(
    fn=modify_texture,
    inputs=[],
    outputs=gr.outputs.File(label="Download Modified GLB File"),
    title="GLB Texture Modifier"
).launch()