Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,10 @@
|
|
1 |
-
|
2 |
import gradio as gr
|
3 |
import trimesh
|
4 |
import numpy as np
|
5 |
from PIL import Image
|
6 |
import tempfile
|
7 |
|
8 |
-
def
|
9 |
# Load the original mesh
|
10 |
mesh = trimesh.load('train.glb', force='mesh')
|
11 |
im = Image.open('rust_steel.png').convert('RGB')
|
@@ -31,14 +30,16 @@ def visualize_texture(section):
|
|
31 |
# Get indices for the selected section
|
32 |
selected_indices = sections[section]
|
33 |
|
34 |
-
#
|
35 |
-
|
|
|
36 |
|
37 |
-
#
|
38 |
-
|
39 |
-
|
|
|
40 |
|
41 |
-
#
|
42 |
material = trimesh.visual.texture.SimpleMaterial(image=im)
|
43 |
color_visuals = trimesh.visual.TextureVisuals(uv=new_uv, material=material)
|
44 |
|
@@ -57,7 +58,7 @@ with gr.Blocks() as app:
|
|
57 |
modified_model = gr.Model3D(label="Textured Model")
|
58 |
|
59 |
section_dropdown = gr.Dropdown(choices=['upper', 'lower', 'middle', 'top', 'right'], label="Select Section")
|
60 |
-
button = gr.Button("
|
61 |
-
button.click(
|
62 |
|
63 |
-
app.launch()
|
|
|
|
|
1 |
import gradio as gr
|
2 |
import trimesh
|
3 |
import numpy as np
|
4 |
from PIL import Image
|
5 |
import tempfile
|
6 |
|
7 |
+
def apply_section_texture(section):
|
8 |
# Load the original mesh
|
9 |
mesh = trimesh.load('train.glb', force='mesh')
|
10 |
im = Image.open('rust_steel.png').convert('RGB')
|
|
|
30 |
# Get indices for the selected section
|
31 |
selected_indices = sections[section]
|
32 |
|
33 |
+
# Prepare new UV coordinates
|
34 |
+
uv = np.random.rand(len(mesh.vertices), 2)
|
35 |
+
new_uv = np.copy(uv)
|
36 |
|
37 |
+
# Apply UV changes only for selected section
|
38 |
+
mask = np.zeros(len(mesh.vertices), dtype=bool)
|
39 |
+
mask[selected_indices] = True
|
40 |
+
new_uv[~mask, :] = uv[~mask] # Keep original UVs for non-selected regions
|
41 |
|
42 |
+
# Apply new material texture to the selected indices
|
43 |
material = trimesh.visual.texture.SimpleMaterial(image=im)
|
44 |
color_visuals = trimesh.visual.TextureVisuals(uv=new_uv, material=material)
|
45 |
|
|
|
58 |
modified_model = gr.Model3D(label="Textured Model")
|
59 |
|
60 |
section_dropdown = gr.Dropdown(choices=['upper', 'lower', 'middle', 'top', 'right'], label="Select Section")
|
61 |
+
button = gr.Button("Apply Texture to Section")
|
62 |
+
button.click(apply_section_texture, inputs=section_dropdown, outputs=modified_model)
|
63 |
|
64 |
+
app.launch()
|