Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,104 +1,14 @@
|
|
1 |
import gradio as gr
|
2 |
-
import replicate
|
3 |
-
import openai
|
4 |
import trimesh
|
5 |
import numpy as np
|
6 |
from PIL import Image
|
7 |
-
import requests
|
8 |
-
import io
|
9 |
import tempfile
|
10 |
|
11 |
-
# Set API tokens
|
12 |
-
os.environ["REPLICATE_API_TOKEN"] = "r8_Pc64F8EPrJ6PiNIIvaBUZcOGmiLC3Jp1gELYB"
|
13 |
-
OPENAI_API_KEY = "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"
|
14 |
-
|
15 |
-
# Initialize the Replicate client
|
16 |
-
rep_client = replicate.Client()
|
17 |
-
|
18 |
-
# Material defects structure
|
19 |
-
material_defects = {
|
20 |
-
"Steel": ["Rust and Corrosion", "Pitting Corrosion", "Surface Cracks", "Wear Patterns", "Spalling", "Scaling"],
|
21 |
-
"Glass": ["Cracks", "Chips", "Scratches", "Frosting"],
|
22 |
-
"Aluminum": ["Corrosion", "Scratches and Dents", "Anodizing Wear"],
|
23 |
-
"Wood": ["Rot and Decay", "Cracks and Splits", "Weathering"],
|
24 |
-
"Plastics and Polymers": ["Cracking and Crazing", "UV Degradation", "Heat Distortion"],
|
25 |
-
"Rubber": ["Cracking", "Hardening and Brittleness", "Surface Wear"],
|
26 |
-
"Composite Materials": ["Delamination", "Impact Damage", "Fiber Wearing"],
|
27 |
-
"Ceramics": ["Crackling", "Chipping and Pitting", "Glaze Deterioration"]
|
28 |
-
}
|
29 |
-
|
30 |
-
# Function to ask rail defect question
|
31 |
-
def ask_rail_defect_question(question, model_name='ft:gpt-3.5-turbo-0125:personal::99NsSAeQ'):
|
32 |
-
structured_prompt = f"Translate the following user input into a concise, detailed visual description for a 3D model based on this input: '{question}'. Focus only on the defect’s appearance, texture qualities, and visual effects it would have on the material. Start the description directly with no extra words."
|
33 |
-
response = openai.ChatCompletion.create(
|
34 |
-
model=model_name,
|
35 |
-
messages=[
|
36 |
-
{"role": "system", "content": "Provide a concise, detailed visual description of the material's defect texture, focusing on visual and tactile qualities. Do not include any additional context or introductory phrases. Imagine the textures on railway components, but describe only the texture and material."},
|
37 |
-
{"role": "user", "content": structured_prompt}
|
38 |
-
],
|
39 |
-
)
|
40 |
-
refined_description = response.choices[0].message['content']
|
41 |
-
return refined_description.strip()
|
42 |
-
|
43 |
-
# Function to generate images from prompts
|
44 |
-
def generate_images(prompt):
|
45 |
-
prediction = rep_client.predictions.create(
|
46 |
-
version="ac732df83cea7fff18b8472768c88ad041fa750ff7682a21affe81863cbe77e",
|
47 |
-
input={"prompt": prompt}
|
48 |
-
)
|
49 |
-
prediction.wait()
|
50 |
-
if prediction.status == "succeeded":
|
51 |
-
image_url = prediction.output[0]
|
52 |
-
response = requests.get(image_url)
|
53 |
-
image = Image.open(io.BytesIO(response.content))
|
54 |
-
return image
|
55 |
-
return "Failed to generate texture image"
|
56 |
-
|
57 |
-
# Function to create data URL from PIL image
|
58 |
-
def image_to_data_url(pil_image):
|
59 |
-
buffered = io.BytesIO()
|
60 |
-
pil_image.save(buffered, format="JPEG")
|
61 |
-
base64_image = base64.b64encode(buffered.getvalue()).decode('utf-8')
|
62 |
-
return f"data:image/jpeg;base64,{base64_image}"
|
63 |
-
|
64 |
-
# Function to inpaint images
|
65 |
-
def inpaint_texture(image, prompt):
|
66 |
-
if isinstance(image, np.ndarray):
|
67 |
-
image = Image.fromarray(image)
|
68 |
-
|
69 |
-
image_data_url = image_to_data_url(image)
|
70 |
-
|
71 |
-
input = {
|
72 |
-
"image": image_data_url,
|
73 |
-
"prompt": prompt,
|
74 |
-
"scheduler": "K_EULER_ANCESTRAL",
|
75 |
-
"num_outputs": 1,
|
76 |
-
"guidance_scale": 7.5,
|
77 |
-
"num_inference_steps": 100,
|
78 |
-
"image_guidance_scale": 1.5
|
79 |
-
}
|
80 |
-
|
81 |
-
prediction = rep_client.predictions.create(
|
82 |
-
version="30c1d0b916a6f8efce20493f5d61ee27491ab2a60437c13c588468b9810ec23f",
|
83 |
-
input = input
|
84 |
-
)
|
85 |
-
prediction.wait()
|
86 |
-
if prediction.status == "succeeded":
|
87 |
-
image_url = prediction.output[0]
|
88 |
-
response = requests.get(image_url)
|
89 |
-
image = Image.open(io.BytesIO(response.content))
|
90 |
-
return image
|
91 |
-
return "Failed to generate inpainted texture image"
|
92 |
-
|
93 |
-
# Function to update defect options
|
94 |
-
def update_defect_options(selected_material):
|
95 |
-
return gr.update(value='', choices=material_defects[selected_material])
|
96 |
-
|
97 |
# Function to visualize texture based on selection criteria
|
98 |
-
def visualize_dynamic_texture(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max
|
99 |
# Load the original mesh
|
100 |
mesh = trimesh.load('train.glb', force='mesh')
|
101 |
-
|
102 |
|
103 |
# Predefined sections
|
104 |
if predefined_section == 'right compartments':
|
@@ -122,8 +32,8 @@ def visualize_dynamic_texture(predefined_section, x_min, x_max, y_min, y_max, z_
|
|
122 |
new_uv[selected_indices, :] = uv[selected_indices, :]
|
123 |
|
124 |
# Create material and apply the new texture
|
125 |
-
material = trimesh.visual.texture.SimpleMaterial(image=
|
126 |
-
color_visuals = trimesh.visual.TextureVisuals(uv=new_uv, image=
|
127 |
textured_mesh = trimesh.Trimesh(vertices=mesh.vertices, faces=mesh.faces, visual=color_visuals, validate=True, process=False)
|
128 |
|
129 |
# Save the mesh to a temporary file
|
@@ -141,91 +51,39 @@ x_min_range, x_max_range = train_bounds[0][0], train_bounds[1][0]
|
|
141 |
y_min_range, y_max_range = train_bounds[0][1], train_bounds[1][1]
|
142 |
z_min_range, z_max_range = train_bounds[0][2], train_bounds[1][2]
|
143 |
|
144 |
-
# Gradio
|
145 |
with gr.Blocks() as app:
|
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 |
-
# Use the refined prompt to generate the texture image
|
181 |
-
generate_button.click(
|
182 |
-
fn=lambda prompt: generate_images(prompt),
|
183 |
-
inputs=[refined_prompt_output],
|
184 |
-
outputs=[custom_image_output]
|
185 |
-
)
|
186 |
-
|
187 |
-
with gr.Tab("Inpaint Defect Texture"):
|
188 |
-
with gr.Row():
|
189 |
-
image_input = gr.Image(label="Upload Image for Inpainting")
|
190 |
-
inpaint_prompt_input = gr.Textbox(label="Enter Prompt for Texture Inpainting")
|
191 |
-
inpaint_button = gr.Button("Generate Inpainted Texture")
|
192 |
-
inpaint_image_output = gr.Image(label="Generated Inpainted Texture")
|
193 |
-
|
194 |
-
# Use the images and prompt to generate the inpainted texture image
|
195 |
-
inpaint_button.click(
|
196 |
-
fn=lambda img, prompt: inpaint_texture(img, prompt),
|
197 |
-
inputs=[image_input, inpaint_prompt_input],
|
198 |
-
outputs=[inpaint_image_output]
|
199 |
-
)
|
200 |
-
|
201 |
-
with gr.Tab("Apply Custom Texture"):
|
202 |
-
with gr.Row():
|
203 |
-
predefined_section = gr.Radio(choices=['right compartments', 'left compartments', 'freight_body', 'custom'], label="Select Section", value='custom')
|
204 |
-
custom_texture_path = gr.Textbox(label="Path to Custom Texture Image")
|
205 |
-
|
206 |
-
with gr.Row(visible=True) as custom_controls:
|
207 |
-
x_min_slider = gr.Slider(minimum=x_min_range, maximum=x_max_range, step=0.01, label="X Min", value=x_min_range)
|
208 |
-
x_max_slider = gr.Slider(minimum=x_min_range, maximum=x_max_range, step=0.01, label="X Max", value=x_max_range)
|
209 |
-
|
210 |
-
y_min_slider = gr.Slider(minimum=y_min_range, maximum=y_max_range, step=0.01, label="Y Min", value=y_min_range)
|
211 |
-
y_max_slider = gr.Slider(minimum=y_min_range, maximum=y_max_range, step=0.01, label="Y Max", value=y_max_range)
|
212 |
-
|
213 |
-
z_min_slider = gr.Slider(minimum=z_min_range, maximum=z_max_range, step=0.01, label="Z Min", value=z_min_range)
|
214 |
-
z_max_slider = gr.Slider(minimum=z_min_range, maximum=z_max_range, step=0.01, label="Z Max", value=z_max_range)
|
215 |
-
|
216 |
-
# Toggle visibility of custom controls
|
217 |
-
def toggle_custom_controls(predefined_section):
|
218 |
-
return gr.update(visible=(predefined_section == 'custom'))
|
219 |
-
|
220 |
-
predefined_section.change(fn=toggle_custom_controls, inputs=[predefined_section], outputs=custom_controls)
|
221 |
-
|
222 |
-
# Update model dynamically
|
223 |
-
def update_model(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max, custom_texture_path):
|
224 |
-
return visualize_dynamic_texture(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max, custom_texture_path)
|
225 |
-
|
226 |
-
# Add event listeners for real-time updates when sliders or dropdown change
|
227 |
-
inputs = [predefined_section, x_min_slider, x_max_slider, y_min_slider, y_max_slider, z_min_slider, z_max_slider, custom_texture_path]
|
228 |
-
for input_component in inputs:
|
229 |
-
input_component.change(fn=update_model, inputs=inputs, outputs=modified_model)
|
230 |
-
|
231 |
-
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 |
# 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
|
10 |
mesh = trimesh.load('train.glb', force='mesh')
|
11 |
+
rust_texture = Image.open('rust_steel.png').convert('RGB')
|
12 |
|
13 |
# Predefined sections
|
14 |
if predefined_section == 'right compartments':
|
|
|
32 |
new_uv[selected_indices, :] = uv[selected_indices, :]
|
33 |
|
34 |
# Create material and apply the new texture
|
35 |
+
material = trimesh.visual.texture.SimpleMaterial(image=rust_texture)
|
36 |
+
color_visuals = trimesh.visual.TextureVisuals(uv=new_uv, image=rust_texture, material=material)
|
37 |
textured_mesh = trimesh.Trimesh(vertices=mesh.vertices, faces=mesh.faces, visual=color_visuals, validate=True, process=False)
|
38 |
|
39 |
# Save the mesh to a temporary file
|
|
|
51 |
y_min_range, y_max_range = train_bounds[0][1], train_bounds[1][1]
|
52 |
z_min_range, z_max_range = train_bounds[0][2], train_bounds[1][2]
|
53 |
|
54 |
+
# Gradio UI with a single window, dynamic updates, and real-time changes
|
55 |
with gr.Blocks() as app:
|
56 |
+
gr.Markdown("### 3D Model Texture Application with Predefined and Custom Sections")
|
57 |
+
original_model = gr.Model3D('train.glb', label="Original Model")
|
58 |
+
modified_model = gr.Model3D(label="Model with Applied Texture")
|
59 |
+
|
60 |
+
# Dropdown for predefined and custom selection
|
61 |
+
section_dropdown = gr.Radio(choices=['right compartments', 'left compartments', 'freight_body', 'custom'], label="Select Section", value='custom')
|
62 |
+
|
63 |
+
# Custom sliders for the bounding box selection
|
64 |
+
with gr.Row(visible=True) as custom_controls:
|
65 |
+
x_min_slider = gr.Slider(minimum=x_min_range, maximum=x_max_range, step=0.01, label="X Min", value=x_min_range)
|
66 |
+
x_max_slider = gr.Slider(minimum=x_min_range, maximum=x_max_range, step=0.01, label="X Max", value=x_max_range)
|
67 |
+
|
68 |
+
y_min_slider = gr.Slider(minimum=y_min_range, maximum=y_max_range, step=0.01, label="Y Min", value=y_min_range)
|
69 |
+
y_max_slider = gr.Slider(minimum=y_min_range, maximum=y_max_range, step=0.01, label="Y Max", value=y_max_range)
|
70 |
+
|
71 |
+
z_min_slider = gr.Slider(minimum=z_min_range, maximum=z_max_range, step=0.01, label="Z Min", value=z_min_range)
|
72 |
+
z_max_slider = gr.Slider(minimum=z_min_range, maximum=z_max_range, step=0.01, label="Z Max", value=z_max_range)
|
73 |
+
|
74 |
+
# Toggle visibility of custom controls
|
75 |
+
def toggle_custom_controls(predefined_section):
|
76 |
+
return gr.update(visible=(predefined_section == 'custom'))
|
77 |
+
|
78 |
+
section_dropdown.change(fn=toggle_custom_controls, inputs=section_dropdown, outputs=custom_controls)
|
79 |
+
|
80 |
+
# Update model dynamically
|
81 |
+
def update_model(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max):
|
82 |
+
return visualize_dynamic_texture(predefined_section, x_min, x_max, y_min, y_max, z_min, z_max)
|
83 |
+
|
84 |
+
# Add event listeners for real-time updates when sliders or dropdown change
|
85 |
+
inputs = [section_dropdown, x_min_slider, x_max_slider, y_min_slider, y_max_slider, z_min_slider, z_max_slider]
|
86 |
+
for input_component in inputs:
|
87 |
+
input_component.change(fn=update_model, inputs=inputs, outputs=modified_model)
|
88 |
+
|
89 |
+
app.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|