Rahatara commited on
Commit
67f1edb
·
verified ·
1 Parent(s): 90ae760

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -181
app.py CHANGED
@@ -1,101 +1,9 @@
1
  import gradio as gr
2
-
3
-
4
  import trimesh
5
  import numpy as np
6
  from PIL import Image
7
-
8
-
9
  import tempfile
10
 
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
-
32
-
33
-
34
-
35
-
36
-
37
-
38
-
39
-
40
-
41
-
42
-
43
-
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
55
-
56
-
57
-
58
-
59
-
60
-
61
-
62
-
63
-
64
-
65
-
66
-
67
-
68
-
69
-
70
-
71
-
72
-
73
-
74
-
75
-
76
-
77
-
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
-
98
-
99
  # Function to visualize texture based on selection criteria
100
  def visualize_dynamic_texture(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max):
101
  # Load the original mesh
@@ -120,97 +28,16 @@ with gr.Blocks() as app:
120
  gr.Markdown("### 3D Model Texture Application with Predefined and Custom Sections")
121
  original_model = gr.Model3D('train.glb', label="Original Model")
122
  modified_model = gr.Model3D(label="Model with Applied Texture")
123
-
124
-
125
-
126
-
127
-
128
-
129
-
130
-
131
-
132
-
133
-
134
-
135
-
136
-
137
-
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
-
146
-
147
-
148
-
149
-
150
-
151
-
152
-
153
-
154
-
155
-
156
-
157
-
158
-
159
-
160
-
161
-
162
-
163
-
164
-
165
-
166
-
167
-
168
-
169
-
170
-
171
-
172
-
173
-
174
-
175
-
176
-
177
-
178
-
179
-
180
-
181
-
182
-
183
-
184
-
185
-
186
-
187
-
188
-
189
  # Dropdown for predefined and custom selection
190
  section_dropdown = gr.Radio(choices=['right compartments', 'left compartments', 'freight_body', 'custom'], label="Select Section", value='custom')
191
-
192
-
193
-
194
-
195
-
196
  # Custom sliders for the bounding box selection
197
  with gr.Row(visible=True) as custom_controls:
198
  x_min_slider = gr.Slider(minimum=x_min_range, maximum=x_max_range, step=0.01, label="X Min", value=x_min_range)
199
  x_max_slider = gr.Slider(minimum=x_min_range, maximum=x_max_range, step=0.01, label="X Max", value=x_max_range)
200
 
201
-
202
-
203
-
204
-
205
  y_min_slider = gr.Slider(minimum=y_min_range, maximum=y_max_range, step=0.01, label="Y Min", value=y_min_range)
206
  y_max_slider = gr.Slider(minimum=y_min_range, maximum=y_max_range, step=0.01, label="Y Max", value=y_max_range)
207
 
208
-
209
-
210
-
211
-
212
-
213
-
214
  z_min_slider = gr.Slider(minimum=z_min_range, maximum=z_max_range, step=0.01, label="Z Min", value=z_min_range)
215
  z_max_slider = gr.Slider(minimum=z_min_range, maximum=z_max_range, step=0.01, label="Z Max", value=z_max_range)
216
 
@@ -218,16 +45,8 @@ with gr.Blocks() as app:
218
  # Toggle visibility of custom controls
219
  def toggle_custom_controls(predefined_section):
220
  return gr.update(visible=(predefined_section == 'custom'))
221
-
222
-
223
-
224
  section_dropdown.change(fn=toggle_custom_controls, inputs=section_dropdown, outputs=custom_controls)
225
 
226
-
227
-
228
-
229
-
230
-
231
  # Update model dynamically
232
  def update_model(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max):
233
  return visualize_dynamic_texture(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max)
 
1
  import gradio as gr
 
 
2
  import trimesh
3
  import numpy as np
4
  from PIL import Image
 
 
5
  import tempfile
6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  # Function to visualize texture based on selection criteria
8
  def visualize_dynamic_texture(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max):
9
  # Load the original mesh
 
28
  gr.Markdown("### 3D Model Texture Application with Predefined and Custom Sections")
29
  original_model = gr.Model3D('train.glb', label="Original Model")
30
  modified_model = gr.Model3D(label="Model with Applied Texture")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  # Dropdown for predefined and custom selection
32
  section_dropdown = gr.Radio(choices=['right compartments', 'left compartments', 'freight_body', 'custom'], label="Select Section", value='custom')
 
 
 
 
 
33
  # Custom sliders for the bounding box selection
34
  with gr.Row(visible=True) as custom_controls:
35
  x_min_slider = gr.Slider(minimum=x_min_range, maximum=x_max_range, step=0.01, label="X Min", value=x_min_range)
36
  x_max_slider = gr.Slider(minimum=x_min_range, maximum=x_max_range, step=0.01, label="X Max", value=x_max_range)
37
 
 
 
 
 
38
  y_min_slider = gr.Slider(minimum=y_min_range, maximum=y_max_range, step=0.01, label="Y Min", value=y_min_range)
39
  y_max_slider = gr.Slider(minimum=y_min_range, maximum=y_max_range, step=0.01, label="Y Max", value=y_max_range)
40
 
 
 
 
 
 
 
41
  z_min_slider = gr.Slider(minimum=z_min_range, maximum=z_max_range, step=0.01, label="Z Min", value=z_min_range)
42
  z_max_slider = gr.Slider(minimum=z_min_range, maximum=z_max_range, step=0.01, label="Z Max", value=z_max_range)
43
 
 
45
  # Toggle visibility of custom controls
46
  def toggle_custom_controls(predefined_section):
47
  return gr.update(visible=(predefined_section == 'custom'))
 
 
 
48
  section_dropdown.change(fn=toggle_custom_controls, inputs=section_dropdown, outputs=custom_controls)
49
 
 
 
 
 
 
50
  # Update model dynamically
51
  def update_model(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max):
52
  return visualize_dynamic_texture(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max)