Update app.py
Browse files
app.py
CHANGED
@@ -1,18 +1,29 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
|
|
2 |
|
3 |
-
|
4 |
-
return sketch
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
inputs=sketchpad,
|
14 |
-
outputs=output_image
|
15 |
-
)
|
16 |
|
17 |
-
|
18 |
-
interface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
import numpy as np
|
3 |
+
import matplotlib.pyplot as plt
|
4 |
+
import logging
|
5 |
|
6 |
+
logging.basicConfig(level=logging.DEBUG)
|
|
|
7 |
|
8 |
+
def display_sketch(sketch):
|
9 |
+
try:
|
10 |
+
image_data = np.array(sketch) # Convert the dict data to a numpy array
|
11 |
+
logging.debug(f"Image data type: {type(image_data)}") # Log the type of image data
|
12 |
+
logging.debug(f"Image data shape: {image_data.shape}") # Log the shape of image data
|
13 |
+
|
14 |
+
# Plot the image
|
15 |
+
fig, ax = plt.subplots()
|
16 |
+
ax.imshow(image_data, cmap='gray')
|
17 |
+
plt.axis('off')
|
18 |
+
plt.savefig("/mnt/data/output.png", bbox_inches='tight')
|
19 |
+
return "/mnt/data/output.png"
|
20 |
+
except Exception as e:
|
21 |
+
logging.error(f"Error processing sketch: {e}")
|
22 |
+
return str(e)
|
23 |
|
24 |
+
with gr.Blocks() as demo:
|
25 |
+
sketchpad = gr.Sketchpad(label="Draw Something", tool="sketch")
|
26 |
+
output_image = gr.Image(label="Your Sketch")
|
27 |
+
sketchpad.submit(display_sketch, inputs=sketchpad, outputs=output_image)
|
|
|
|
|
28 |
|
29 |
+
demo.launch()
|
|