Rahatara commited on
Commit
2d1ede7
·
verified ·
1 Parent(s): b9d47c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -11
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 visualize_texture(section):
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
- # Initialize the UV map with the original values
35
- original_uv = mesh.visual.uv if mesh.visual.uv is not None else np.random.rand(len(mesh.vertices), 2)
 
36
 
37
- # Initialize a new UV map and keep the original values for non-selected vertices
38
- new_uv = np.copy(original_uv)
39
- new_uv[selected_indices, :] = np.random.rand(len(selected_indices), 2) # Randomized UV for the selected section
 
40
 
41
- # Create material and apply texture only to the selected section
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("Visualize Texture")
61
- button.click(visualize_texture, inputs=section_dropdown, outputs=modified_model)
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()