Rahatara commited on
Commit
f72b58c
·
verified ·
1 Parent(s): 9b2ee46

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -14
app.py CHANGED
@@ -4,7 +4,7 @@ import numpy as np
4
  from PIL import Image
5
  import tempfile
6
 
7
- def apply_texture_with_mask(section):
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
- # Preserve the original visual appearance
34
- if mesh.visual.vertex_colors is not None:
35
- vertex_colors = np.copy(mesh.visual.vertex_colors)
36
  else:
37
- vertex_colors = np.ones((len(mesh.vertices), 4)) * 255 # Assuming the default color is white
38
 
39
- # Apply the new texture only to the selected section
40
- uv = np.random.rand(len(mesh.vertices), 2) # Generate new UV coordinates
41
- uv_colors = trimesh.visual.uv_to_color(uv[selected_indices], im) # Map UV coordinates to colors in the image
42
 
43
- for i, idx in enumerate(selected_indices):
44
- vertex_colors[idx] = uv_colors[i] # Apply the new texture color to selected indices
 
45
 
46
- # Apply the new visual colors to the mesh
47
- color_visuals = trimesh.visual.ColorVisuals(vertex_colors=vertex_colors)
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(apply_texture_with_mask, inputs=section_dropdown, outputs=modified_model)
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()