Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,44 +4,41 @@ 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 |
-
|
11 |
|
12 |
-
#
|
13 |
bounds = mesh.bounds
|
14 |
min_bounds, max_bounds = bounds[0], bounds[1]
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
#
|
31 |
-
selected_indices = sections[section]
|
32 |
-
|
33 |
-
# Ensure that all indices are valid
|
34 |
valid_indices = selected_indices[selected_indices < len(mesh.vertices)]
|
35 |
|
36 |
-
# Create or
|
37 |
uv = np.random.rand(len(mesh.vertices), 2)
|
38 |
|
39 |
-
#
|
40 |
new_uv = np.copy(uv)
|
41 |
new_uv[valid_indices, :] = np.random.rand(len(valid_indices), 2)
|
42 |
|
43 |
-
# Create a new material with the
|
44 |
-
material = trimesh.visual.texture.SimpleMaterial(image=
|
45 |
new_visuals = trimesh.visual.TextureVisuals(uv=new_uv, material=material)
|
46 |
|
47 |
# Create a new mesh with the updated visuals
|
@@ -54,12 +51,12 @@ def apply_masked_visuals(section):
|
|
54 |
return temp_file.name
|
55 |
|
56 |
with gr.Blocks() as app:
|
57 |
-
gr.Markdown("###
|
58 |
original_model = gr.Model3D('train.glb', label="Original Model")
|
59 |
modified_model = gr.Model3D(label="Textured Model")
|
60 |
|
61 |
-
section_dropdown = gr.Dropdown(choices=['
|
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_rust_texture(section):
|
8 |
# Load the original mesh
|
9 |
mesh = trimesh.load('train.glb', force='mesh')
|
10 |
+
rust_texture = Image.open('rust_steel.png').convert('RGB')
|
11 |
|
12 |
+
# Train body selection logic
|
13 |
bounds = mesh.bounds
|
14 |
min_bounds, max_bounds = bounds[0], bounds[1]
|
15 |
+
body_height = max_bounds[2] - min_bounds[2]
|
16 |
+
body_midpoint = (max_bounds + min_bounds) / 2
|
17 |
+
|
18 |
+
# Define more sophisticated criteria for the body selection
|
19 |
+
if section == 'body':
|
20 |
+
# Assuming the body is within certain height and centered horizontally
|
21 |
+
selected_indices = np.where((mesh.vertices[:, 2] >= min_bounds[2]) &
|
22 |
+
(mesh.vertices[:, 2] <= min_bounds[2] + 0.75 * body_height) &
|
23 |
+
(mesh.vertices[:, 0] >= min_bounds[0]) &
|
24 |
+
(mesh.vertices[:, 0] <= max_bounds[0]))[0]
|
25 |
+
|
26 |
+
elif section == 'roof':
|
27 |
+
# Roof is the top quarter of the height
|
28 |
+
selected_indices = np.where(mesh.vertices[:, 2] > min_bounds[2] + 0.75 * body_height)[0]
|
29 |
+
|
30 |
+
# Ensure indices are within bounds
|
|
|
|
|
|
|
31 |
valid_indices = selected_indices[selected_indices < len(mesh.vertices)]
|
32 |
|
33 |
+
# Create or initialize UV mapping
|
34 |
uv = np.random.rand(len(mesh.vertices), 2)
|
35 |
|
36 |
+
# Apply the rust texture only to the selected indices
|
37 |
new_uv = np.copy(uv)
|
38 |
new_uv[valid_indices, :] = np.random.rand(len(valid_indices), 2)
|
39 |
|
40 |
+
# Create a new material with the rust texture image
|
41 |
+
material = trimesh.visual.texture.SimpleMaterial(image=rust_texture)
|
42 |
new_visuals = trimesh.visual.TextureVisuals(uv=new_uv, material=material)
|
43 |
|
44 |
# Create a new mesh with the updated visuals
|
|
|
51 |
return temp_file.name
|
52 |
|
53 |
with gr.Blocks() as app:
|
54 |
+
gr.Markdown("### Apply Rust Texture to Train Body Section")
|
55 |
original_model = gr.Model3D('train.glb', label="Original Model")
|
56 |
modified_model = gr.Model3D(label="Textured Model")
|
57 |
|
58 |
+
section_dropdown = gr.Dropdown(choices=['body', 'roof'], label="Select Section")
|
59 |
+
button = gr.Button("Apply Rust Texture to Section")
|
60 |
+
button.click(apply_rust_texture, inputs=section_dropdown, outputs=modified_model)
|
61 |
|
62 |
app.launch()
|