Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import numpy as np
|
|
4 |
from PIL import Image
|
5 |
import tempfile
|
6 |
|
7 |
-
def
|
8 |
# Load the original mesh
|
9 |
mesh = trimesh.load('train.glb', force='mesh')
|
10 |
im = Image.open('rust_steel.png').convert('RGB')
|
@@ -30,22 +30,22 @@ def apply_texture_with_mask(section):
|
|
30 |
# Select the indices for the specified section
|
31 |
selected_indices = sections[section]
|
32 |
|
33 |
-
#
|
34 |
-
if mesh.visual.
|
35 |
-
|
36 |
else:
|
37 |
-
|
38 |
|
39 |
-
#
|
40 |
-
|
41 |
-
|
42 |
|
43 |
-
|
44 |
-
|
|
|
45 |
|
46 |
-
#
|
47 |
-
|
48 |
-
textured_mesh = trimesh.Trimesh(vertices=mesh.vertices, faces=mesh.faces, visual=color_visuals, validate=True, process=False)
|
49 |
|
50 |
# Save the modified mesh to a temporary file for Gradio visualization
|
51 |
temp_file = tempfile.NamedTemporaryFile(delete=False, suffix='.glb')
|
@@ -60,6 +60,6 @@ with gr.Blocks() as app:
|
|
60 |
|
61 |
section_dropdown = gr.Dropdown(choices=['upper', 'lower', 'middle', 'top', 'right'], label="Select Section")
|
62 |
button = gr.Button("Apply Texture to Section")
|
63 |
-
button.click(
|
64 |
|
65 |
app.launch()
|
|
|
4 |
from PIL import Image
|
5 |
import tempfile
|
6 |
|
7 |
+
def apply_texture_with_uv(section):
|
8 |
# Load the original mesh
|
9 |
mesh = trimesh.load('train.glb', force='mesh')
|
10 |
im = Image.open('rust_steel.png').convert('RGB')
|
|
|
30 |
# Select the indices for the specified section
|
31 |
selected_indices = sections[section]
|
32 |
|
33 |
+
# Check if the mesh has UV coordinates
|
34 |
+
if mesh.visual.kind == 'texture':
|
35 |
+
original_uv = mesh.visual.uv # Use existing UV mapping
|
36 |
else:
|
37 |
+
original_uv = np.random.rand(len(mesh.vertices), 2) # Random UV mapping
|
38 |
|
39 |
+
# Prepare a new UV mapping that selectively applies the new texture
|
40 |
+
new_uv = np.copy(original_uv)
|
41 |
+
new_uv[selected_indices, :] = np.random.rand(len(selected_indices), 2) # Generate new UV for the selected region
|
42 |
|
43 |
+
# Create a new material with the texture image
|
44 |
+
material = trimesh.visual.texture.SimpleMaterial(image=im)
|
45 |
+
new_visuals = trimesh.visual.TextureVisuals(uv=new_uv, material=material)
|
46 |
|
47 |
+
# Create a new mesh with the updated visual data
|
48 |
+
textured_mesh = trimesh.Trimesh(vertices=mesh.vertices, faces=mesh.faces, visual=new_visuals, validate=True, process=False)
|
|
|
49 |
|
50 |
# Save the modified mesh to a temporary file for Gradio visualization
|
51 |
temp_file = tempfile.NamedTemporaryFile(delete=False, suffix='.glb')
|
|
|
60 |
|
61 |
section_dropdown = gr.Dropdown(choices=['upper', 'lower', 'middle', 'top', 'right'], label="Select Section")
|
62 |
button = gr.Button("Apply Texture to Section")
|
63 |
+
button.click(apply_texture_with_uv, inputs=section_dropdown, outputs=modified_model)
|
64 |
|
65 |
app.launch()
|